@charset "UTF-8";
html {
  scroll-padding-top: 74px;
  croll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 14px;
  line-height: 1;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
p,
li,
a {
  color: #333;
}
h1:hover,
h2:hover,
h3:hover,
h4:hover,
h5:hover,
p:hover,
li:hover,
a:hover {
  text-decoration: none;
}

.non-underline a:hover {
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 99;
}

.header-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: calc(100% - 30px);
  max-width: 1200px;
  height: 74px;
  margin: auto;
}
.header-inner .header-logo {
  margin: 0;
  padding: 0;
}
.header-inner .header-logo a {
  display: flex;
}
.header-inner .header-logo img {
  width: auto;
  height: 40px;
}
.header-inner nav {
  display: flex;
  margin-left: auto;
}
.header-inner nav ul {
  display: flex;
  gap: 30px;
}
.header-inner nav li a {
  position: relative;
  display: block;
  padding: 6px 0;
}
.header-inner nav li a:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ef5685;
  transition: all 0.2s ease;
}
.header-inner nav li a:hover {
  color: #333;
}
.header-inner nav li a:hover:before {
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header-inner {
    height: 54px;
  }
  .header-inner .header-logo img {
    height: 34px;
  }
}

#spNavBtn {
  position: relative;
  width: 40px;
  height: 22px;
  margin-left: auto;
  cursor: pointer;
}
#spNavBtn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #e61c1d;
  border-radius: 3px;
  transition: all 0.3s ease;
}
#spNavBtn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #1d2088;
  border-radius: 3px;
  transition: all 0.3s ease;
}
#spNavBtn.active:before {
  top: 50%;
  transform: rotate(45deg);
}
#spNavBtn.active:after {
  top: 50%;
  transform: rotate(-45deg);
}

footer {
  width: 100%;
  padding: 60px 0 0;
  background: #131533;
}
footer nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: auto;
  padding: 0 0 30px;
}
footer nav li a {
  display: block;
  color: #fff;
  transition: all 0.2s ease;
}
footer nav li a:hover {
  color: #fffcd4;
}
footer .footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 15px;
  max-width: 650px;
  margin: auto;
  padding: 0 0 30px;
}
footer .footer-bottom img {
  height: 40px;
}
footer .footer-bottom p {
  text-align: center;
  color: #fff;
  line-height: 1.4em;
}
footer .company-name {
  text-align: center;
  font-size: 3em;
  font-weight: 700;
  color: #fff;
}
footer span {
  display: block;
  padding: 20px 15px 6px;
  font-size: 0.8em;
  color: #fff;
  text-align: center;
}
footer .top-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
}
footer .top-sns a i {
  color: #333;
  font-size: 1.7em;
}
@media screen and (max-width: 767px) {
  footer nav ul {
    padding: 1px;
    flex-wrap: wrap;
    gap: 1px;
    background: #4f4f4f;
  }
  footer nav li {
    width: calc(50% - 0.5px);
  }
  footer nav li a {
    padding: 14px 0;
    background: #131533;
    text-align: center;
  }
  footer .footer-bottom {
    padding-top: 30px;
  }
  footer .company-name {
    font-size: 2em;
  }
}

#spNav {
  position: fixed;
  top: 54px;
  left: -100vw;
  width: 100%;
  height: calc(100vh - 54px);
  height: calc(100dvh - 54px);
  background: #131533;
  overflow-y: auto;
  z-index: 999;
  transition: all 0.3s ease;
  overscroll-behavior: none;
}
#spNav.active {
  left: 0;
}
#spNav ul {
  padding: 15px;
}
#spNav li a {
  display: block;
  padding: 12px 0;
  text-align: center;
  color: #fff;
}

.fixed-margin {
  padding: 74px 0 0 0;
}
@media screen and (max-width: 767px) {
  .fixed-margin {
    padding: 54px 0 0 0;
  }
}

.parts {
  margin: auto;
  padding: 40px 15px;
}

