@charset "UTF-8";
@font-face {
  font-family: 'IBMPlexSansJP';
  src: url("./IBMPlexSansJP-Regular.otf");
}

body {
  color: #383e45;
  font-size: 1rem;
  font-family: 'IBMPlexSansJP','Noto Sans JP', sans-serif;
  -webkit-animation: bodyfadeIn 2s ease 0s 1 normal forwards;
          animation: bodyfadeIn 2s ease 0s 1 normal forwards;
}

@-webkit-keyframes bodyfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bodyfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

a {
  color: #383e45;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

.wrapper {
  max-width: 1100px;
  margin: 0px auto;
  padding: 0 4%;
}

.wrapper2 {
  max-width: 900px;
  margin: 0px auto;
  padding: 0 4%;
}

.sp {
  display: none;
}

.page-subtitle {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #008000;
}

.subheader {
  margin-bottom: 80px;
  background: linear-gradient(260deg, #A8E7BA 32%, #A9DFD5 80%);
  width: 100%;
  height: 200px;
}

.subheader .inner {
  height: 100%;
  display: -ms-grid;
  display: grid;
}

.subheader .inner > * {
  -ms-grid-row: 1;
  grid-area: 1/-1;
}

.subheader .inner span {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 600;
  font-size: 4.5rem;
  color: rgba(0, 128, 0, 0.3);
  margin-top: 28px;
}

.subheader .inner h1 {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-top: 16px;
}

.cmn-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid #ccc;
}

.cmn-table dt {
  width: 25%;
  padding: 24px 10px 24px 60px;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}

.cmn-table dd {
  width: 75%;
  padding: 24px 20px 24px 60px;
  border-bottom: 1px solid #ccc;
}

.cmn-table .flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 8px;
  bottom: 8px;
  opacity: 0.9;
  background-color: #f2e880e3;
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'icomoon';
  content: '\e903';
  font-size: 40px;
  color: #6e6e6e;
  position: absolute;
  width: 40px;
  height: 30px;
  top: -30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#page_top a::after {
  content: 'TOP';
  font-size: 13px;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #6e6e6e;
}

.lum-lightbox {
  z-index: 1000;
}

.lum-lightbox-inner img.lum-img {
  max-width: 100%;
}

/*-------------------------------------------
Header
-------------------------------------------*/
#header {
  height: 80px;
  /*スクロールで高さを小さく、上部固定に*/
}

#header .header-inner {
  height: 100%;
  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;
}

#header .header-inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .header-inner ul li a {
  display: inline-block;
  position: relative;
}

#header .header-inner ul li a::after {
  content: '';
  position: absolute;
  bottom: 1.5em;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: #008000;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#header .header-inner ul li a:hover {
  color: #008000;
  opacity: 1;
}

#header .header-inner ul li a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

#header .header-inner .pc ul {
  gap: 32px;
}

#header .header-inner .pc ul a {
  line-height: 80px;
}

#header.HeightMin {
  position: fixed;
  z-index: 998;
  height: 60px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*-------------------------------------------
TOP
-------------------------------------------*/
#mainvisual {
  display: -ms-grid;
  display: grid;
}

#mainvisual > * {
  -ms-grid-row: 1;
  grid-area: 1/-1;
}

#mainvisual .mv-img img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 65%;
     object-position: 50% 65%;
}

#mainvisual .circle1 {
  width: 80px;
  height: 80px;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  margin-left: 2.5rem;
  margin-bottom: 4rem;
  opacity: 0;
  -webkit-animation: fadeIn 1.2s ease 1.0s 1 normal forwards;
          animation: fadeIn 1.2s ease 1.0s 1 normal forwards;
}

#mainvisual .circle2 {
  width: 55px;
  height: 55px;
  -ms-grid-column-align: end;
      justify-self: end;
  margin-right: 3rem;
  margin-top: 6rem;
  opacity: 0;
  -webkit-animation: fadeIn 1.2s ease 1.3s 1 normal forwards;
          animation: fadeIn 1.2s ease 1.3s 1 normal forwards;
}

