@charset "UTF-8";
/*
Theme Name: 新興設備株式会社
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&display=swap");
html, body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.1s;
}
a:hover {
  opacity: 0.8;
}
a.link {
  text-decoration: underline;
  color: #3166cc;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 1000px;
  background-color: #3166cc;
  color: #fff;
  padding: 15px 0;
}
@media screen and (max-width: 640px) {
  header {
    width: 100vw;
    min-width: auto;
  }
}
header h1 {
  margin: 0 0 0 25px;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 640px) {
  header h1 {
    font-size: 24px;
    margin: 0 0 0 15px;
  }
}
header #menubtn {
  display: none;
}
header #menubtn:checked + .btn {
  background-color: rgba(0, 0, 0, 0);
}
header #menubtn:checked + .btn:after, header #menubtn:checked + .btn:before {
  transition: 0.3s;
  top: 50%;
}
header #menubtn:checked + .btn:after {
  transform: translateY(-50%) rotate(135deg);
}
header #menubtn:checked + .btn:before {
  transform: translateY(-50%) rotate(-135deg);
}
header #menubtn:checked ~ nav {
  top: 60px;
}
header .btn.sp {
  position: relative;
  display: none;
  width: 10vw;
  height: 2px;
  margin-right: 5vw;
  background-color: #fff;
}
header .btn.sp:after, header .btn.sp:before {
  content: "";
  position: absolute;
  display: block;
  width: 10vw;
  height: 2px;
  background-color: #fff;
}
header .btn.sp:before {
  top: -12px;
}
header .btn.sp:after {
  top: 12px;
}
@media screen and (max-width: 640px) {
  header .btn.sp {
    display: block;
  }
  header .btn.sp + nav {
    position: absolute;
    width: 100vw;
    padding: 30px 0;
    top: -100vh;
    left: 0;
    flex-direction: column;
    background-color: #3166cc;
    transition: 0.3s;
    z-index: 100;
  }
}
header nav {
  display: flex;
  margin-right: 15px;
}
header nav a {
  font-size: 14px;
  list-style: none;
  padding: 10px 0;
  margin-left: 30px;
}
header nav a.tel {
  display: flex;
  align-items: center;
  border-left: 1px solid #fff;
  padding-left: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  header nav a.tel {
    padding: 10px 0;
    border: none;
  }
}
header nav a.tel:before {
  content: "";
  display: block;
  background-image: url(./images/01.tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.3em;
}

section[id^=front-] {
  margin-bottom: 150px;
}
@media screen and (max-width: 640px) {
  section[id^=front-] {
    margin-bottom: 70px;
  }
}
section[id^=front-] h2 {
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  color: #3166cc;
}

#front-top img {
  width: 100%;
  min-width: 1000px;
}
@media screen and (max-width: 640px) {
  #front-top img {
    min-width: auto;
  }
}

#front-news .wrap {
  width: 650px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #front-news .wrap {
    width: 94vw;
    margin: 0 3vw;
  }
}
#front-news .wrap article {
  display: flex;
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  #front-news .wrap article {
    flex-direction: column;
  }
}
#front-news .wrap article .date {
  color: #3166cc;
  margin-right: 2.5em;
}
#front-news .wrap .btn {
  display: block;
  width: 30%;
  margin: 3em 35% 0;
  text-align: center;
  background-color: #3166cc;
  color: #fff;
  padding: 0.5em 0;
  border-radius: 8px;
}

#front-content {
  width: 650px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #front-content {
    width: 96vw;
    margin: 0 2vw;
  }
}
#front-content .caption {
  text-align: center;
  margin-bottom: 30px;
}
#front-content .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#front-content .wrap article {
  width: 46%;
  margin-bottom: 80px;
}
#front-content .wrap article img {
  width: 100%;
}
#front-content .wrap article .bottom {
  display: flex;
  align-content: center;
  justify-content: space-between;
}
#front-content .wrap article .bottom h3 {
  margin: 0;
  color: #3166cc;
}
#front-content .wrap article .bottom .more {
  display: flex;
  align-items: flex-end;
  color: #99ccff;
  font-size: 14px;
}
#front-content .wrap article .bottom .more:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  background-image: url(./images/arrow.png);
  background-size: contain;
}

#front-case .case-slider {
  width: 750px;
  margin: 50px auto 0;
}
@media screen and (max-width: 640px) {
  #front-case .case-slider {
    width: 94vw;
    margin: 0 3vw;
  }
}
#front-case .case-slider a {
  position: relative;
  display: inline-block;
  margin: 0 15px;
}
#front-case .case-slider a span {
  position: absolute;
  display: inline-block;
  width: 80%;
  padding: 0.1em 0;
  margin-top: 0.6em;
  background-color: rgba(49, 102, 204, 0.8);
  color: #fff;
  text-align: center;
  font-weight: 300;
}
#front-case .case-slider a img {
  width: 100%;
}
#front-case .case-slider .slick-track {
  margin-bottom: 20px;
}
#front-case .case-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}
#front-case .case-slider .slick-dots li button:before {
  color: #3166cc;
}
#front-case .case-slider .slick-prev, #front-case .case-slider .slick-next {
  width: 20px;
  height: auto;
}
#front-case .more {
  display: block;
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #front-case .more {
    width: 80vw;
  }
}
#front-case .more img {
  width: 100%;
  margin-top: 50px;
}

#front-menu .wrap {
  display: flex;
  justify-content: space-between;
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #front-menu .wrap {
    width: 94vw;
    margin: 0 3vw;
    flex-direction: column;
  }
}
#front-menu .wrap a {
  display: inline-block;
  width: 48%;
}
@media screen and (max-width: 640px) {
  #front-menu .wrap a {
    width: 90%;
    margin: 0 5% 50px;
  }
}
#front-menu .wrap a img {
  width: 100%;
}

#front-recruit a {
  display: block;
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #front-recruit a {
    width: 94vw;
    margin: 0 3vw;
  }
}
#front-recruit a img {
  width: 100%;
}
#front-recruit a img.pc {
  display: block;
}
@media screen and (max-width: 640px) {
  #front-recruit a img.pc {
    display: none;
  }
}
#front-recruit a img.sp {
  display: none;
}
@media screen and (max-width: 640px) {
  #front-recruit a img.sp {
    display: block;
  }
}

#subpage section.head.image-head {
  position: relative;
}
#subpage section.head.image-head h2 {
  position: absolute;
  top: 30%;
  background-color: #3166cc;
  color: #fff;
  padding: 0.2em 0.5em 0.2em 1em;
  font-size: 3em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  #subpage section.head.image-head h2 {
    font-size: 2em;
  }
}
#subpage section.head.image-head img {
  width: 100%;
}
#subpage section.head.text-head {
  margin: 50px 0;
  text-align: center;
}
@media screen and (max-width: 640px) {
  #subpage section.head.text-head {
    margin: 30px 0;
  }
}
#subpage section.head.text-head h2 {
  display: inline-block;
  font-size: 2em;
  padding: 0.5em 2em;
  border: 1px solid #3166cc;
}
@media screen and (max-width: 640px) {
  #subpage section.head.text-head h2 {
    font-size: 1.7em;
    padding: 0.5em 3em;
  }
}
@media screen and (max-width: 640px) {
  #subpage section.head.text-head .text {
    padding: 0 1em;
  }
}
#subpage section.head.text-head .text .title {
  font-weight: 700;
}
#subpage section.wrap {
  max-width: 1200px;
  min-width: 950px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto 200px;
  padding: 0 25px;
}
@media screen and (max-width: 640px) {
  #subpage section.wrap {
    max-width: auto;
    min-width: auto;
    width: 100vw;
    padding: 0 15px;
    margin: 0 auto 100px;
  }
}
#subpage section.wrap article {
  margin-bottom: 50px;
}
#subpage section.wrap article h3 {
  font-size: 1.75em;
  color: #3166cc;
  padding: 0.5em 0;
  border-bottom: 1px solid #3166cc;
}
@media screen and (max-width: 640px) {
  #subpage section.wrap article h3 {
    font-size: 1.5em;
  }
}
#subpage section.wrap article .flex {
  display: flex;
  justify-content: space-between;
}
#subpage section.wrap article .flex .left, #subpage section.wrap article .flex .right {
  width: 48%;
}
@media screen and (max-width: 640px) {
  #subpage section.wrap article .flex .left, #subpage section.wrap article .flex .right {
    width: 100%;
  }
}
#subpage section.wrap article .flex .left *, #subpage section.wrap article .flex .right * {
  width: 100%;
}
#subpage section.wrap article .flex.wrap {
  flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  #subpage.page-about .flex {
    flex-direction: column-reverse;
  }
  #subpage.page-about .flex .right, #subpage.page-about .flex .left {
    margin-bottom: 30px;
  }
}
#subpage.page-about .flex .title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 1em;
}
#subpage.page-about article.about table {
  width: 96%;
  margin: 0 2%;
}
#subpage.page-about article.about table tr {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 640px) {
  #subpage.page-about article.about table tr {
    padding: 20px 0 0;
  }
}
#subpage.page-about article.about table th, #subpage.page-about article.about table td {
  padding: 0.5em 0;
  border-bottom: 1px solid #3166cc;
}
#subpage.page-about article.about table th {
  text-align: left;
}
@media screen and (max-width: 640px) {
  #subpage.page-about article.about table th {
    border-bottom: none;
    padding: 0;
  }
  #subpage.page-about article.about table th:before {
    content: "□";
    margin-right: 0.3em;
  }
}
#subpage.page-about article.history ul {
  width: 96%;
  margin: 0 2%;
}
#subpage.page-about article.history ul li {
  padding: 0.2em 0;
}
#subpage.page-about article.history ul li span {
  display: inline-block;
  margin-right: 3em;
}
@media screen and (max-width: 640px) {
  #subpage.page-about article.history ul li span {
    display: block;
  }
}
#subpage.page-about article.access iframe {
  width: 100%;
}

#subpage.page-content article .flex {
  width: 82%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #subpage.page-content article .flex {
    width: 100%;
  }
}
#subpage.page-content article .flex img {
  margin: 0;
}
#subpage.page-content article .title {
  font-size: 1.5em;
  font-weight: 700;
  margin: 0.5em 0 0.75em;
}
@media screen and (max-width: 640px) {
  #subpage.page-content article .title {
    font-size: 1.3em;
  }
}
#subpage.page-content article .text {
  line-height: 1.75em;
}
#subpage.page-content article img {
  width: 82%;
  margin: 0 9%;
}
@media screen and (max-width: 640px) {
  #subpage.page-content article img {
    width: 100%;
    margin: 0 auto;
  }
}

#subpage.page-example article.case .page-case-slider {
  width: 90%;
  margin: 0 5%;
}
@media screen and (max-width: 640px) {
  #subpage.page-example article.case .page-case-slider {
    width: 100%;
    margin: 0;
  }
}
#subpage.page-example article.case .page-case-slider .slick-next.slick-arrow {
  width: 3%;
  height: 20%;
  right: -9%;
}
#subpage.page-example article.case .page-case-slider .slick-prev.slick-arrow {
  width: 3%;
  height: 20%;
  left: -9%;
}
#subpage.page-example article.case .slick-dots {
  bottom: -40px;
}
#subpage.page-example article.case img {
  width: 90%;
  margin: 0 5%;
}
@media screen and (max-width: 640px) {
  #subpage.page-example article.case img {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 640px) {
  #subpage.page-example article.list table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
}
#subpage.page-example article.list table th, #subpage.page-example article.list table td {
  padding: 0.5em 0;
  text-align: left;
}
@media screen and (max-width: 640px) {
  #subpage.page-example article.list table th, #subpage.page-example article.list table td {
    padding: 0.2em 0;
  }
}
#subpage.page-example article.list table th {
  width: 10%;
}
@media screen and (max-width: 640px) {
  #subpage.page-example article.list table th {
    width: 100%;
  }
}
#subpage.page-example article.list table td {
  width: 35%;
}
@media screen and (max-width: 640px) {
  #subpage.page-example article.list table td {
    width: 100%;
  }
}

#subpage.page-adoption article.list table {
  width: 96%;
  margin: 0 2%;
}
@media screen and (max-width: 640px) {
  #subpage.page-adoption article.list table {
    border-top: 1px solid #3166cc;
    border-left: 1px solid #3166cc;
    border-right: 1px solid #3166cc;
  }
}
@media screen and (max-width: 640px) {
  #subpage.page-adoption article.list table tr {
    display: flex;
    flex-direction: column;
  }
}
#subpage.page-adoption article.list table th, #subpage.page-adoption article.list table td {
  padding: 0.25em 1em;
  border: 1px solid #5781d5;
}
@media screen and (max-width: 640px) {
  #subpage.page-adoption article.list table th, #subpage.page-adoption article.list table td {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #3166cc;
  }
}
#subpage.page-adoption article.list table th {
  background-color: #cbd8f2;
}
@media screen and (max-width: 640px) {
  #subpage.page-adoption article.list table th {
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  #subpage.page-adoption article.list table td {
    padding: 0.5em 1em;
  }
}
#subpage.page-adoption article.list .btn {
  display: inline-block;
  width: 96%;
  margin: 2em 2% 0;
  padding: 0.75em 0;
  background-color: #3166cc;
  color: #fff;
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  #subpage.page-adoption article.list .btn {
    font-size: 1.2em;
  }
}
#subpage.page-adoption article.gallery .text {
  text-align: center;
}
#subpage.page-adoption article.gallery .flex {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px 10px;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  #subpage.page-adoption article.gallery .flex {
    grid-template-columns: repeat(2, 1fr);
  }
}
#subpage.page-adoption article.gallery .flex img {
  width: 100%;
  vertical-align: bottom;
}

#subpage.page-contact article table {
  width: 96%;
  margin: 0 2%;
}
@media screen and (max-width: 640px) {
  #subpage.page-contact article table {
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
  }
}
@media screen and (max-width: 640px) {
  #subpage.page-contact article table tr {
    display: flex;
    flex-direction: column;
  }
}
#subpage.page-contact article table th, #subpage.page-contact article table td {
  border: 1px solid #333;
}
@media screen and (max-width: 640px) {
  #subpage.page-contact article table th, #subpage.page-contact article table td {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #333;
  }
}
#subpage.page-contact article table th {
  border-right: 1px solid rgba(0, 0, 0, 0);
  background-color: #dbe2e9;
}
@media screen and (max-width: 640px) {
  #subpage.page-contact article table th p {
    padding: 0 1em;
    text-align: left;
  }
}
#subpage.page-contact article table th.req {
  position: relative;
}
#subpage.page-contact article table th.req:after {
  content: "必須";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background-color: #ff5059;
  color: #fff;
  font-size: 0.7em;
  padding: 0.25em 1em;
  border-radius: 4px;
}
#subpage.page-contact article table td {
  padding: 0 1em;
}
#subpage.page-contact article table td input, #subpage.page-contact article table td textarea {
  width: 98%;
  padding: 0.75em 0.5em;
  border: 1px solid #777;
}
#subpage.page-contact article p {
  text-align: center;
}
@media screen and (max-width: 640px) {
  #subpage.page-contact article p {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}
#subpage.page-contact article p .wpcf7-submit {
  display: inline-block;
  width: 100px;
  padding: 0.25em 0;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #subpage.page-contact article p .wpcf7-submit {
    width: 60vw;
    padding: 0.5em 0;
  }
}

#archive {
  width: 960px;
  margin: 50px auto 100px;
  padding: 0 20px;
}
@media screen and (max-width: 640px) {
  #archive {
    width: calc(98vw - 40px);
  }
}
#archive h3 {
  font-size: 1.75em;
  color: #3166cc;
  padding: 0.5em 0;
  border-bottom: 2px solid #3166cc;
}
#archive article {
  position: relative;
  border-bottom: 1px solid #3166cc;
  padding: 1em 0.5em;
}
#archive article .title {
  color: #3166cc;
  font-size: 1.1em;
}
#archive article:before, #archive article:after {
  content: "";
  position: absolute;
  right: 1em;
  display: inline-block;
  width: 1em;
  height: 1px;
  background-color: #3166cc;
}
#archive article:before {
  top: calc(50% - 0.32em);
  transform: rotate(45deg);
}
#archive article:after {
  top: calc(50% + 0.32em);
  transform: rotate(-45deg);
}
#archive .pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
#archive .pagination .page-numbers li {
  margin: 0 0.5em;
}
#archive .pagination .page-numbers li a.page-numbers, #archive .pagination .page-numbers li span.page-numbers {
  border: 1px solid #3166cc;
  border-radius: 8px;
  color: #3166cc;
  font-size: 1.2em;
  padding: 0.4em 0.75em;
}
#archive .pagination .page-numbers li span.page-numbers {
  background-color: #3166cc;
  color: #fff;
}
#archive .pagination .page-numbers li span.page-numbers.dots {
  background-color: rgba(0, 0, 0, 0);
  border: 0px solid;
  color: #3166cc;
}

#single {
  width: 1000px;
  margin: 50px auto 200px;
}
@media screen and (max-width: 640px) {
  #single {
    width: 94vw;
  }
}
#single .flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2px solid #3166cc;
  padding: 0.5em 0;
  margin-bottom: 2em;
}
#single .flex h3 {
  font-size: 1.5em;
}
#single a.bnr {
  display: block;
  width: 30%;
  margin: 70px auto 0;
  padding: 0.75em 0;
  text-align: center;
  background-color: #3166cc;
  color: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 640px) {
  #single a.bnr {
    width: 60%;
  }
}

footer {
  background-color: #3366cc;
  color: #fff;
  padding: 20px 25px;
  min-width: 950px;
}
@media screen and (max-width: 640px) {
  footer {
    width: 90vw;
    padding: 20px 5vw;
    min-width: auto;
  }
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 640px) {
  footer .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .wrap h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.2em;
}
footer .wrap nav {
  display: flex;
}
@media screen and (max-width: 640px) {
  footer .wrap nav {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1em;
  }
}
footer .wrap nav a {
  margin-left: 40px;
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 640px) {
  footer .wrap nav a {
    margin-left: 1em;
    padding: 0.5em 0;
  }
}
footer .office {
  border-left: 1px solid #fff;
  margin-top: 1.5em;
  margin-left: 0.8em;
  padding-left: 1em;
  font-size: 14px;
  line-height: 1.8em;
  letter-spacing: 0.3em;
}
footer .copyright {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
}
@media screen and (max-width: 640px) {
  footer .copyright {
    margin-top: 50px;
  }
}