.more a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 38px;
  margin: auto;
  border: 1px solid #aaa;
  transition: all 0.3s ease;
}
.more a:before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 4px;
  border: 6px solid transparent;
  border-left: 6px solid #aaa;
}
.more a:hover {
  text-decoration: none;
  background: #333;
  border-color: #333;
  color: #fff;
}
.more.more-right a {
  margin: 0 0 0 auto;
}

h2 {
  font-size: 1.6em;
}

.hdln-line {
  position: relative;
  margin: 0 0 20px;
  padding: 0 8px;
  font-size: 1.6em;
}
.hdln-line:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #e60012;
}
.hdln-line:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #1d2088;
}

.hdln-main {
  position: relative;
  margin: 0 0 20px;
  padding: 0 8px;
  font-size: 1.8em;
  font-weight: 600;
}
.hdln-main:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #e60012;
}
.hdln-main:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #1d2088;
}

#PartsTopCarousel {
  padding: 0;
  pointer-events: none;
}
#PartsTopCarousel .slick-track {
  width: 100%;
}
#PartsTopCarousel .slick-track li {
  display: block;
  width: 100%;
  height: calc(100vh - 74px);
  height: calc(100dvh - 74px);
  overflow: hidden;
}
#PartsTopCarousel .slick-track li img,
#PartsTopCarousel .slick-track li video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 16s linear;
}
#PartsTopCarousel .slick-track li.slick-active img,
#PartsTopCarousel .slick-track li.slick-active video {
  transform: scale(1.3);
  transition: all 18s linear;
}
@media screen and (max-width: 767px) {
  #PartsTopCarousel .slick-track li {
    height: 50vh;
  }
}

.parts-news {
  max-width: 940px;
}
.parts-news ul {
  padding: 10px 0 20px;
}
.parts-news li {
  border-bottom: 1px solid #aaa;
}
.parts-news li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}
.parts-news li .news-cat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  padding: 4px;
  font-size: 0.8em;
  color: #fff;
  border-radius: 2px;
  background: #666;
}
.parts-news li .news-cat-case {
  background: #75a2cc;
}
.parts-news li .news-cat-notice {
  background: #ef5685;
}
@media screen and (max-width: 767px) {
  .parts-news li a {
    flex-wrap: wrap;
  }
  .parts-news li a p {
    width: 100%;
  }
}

.parts-blog {
  background: #131533;
}
.parts-blog h2 {
  max-width: 940px;
  margin: auto;
  color: #fff;
}
.parts-blog ul {
  padding: 40px 0;
}
.parts-blog li {
  padding: 0 10px;
}
.parts-blog li a {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.parts-blog li p {
  margin: 0;
  color: #fff;
  font-size: 0.9em;
}
.parts-blog li .date {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.parts-blog li .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 17px;
  padding: 6px 12px;
  color: #333;
  background: #f2f2f2;
  font-size: 0.9em;
  border-radius: 2px;
}
.parts-blog .more a {
  border-color: #fff;
  color: #fff;
}
.parts-blog .more a:hover {
  text-decoration: none;
  background: #fff;
  color: #333;
}

.parts-recruit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 300px;
  padding: 0 400px 0 15px;
  background: url("/WatanabeEarthtech/img/front/top-001.jpg") no-repeat;
  background-size: contain;
  background-position: right;
}
.parts-recruit * {
  position: relative;
}
.parts-recruit:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #469837, transparent);
}
.parts-recruit h2 {
  margin: 0;
  color: #fff;
}
.parts-recruit .top-recruit-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.parts-recruit .top-recruit-inner a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 36px;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}
.parts-recruit .top-recruit-inner a:before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 4px;
  border: 6px solid transparent;
  border-left: 6px solid #fff;
  transition: all 0.3s ease;
}
.parts-recruit .top-recruit-inner a:hover {
  background: #fff;
  color: #333;
}
.parts-recruit .top-recruit-inner a:hover:before {
  border-left: 6px solid #aaa;
}
@media screen and (max-width: 767px) {
  .parts-recruit {
    align-items: start;
    padding: 0 20px;
  }
  .parts-recruit .top-recruit-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .parts-recruit {
    background-size: cover;
  }
}