#mainvisual .circle3 {
  width: 40px;
  height: 40px;
  -ms-grid-column-align: end;
      justify-self: end;
  margin-right: 8rem;
  margin-top: 3rem;
  opacity: 0;
  -webkit-animation: fadeIn 1.2s ease 1.8s 1 normal forwards;
          animation: fadeIn 1.2s ease 1.8s 1 normal forwards;
}

#mainvisual .mv-cimg1 {
  margin-left: 3rem;
  margin-top: 2rem;
  opacity: 0;
  -webkit-animation: fadeIn_op 1.2s ease 0.5s 1 normal forwards;
          animation: fadeIn_op 1.2s ease 0.5s 1 normal forwards;
}

#mainvisual .mv-cimg1 img {
  width: 230px;
  height: 230px;
  border-radius: 50%;
}

#mainvisual .mv-cimg2 {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  -ms-grid-column-align: end;
      justify-self: end;
  margin-right: 5rem;
  margin-bottom: 4rem;
  opacity: 0;
  -webkit-animation: fadeIn_op 1.2s ease 0.9s 1 normal forwards;
          animation: fadeIn_op 1.2s ease 0.9s 1 normal forwards;
}

#mainvisual .mv-cimg2 img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
}

#mainvisual .mv-illust {
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: 240px;
  padding: 0 8px;
  -webkit-filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 0.4));
  opacity: 0;
  -webkit-animation: fadeIn 3s ease 2.4s 1 normal forwards;
          animation: fadeIn 3s ease 2.4s 1 normal forwards;
}

#mainvisual .ccopy {
  z-index: 1;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: inline-block;
  background: #f0f0f0;
  -webkit-box-shadow: 0px 0px 0px 5px #f0f0f0;
          box-shadow: 0px 0px 0px 5px #f0f0f0;
  border: dashed 2px #6b7e95;
  padding: 12px 40px 6px;
  font-size: 1.75rem;
  line-height: 2.1rem;
  opacity: 0;
  -webkit-animation: fadeIn 2s ease 3.5s 1 normal forwards;
          animation: fadeIn 2s ease 3.5s 1 normal forwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn_op {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.85;
  }
}

@keyframes fadeIn_op {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.85;
  }
}

#top-aboutus {
  margin: 100px auto;
  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;
}

#top-aboutus .title {
  width: 35%;
  color: #298627;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#top-aboutus .title h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#top-aboutus .title h1 span {
  font-family: Raleway;
  font-weight: 600;
  font-style: italic;
  font-size: 2.250rem;
}

#top-aboutus .title .stickarrow {
  width: 100%;
  height: 20px;
  border-bottom: 1.75px solid #298627;
  border-right: 1.75px solid #298627;
  -webkit-transform: translate(-10px, 0px) skew(45deg);
          transform: translate(-10px, 0px) skew(45deg);
}

#top-aboutus .content {
  font-size: 1.125rem;
}

.top-imgmenu {
  padding: 100px 0;
  background-color: #D6ECD5;
}

.top-imgmenu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-gap: 65px;
}

.top-imgmenu .inner .bimg {
  -o-object-fit: cover;
     object-fit: cover;
  height: 500px;
  width: 330px;
}

.top-imgmenu .inner .bimg1 {
  -o-object-position: 56% 50%;
     object-position: 56% 50%;
}

.top-imgmenu .inner .imgmenu a {
  height: 600px;
  display: -ms-grid;
  display: grid;
}

.top-imgmenu .inner .imgmenu a > * {
  -ms-grid-row: 1;
  grid-area: 1/-1;
}

.top-imgmenu .inner .imgmenu a .circle-w {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: #fff;
  justify-self: center;
  -ms-flex-item-align: end;
      align-self: end;
}

.top-imgmenu .inner .imgmenu a .circle-w > * {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.top-imgmenu .inner .imgmenu a .circle-w img {
  margin-top: 30px;
  width: 60px;
  height: 60px;
}

.top-imgmenu .inner .imgmenu a .circle-w p {
  margin-top: 8px;
  font-size: 1.75rem;
  letter-spacing: 0.2rem;
}

.top-imgmenu .inner .imgmenu a .circle-w span {
  margin-top: 0;
  font-family: Raleway;
  color: #008000;
}

/*-------------------------------------------
会社情報
-------------------------------------------*/
#companyinfo {
  margin-bottom: 100px;
}