.breadcrumb {
  width: calc(100% - 30px);
  max-width: 1200px;
  margin: 0 auto 15px;
  font-size: 0.82em;
}
.breadcrumb * {
  color: #222;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: ">";
  font-size: 10px;
  color: #aaa;
}
.breadcrumb em {
  font-style: normal;
}
.breadcrumb .icon-home {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 6px;
  margin: 0 4px 0 0;
  background: #e60012;
}
.breadcrumb .icon-home:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: #e60012;
  transform: rotate(45deg);
}
.breadcrumb .icon-home:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 4px;
  width: 2px;
  height: 4px;
  background: #e9ecef;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 10px;
  }
}

.main {
  padding-top: 80px;
}

.main-wrap {
  padding: 0 15px;
}

#BlogList h1 {
  position: relative;
  margin: 0 0 20px;
  padding: 0 8px;
  font-size: 1.8em;
  font-weight: 600;
}
#BlogList h1:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #e60012;
}
#BlogList h1:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #1d2088;
}
#BlogList .main-wrap {
  width: calc(100% - 30px);
  max-width: 1200px;
  margin: 30px auto;
  padding: 0;
}
#BlogList .main-wrap .blog-list-wrap ul {
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  padding: 30px 0;
}
#BlogList .main-wrap .blog-list-wrap li {
  width: calc((100% - 80px) / 5);
  font-size: 0.9em;
}
#BlogList .main-wrap .blog-list-wrap li a {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#BlogList .main-wrap .blog-list-wrap li a img {
  display: block;
  width: 100%;
}
#BlogList .main-wrap .blog-list-wrap li a .date {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
#BlogList .main-wrap .blog-list-wrap li a .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 80px;
  min-height: 17px;
  padding: 6px 12px;
  color: #fff;
  background: #131533;
  font-size: 10px;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  #BlogList .main-wrap .blog-list-wrap li {
    width: calc((100% - 20px) / 2);
  }
}

.case-exmp {
  width: calc(100% - 30px);
  max-width: 1200px;
  margin: 30px auto;
  padding: 0;
}
.case-exmp .m-ttl {
  position: relative;
  margin: 0 0 20px;
  padding: 0 8px;
  font-size: 1.8em;
  font-weight: 600;
}
.case-exmp .m-ttl:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #e60012;
}
.case-exmp .m-ttl:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #1d2088;
}
.case-exmp h1 {
  font-size: 1.2em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .case-exmp h1 {
    text-align: center;
  }
}

.blog-head {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
}
.blog-head .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 22px;
  padding: 0 20px;
  color: #fff;
  background: #131533;
  font-size: 0.9em;
  line-height: 0;
  border-radius: 2px;
}

.case-wrap {
  max-width: 840px;
  margin: 30px auto;
}
.case-wrap .row {
  position: relative;
  margin: 20px 0 0;
  padding: 0 35px;
}
.case-wrap .row figure {
  margin: 0;
  padding: 0 5px;
  cursor: pointer;
}
.case-wrap .row .slick-arrow {
  position: absolute;
  width: 30px;
  height: 100%;
  border: 1px solid #ccc;
}
.case-wrap .row .slick-arrow:before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
}
.case-wrap .row .slick-prev {
  left: 0;
}
.case-wrap .row .slick-prev:before {
  left: calc(50% - 15px);
  border: 10px solid transparent;
  border-right: 10px solid #aaa;
}
.case-wrap .row .slick-next {
  right: 0;
}
.case-wrap .row .slick-next:before {
  right: calc(50% - 15px);
  border: 10px solid transparent;
  border-left: 10px solid #aaa;
}
.case-wrap p {
  padding: 20px 0;
  line-height: 1.6em;
}
.case-wrap dl {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #aaa;
}
.case-wrap dt {
  display: flex;
  align-items: center;
  width: 140px;
  padding: 8px 12px;
  border-right: 1px solid #aaa;
  background: #e8e8e8;
}
.case-wrap dt:not(:first-of-type) {
  border-top: 1px solid #aaa;
}
.case-wrap dd {
  display: flex;
  align-items: center;
  width: calc(100% - 140px);
  margin: 0;
  padding: 10px 14px;
}
.case-wrap dd:not(:first-of-type) {
  border-top: 1px solid #aaa;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px auto 40px;
  padding: 15px;
  border: solid #ccc;
  border-width: 1px 0;
  border-radius: 0;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  background: #e8e8e8;
  border-radius: 50%;
  font-size: 0.8em;
  transition: all 0.3s ease;
}
.pagination li a:hover {
  background: #aaa;
  color: #fff;
}
.pagination li.active a {
  background: #f2f2f2;
}

.case-bottom .lede {
  margin: 0;
  padding: 20px 0;
  font-size: 1.2em;
}
.case-bottom h3 {
  margin: 0 0 20px;
  padding: 8px 12px;
  background: #131533;
  color: #fff;
  font-size: 1.4em;
  border-radius: 6px;
}
.case-bottom h4 {
  margin: 0 0 20px;
  padding: 0 0 0 12px;
  font-size: 1.2em;
  font-weight: 600;
  border-left: 4px solid #d3d3d3;
}
.case-bottom img {
  width: 100%;
}
.case-bottom .section-01 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.case-bottom .section-01 > img {
  width: 33%;
  aspect-ratio: 2/3;
}
.case-bottom .section-01 > div {
  display: flex;
  flex-direction: column;
  width: calc(67% - 30px);
}
.case-bottom .section-01 > div p {
  display: flex;
  align-items: center;
  flex: auto;
  margin: 0;
  padding: 20px 0;
}
.case-bottom .section-01 > div div {
  gap: 30px;
  margin-top: auto;
}
.case-bottom .section-01 > div div img {
  width: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .case-bottom .section-01 > img {
    width: 100%;
  }
  .case-bottom .section-01 > div {
    width: 100%;
  }
  .case-bottom .section-01 > div p {
    padding: 0 0 30px;
  }
  .case-bottom .section-01 > div div img {
    width: 100%;
  }
}
.case-bottom .split {
  flex-wrap: wrap;
  justify-content: start;
  gap: 30px;
  padding: 40px 0;
}
.case-bottom .split img {
  width: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .case-bottom .split img {
    width: 100%;
  }
}
.case-bottom .img-responsive-case {
  display: block;
  width: 100%;
  max-width: 680px;
  margin: auto;
}

#NewsList .main-wrap,
#NewsDetail .main-wrap {
  max-width: 870px;
  margin: auto;
  padding: 0 15px;
}
#NewsList .main-wrap ul,
#NewsDetail .main-wrap ul {
  max-width: 780px;
  margin: auto;
  padding: 10px 0;
}
#NewsList .main-wrap li a,
#NewsDetail .main-wrap li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}
#NewsList .main-wrap li a .date,
#NewsDetail .main-wrap li a .date {
  width: 90px;
  font-size: 0.9em;
  color: #666;
}
#NewsList .main-wrap li a p,
#NewsDetail .main-wrap li a p {
  width: calc(100% - 250px);
  margin: 0;
}
@media screen and (max-width: 767px) {
  #NewsList .main-wrap li a,
  #NewsDetail .main-wrap li a {
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  #NewsList .main-wrap li a p,
  #NewsDetail .main-wrap li a p {
    width: 100%;
  }
}
#NewsList .main-wrap .category,
#NewsDetail .main-wrap .category {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 120px;
  height: 20px;
  color: #fff;
  font-size: 0.8em;
  border-radius: 2px;
}
#NewsList .main-wrap .category.category-notice,
#NewsDetail .main-wrap .category.category-notice {
  background: #ef5685;
}
#NewsList .main-wrap .category.category-case,
#NewsDetail .main-wrap .category.category-case {
  background: #75a2cc;
}