#companyinfo iframe {
  padding-top: 16px;
  width: 100%;
  height: 250px;
}

#csr {
  margin-bottom: 100px;
}

#csr p {
  margin-bottom: 16px;
}

#csr .csr-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#csr .csr-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 32%;
}

/*-------------------------------------------
施工実績
-------------------------------------------*/
#works .workbox {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#works .workbox .work-img {
  width: 49%;
  height: 340px;
  position: relative;
}

#works .workbox .work-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

#works .workbox .work-img::before, #works .workbox .work-img::after {
  content: '';
  position: absolute;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  width: 70px;
  height: 25px;
  background-color: #fff;
  z-index: 1;
}

#works .workbox .work-img::before {
  top: -10px;
  left: -25px;
  border-bottom: 1px solid #aaa;
}

#works .workbox .work-img::after {
  bottom: -10px;
  right: -25px;
  border-top: 1px solid #aaa;
}

#works .workbox .work-contents {
  width: 45%;
  background: rgba(215, 255, 197, 0.12);
  border: 1px solid #008000;
  border-radius: 5px;
  padding: 60px;
}

#works .workbox .work-contents .work-title {
  color: #008000;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

#works .workbox .work-contents dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#works .workbox .work-contents dl dt {
  width: 30%;
  padding: 8px 0;
}

#works .workbox .work-contents dl dd {
  width: 70%;
  padding: 8px 0;
}

/*-------------------------------------------
採用情報
-------------------------------------------*/
#recruit-msg {
  margin-bottom: 80px;
}

#recruit-msg .double-line {
  display: -ms-grid;
  display: grid;
  height: 300px;
  padding: 0 40px;
  border: double 4px #58c758;
  width: 100%;
}

#recruit-msg .double-line > * {
  -ms-grid-row: 1;
  grid-area: 1/-1;
}

#recruit-msg .double-line .circle1 {
  z-index: -1;
  width: 140px;
  height: 140px;
  -ms-grid-column-align: end;
      justify-self: end;
  margin-right: 4.5rem;
  margin-top: 32px;
  opacity: 0;
  -webkit-animation: fadeIn 2s ease 1.2s 1 normal forwards;
          animation: fadeIn 2s ease 1.2s 1 normal forwards;
}

#recruit-msg .double-line .circle2 {
  z-index: -1;
  width: 117px;
  height: 117px;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  margin-bottom: 32px;
  opacity: 0;
  -webkit-animation: fadeIn 2s ease 0.8s 1 normal forwards;
          animation: fadeIn 2s ease 0.8s 1 normal forwards;
}

#recruit-msg .double-line .c-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

#recruit-msg .double-line .c-wrapper .illust {
  width: 153px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.4));
}

#recruit-msg .double-line .c-wrapper .inner {
  width: calc(100% - 153px);
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

#recruit-msg .double-line .c-wrapper .inner .b {
  font-weight: bold;
  font-size: 1.15rem;
  margin-bottom: 16px;
}

#recruit-info {
  margin-bottom: 80px;
}

#recruit-info h3 {
  font-weight: bold;
  color: #008000;
  font-size: 1.2rem;
}

#recruit-info .cmn-table {
  margin-bottom: 100px;
}

#recruit-info .recruit-list {
  margin-bottom: 40px;
}

#recruit-contact {
  margin-bottom: 80px;
}

#recruit-contact p {
  margin-bottom: 16px;
}

#recruit-contact .rec-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}

#recruit-contact .rec-btn .btn {
  display: inline-block;
  position: relative;
  padding: 8px 32px;
  background: #FAFFF8;
  border: 1px solid #008000;
  letter-spacing: 0.1em;
  color: #008000;
}

#recruit-contact .rec-btn .btn:hover {
  background: #008000;
  border: 1px solid #bedab4;
  color: #fff;
}

/*-------------------------------------------
お問合せ
-------------------------------------------*/
#contact .link_privacy {
  text-decoration: underline;
}

#contact .form {
  margin-top: 40px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

#contact .form .item {
  border-top: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact .form .item .item-label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.1em;
  font-weight: bold;
}

#contact .form .item .isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

#contact .form .item .input, #contact .form .item .textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  background: #eaedf2;
}

#contact .form .item .input {
  height: 48px;
  max-width: 410px;
}

#contact .form .item .textarea {
  height: 216px;
}

#contact .form .btn {
  display: block;
  padding: 8px 32px;
  background: #FAFFF8;
  border: 1px solid #008000;
  letter-spacing: 0.1em;
  color: #008000;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  width: 280px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact .form .btn:hover {
  background: #008000;
  border: 1px solid #bedab4;
  color: #fff;
}

#contact .false-message {
  color: red;
  display: none;
}

#contact .thanks_img {
  margin: 30px auto 40px;
  width: 250px;
}

#thanks {
  margin-bottom: 80px;
}

#thanks .inner {
  display: -ms-grid;
  display: grid;
  padding: 20px 60px;
  border: solid 1px #58c758;
  width: 100%;
}

#thanks .inner > * {
  -ms-grid-row: 1;
  grid-area: 1/-1;
}

#thanks .inner .circle1 {
  z-index: -1;
  width: 117px;
  height: 117px;
  -ms-grid-column-align: end;
      justify-self: end;
  opacity: 0;
  -webkit-animation: fadeIn 2s ease 1.2s 1 normal forwards;
          animation: fadeIn 2s ease 1.2s 1 normal forwards;
}

#thanks .inner .circle2 {
  z-index: -1;
  width: 86px;
  height: 86px;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  opacity: 0;
  -webkit-animation: fadeIn 2s ease 0.8s 1 normal forwards;
          animation: fadeIn 2s ease 0.8s 1 normal forwards;
}

#thanks .inner .circle3 {
  z-index: -1;
  width: 60px;
  height: 60px;
  margin-top: 1rem;
  margin-left: 6rem;
  opacity: 0;
  -webkit-animation: fadeIn 2s ease 0.8s 1 normal forwards;
          animation: fadeIn 2s ease 0.8s 1 normal forwards;
}

#thanks .inner p {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 60px 0;
}

/*-------------------------------------------
プライバシーポリシー
-------------------------------------------*/
#privacy {
  margin-bottom: 80px;
}

#privacy h2 {
  border-bottom: solid 3px #D7FFC5;
  position: relative;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

#privacy h2:after {
  position: absolute;
  content: '';
  display: block;
  border-bottom: solid 3px #76c651;
  bottom: -3px;
  width: 20%;
}

#privacy p, #privacy ul {
  margin-bottom: 32px;
  line-height: 1.8;
}

#privacy li {
  list-style: disc inside;
}

/*-------------------------------------------
Footer
-------------------------------------------*/
#footer {
  padding: 60px 0;
  background-color: #FBFBFB;
}

#footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#footer .inner .cinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#footer .inner .cinfo img {
  margin-bottom: 16px;
  width: 200px;
}

#footer .inner .cinfo span {
  font-size: 1.2rem;
}

#footer .inner .fmenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#footer .inner .fmenu ul a {
  display: inline-block;
  padding: 2px 0;
}

.copylight {
  padding: 16px 0;
  background-color: #008000;
  color: #D6ECD5;
  font-size: 0.9rem;
  text-align: center;
}