#Content #Main {
  line-height: 1.5em;
}
#Content #Main nav {
  margin: 30px 0 40px;
}
#Content #Main .layout-float {
  padding: 30px;
}
#Content #Main .layout-float img {
  width: 50%;
  height: auto;
  padding: 0 0 30px 30px;
  float: right;
}
#Content #Main .layout-float:after {
  content: "";
  clear: both;
}
@media screen and (max-width: 767px) {
  #Content #Main .layout-float {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
  #Content #Main .layout-float p {
    margin: 0;
    order: 1;
  }
  #Content #Main .layout-float img {
    width: 100%;
    padding: 0;
    float: none;
    order: 2;
  }
}
#Content #Main .img-middle {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 30px;
}
#Content #Main dl {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  margin: 30px auto;
}
#Content #Main dl p {
  margin: 0;
  padding: 0;
}
#Content #Main dt {
  width: 140px;
}
#Content #Main dd {
  width: calc(100% - 140px);
  margin: 0;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  #Content #Main dl {
    flex-direction: column;
  }
  #Content #Main dt {
    width: 100%;
    padding: 10px;
    background: #f2f2f2;
  }
  #Content #Main dd {
    width: 100%;
    padding: 0 10px;
  }
}

.content-company {
  max-width: 890px;
  margin: auto;
  padding: 0 15px;
}
.content-company section {
  padding: 30px 0;
}
.content-company .company-dl dl {
  gap: 35px 0;
  max-width: 640px;
  padding: 30px 0;
}
.content-company .history-dl dl {
  align-items: stretch !important;
}
.content-company .history-dl dt {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #aaa;
}
.content-company .history-dl dd {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0 15px 20px !important;
  border-bottom: 1px solid #aaa;
}
.content-company .history-dl dd p {
  width: calc(100% - 140px);
  margin: 0;
}
.content-company .history-dl dd img {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .content-company .history-dl dt,
  .content-company .history-dl dd {
    border: none;
  }
  .content-company .history-dl dd {
    flex-wrap: wrap;
  }
  .content-company .history-dl dd p {
    width: 100%;
  }
  .content-company .history-dl dd img {
    width: 100%;
    max-width: 400px;
  }
}
.content-company .machines-dl .table-wrap {
  overflow-x: auto;
}
.content-company .machines-dl table {
  width: 100%;
  min-width: 700px;
  table-layout: fixed;
}
.content-company .machines-dl tr {
  border-bottom: 1px solid #aaa;
}
.content-company .machines-dl th {
  padding: 12px 8px;
  border-bottom: 3px double #aaa;
}
.content-company .machines-dl th:nth-of-type(2) {
  width: 130px;
}
.content-company .machines-dl th:nth-of-type(4) {
  width: 80px;
}
.content-company .machines-dl td {
  padding: 12px 8px;
}

.company-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}
.company-nav a {
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  background: #333;
  color: #fff;
  font-size: 0.9em;
  border-radius: 2px;
}

.recruit-dl {
  max-width: 800px;
  margin: auto;
}
.recruit-dl dl {
  align-items: stretch !important;
  border: 1px solid #aaa;
}
.recruit-dl dt {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #f2f2f2;
}
.recruit-dl dt:not(:last-of-type) {
  border-bottom: 1px solid #aaa;
}
.recruit-dl dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px !important;
}
.recruit-dl dd:not(:last-of-type) {
  border-bottom: 1px solid #aaa;
}

.hdln-member {
  width: 100%;
  max-width: 980px;
}
.hdln-member img {
  width: 100%;
}

.content-member {
  width: calc(100% - 30px);
  max-width: 1200px;
  margin: 0 auto 15px;
}
.content-member ul {
  max-width: 890px;
  margin: auto;
  padding: 40px 0 100px;
  background: url("/WatanabeEarthtech/img/front/member-bg.png") no-repeat;
  background-position: bottom;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .content-member ul {
    padding: 40px 0;
  }
}
.content-member li {
  margin: 0 0 30px;
}
.content-member li a {
  display: flex;
  flex-direction: row;
  align-items: end;
  width: 100%;
}
.content-member li .img-area {
  width: 50%;
  overflow: hidden;
}
.content-member li .img-area img {
  width: 100%;
  transition: all 0.4s ease;
}
.content-member li .img-area:hover img {
  transform: scale(1.1);
}
.content-member li .txt-area {
  width: 50%;
}
.content-member li .name {
  font-weight: 600;
}
.content-member li .name small {
  display: inline-block;
  padding-right: 4px;
  font-size: 0.64em;
  font-weight: 600;
}
.content-member li .lede {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.content-member li .lede .bold {
  font-size: 1.1em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .content-member li a {
    flex-direction: column;
    align-items: start;
  }
  .content-member li .txt-area {
    width: 100%;
    margin-top: -26px;
    text-align: right;
    font-size: 0.9em;
  }
}

.content-member-detail {
  max-width: 780px;
  margin: auto;
  padding: 100px 0 120px;
  background: url("/WatanabeEarthtech/img/front/member-bg.png") no-repeat;
  background-position: bottom;
  background-size: contain;
}
.content-member-detail section {
  padding: 30px 0;
}
.content-member-detail section h3 {
  margin-bottom: 12px;
  padding: 4px 8px;
  font-size: 1.2em;
  border-left: 4px solid #d3d3d3;
}

#Questionnaire h1 {
  width: calc(100% - 30px);
  max-width: 890px;
  margin: 0 auto 40px;
}
#Questionnaire table {
  width: calc(100% - 30px);
  max-width: 680px;
  margin: auto;
}
#Questionnaire table td > div {
  display: flex;
  align-items: center;
}
#Questionnaire table td .question {
  width: 150px;
}
#Questionnaire table td .answer {
  width: calc(100% - 140px);
}
#Questionnaire table tr:nth-of-type(6) td > div .answer {
  width: 120px;
}
#Questionnaire table tr:nth-of-type(6) td > div:after {
  content: "例：1234567　ハイフンなしでご入力ください";
  padding: 0 8px;
  font-size: 0.9em;
}
#Questionnaire table tr:nth-of-type(6) td > div.confirm:after {
  content: none;
}
#Questionnaire table .required {
  font-size: 0.9em;
  color: #f00;
}
@media screen and (max-width: 767px) {
  #Questionnaire table td > div {
    flex-wrap: wrap;
  }
  #Questionnaire table td .question {
    width: 100%;
  }
  #Questionnaire table td .answer {
    width: 100%;
  }
  #Questionnaire table td .confirm .answer {
    padding-top: 15px;
  }
  #Questionnaire table tr:nth-of-type(6) td > div:after {
    margin-top: 10px;
  }
}
#Questionnaire .privacy-area {
  margin: 40px 0 30px;
  padding: 30px 15px;
  background: #f2f2f2;
}
#Questionnaire .privacy-area > section {
  max-width: 740px;
  margin: auto;
  height: 200px;
  padding: 15px;
  background: #fff;
  border: 2px solid #e8e8e8;
  overflow-y: scroll;
}
#Questionnaire .privacy-area h2 {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 15px;
}
#Questionnaire .privacy-area h3 {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 10px;
}
#Questionnaire .privacy-area p {
  line-height: 1.4em;
}
#Questionnaire .form-error {
  background: #fee;
}
#Questionnaire .error-message {
  padding-top: 4px;
  font-size: 0.9em;
  color: #f00;
}
#Questionnaire .more {
  padding: 30px 15px;
  text-align: center;
}
#Questionnaire .more .btn {
  width: 220px;
  padding: 12px 0;
  background: #131533;
  border-radius: 30px;
  color: #fff;
  font-size: 0.9em;
}
#Questionnaire .more .btn-prev {
  margin-bottom: 10px;
  padding: 8px 0;
  background: #aaa;
}

.main-container > .message.error {
  display: none;
}

/*# sourceMappingURL=style.css.map */