/*-------------------------------------------
SP 960
-------------------------------------------*/
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
  .subheader {
    margin-bottom: 40px;
    height: 150px;
  }
  .subheader .inner span {
    font-size: 3.4rem;
    margin-top: 20px;
  }
  .subheader .inner h1 {
    font-size: 1.8rem;
  }
  .cmn-table dt, .cmn-table dd {
    padding: 24px 0;
  }
  .cmn-table dd {
    padding-left: 3%;
  }
  /*-------------------------------------------
  Header
  -------------------------------------------*/
  #header .sp #open {
    color: #383e45;
    font-size: 2.4rem;
    cursor: pointer;
    vertical-align: top;
  }
  #header .sp #open.hide {
    display: none;
  }
  #header .overlay {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    background-color: #d6ecd5f4;
    padding: 72px;
    opacity: 0;
    pointer-events: none;
    font-size: 1.2rem;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }
  #header .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
  #header .overlay #close {
    position: absolute;
    top: 14px;
    right: 4vw;
    color: #383e45;
    font-size: 2.4rem;
    cursor: pointer;
  }
  #header .overlay ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  #header .overlay ul li a::after {
    content: none;
  }
  /*-------------------------------------------
  TOP
  -------------------------------------------*/
  #mainvisual .mv-cimg2 {
    margin-right: 1rem;
    margin-bottom: 2.5rem;
  }
  #mainvisual .mv-cimg2 img {
    width: 140px;
    height: 140px;
  }
  #top-aboutus {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #top-aboutus .title {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 16px;
    gap: 24px;
  }
  #top-aboutus .title .stickarrow {
    width: 30%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .top-imgmenu {
    padding: 80px 0;
  }
  .top-imgmenu .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 32px;
  }
  .top-imgmenu .inner .bimg {
    height: 220px;
    width: 80%;
  }
  .top-imgmenu .inner .imgmenu a {
    justify-items: center;
    margin: 0 auto;
    height: 220px;
  }
  .top-imgmenu .inner .imgmenu a .circle-w {
    width: 200px;
    height: 200px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .top-imgmenu.tf {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 1.2s ease;
    transition: all 1.2s ease;
  }
  /*-------------------------------------------
  会社概要
  -------------------------------------------*/
  #companyinfo {
    margin-bottom: 60px;
  }
  #csr {
    margin-bottom: 60px;
  }
  /*-------------------------------------------
  施工実績
  -------------------------------------------*/
  #works .workbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    margin: 0 auto 60px;
  }
  #works .workbox .work-img {
    width: 100%;
    height: 300px;
    margin-bottom: 16px;
  }
  #works .workbox .work-contents {
    z-index: 2;
    width: 100%;
    padding: 16px;
  }
  #works .workbox .work-contents .work-title {
    margin-bottom: 4px;
  }
  #works .workbox .work-contents dl dt, #works .workbox .work-contents dl dd {
    padding: 0;
  }
  #works .workbox .work-contents dl dt {
    width: 25%;
  }
  /*-------------------------------------------
  お問合せ
  -------------------------------------------*/
  #contact .form {
    margin-bottom: 40px;
  }
  #contact .form .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #contact .form .item .item-label {
    max-width: inherit;
  }
  #contact .form .item .isMsg {
    margin-top: 0;
  }
  #contact .form .item .input {
    margin-left: 0;
    margin-top: 8px;
    height: 40px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
  }
  #contact .form .item .textarea {
    margin-left: 0;
    margin-top: 8px;
    height: 200px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
  }
  #contact .form .btn {
    margin-top: 16px;
    padding: 10px 0;
    width: 100%;
  }
  #privacy {
    margin-bottom: 40px;
  }
}

/*-------------------------------------------
SP 520
-------------------------------------------*/
@media screen and (max-width: 520px) {
  #mainvisual .mv-cimg1 {
    margin-left: 2rem;
    margin-top: 1rem;
  }
  #mainvisual .mv-cimg1 img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
  }
  #mainvisual .mv-illust {
    padding: 50px 8px;
  }
  #mainvisual .ccopy {
    padding: 8px 20px 4px;
    font-size: 1.375rem;
  }
  .top-imgmenu .inner .bimg {
    width: 100%;
  }
  #csr .csr-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
  #csr .csr-img img {
    width: 80%;
  }
  #recruit-msg {
    margin-bottom: 40px;
  }
  #recruit-msg .double-line {
    padding: 4%;
    height: auto;
  }
  #recruit-msg .double-line .circle1 {
    width: 120px;
    height: 120px;
    -ms-grid-column-align: end;
        justify-self: end;
    margin-right: 4%;
    margin-top: 2%;
  }
  #recruit-msg .double-line .circle2 {
    width: 90px;
    height: 90px;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    margin-bottom: 0;
  }
  #recruit-msg .double-line .c-wrapper .illust {
    display: none;
    width: 0;
  }
  #recruit-msg .double-line .c-wrapper .inner {
    width: 100%;
  }
  #recruit-info {
    margin-bottom: 40px;
  }
  #recruit-contact {
    margin-bottom: 40px;
  }
  #thanks {
    margin-bottom: 40px;
  }
  #privacy {
    margin-bottom: 40px;
  }
}
/*# sourceMappingURL=style.css.map */