@charset "UTF-8";
body {
  font-family: "source-han-sans-japanese", sans-serif;
}

body {
  color: #222;
}

/* リキッドレイアウト対応 */
html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  min-height: 100vh;
  letter-spacing: 0.08em;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  min-width: 595px;
  min-width: 59.5rem;
  height: 1100px;
  height: 110rem;
  background: -webkit-gradient(linear, right bottom, left top, color-stop(66%, transparent), color-stop(66.1%, #122a88));
  background: linear-gradient(to top left, transparent 66%, #122a88 66.1%);
  z-index: -1;
}

.br-sp {
  display: none;
}

.show-tab {
  display: none;
}

.show-sp {
  display: none;
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

/*別ページからのスムーススクロール*/
.l-techno.scroll-position,
.l-heater.scroll-position {
  display: block;
  margin-top: -100px;
  margin-top: -10rem;
  padding-top: 100px;
  padding-top: 10rem;
}

.c-breadcrumbs {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.012em;
  color: #999;
}

.c-breadcrumbs li {
  display: inline;
}

.c-breadcrumbs a:hover {
  color: #dc4713;
}

.c-btn {
  font-size: 20px;
  font-size: 2rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  color: #fff;
  background-color: #dc4713;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  padding: 25px 10px;
  padding: 2.5rem 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn span {
  display: inline-block;
  border-left: 10px solid #fff;
  border-left: 1rem solid #fff;
  border-right: 10px solid transparent;
  border-right: 1rem solid transparent;
  border-top: 5px solid transparent;
  border-top: 0.5rem solid transparent;
  border-bottom: 5px solid transparent;
  border-bottom: 0.5rem solid transparent;
  margin-left: 20px;
  margin-left: 2rem;
}

.c-btn:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-burger-btn {
  display: none;
}

.c-burger-btn {
  width: 100px;
  width: 10rem;
  height: 100px;
  height: 10rem;
  background-color: #122a88;
  cursor: pointer;
  position: relative;
  z-index: 101;
}

.bar {
  content: "";
  width: 50px;
  width: 5rem;
  height: 2px;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.bar01 {
  top: 35px;
  top: 3.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.bar02 {
  top: 50px;
  top: 5rem;
}

.bar03 {
  top: 65px;
  top: 6.5rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-burger-btn.js-close .bar01 {
  top: 50px;
  top: 5rem;
  left: 25px;
  left: 2.5rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-burger-btn.js-close .bar02 {
  opacity: 0;
}

.c-burger-btn.js-close .bar03 {
  top: 50px;
  top: 5rem;
  left: 25px;
  left: 2.5rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-gnavi {
  color: #222;
  padding: 0 20px;
  padding: 0 2rem;
}

.c-gnavi__items {
  font-size: 17px;
  font-size: 1.7rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
}

.c-gnavi__item:not(:first-of-type) {
  margin-left: 42px;
  margin-left: 4.2rem;
}

.c-gnavi__link {
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-gnavi__link::after {
  content: "";
  background-color: #122a88;
  width: 100%;
  height: 3px;
  height: 0.3rem;
  position: absolute;
  bottom: 25%;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-gnavi__link:hover.c-gnavi__link::after {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-modal {
  color: #fff;
  width: 100%;
  height: 100vh;
  background-color: #122a88;
  position: fixed;
  top: 0;
  z-index: 100;
  padding: 150px 20px;
  padding: 15rem 2rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-modal::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari 対応 */
}

.c-modal.js-open {
  display: block;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-modal__link {
  display: inline-block;
  width: 100%;
  padding: 0.5em 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-modal__link:hover {
  text-decoration: underline;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-modal__item:not(:last-of-type) {
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}

.c-page-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  padding: 3rem 0;
}

.c-page-link__item {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #122a88;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-page-link__item:not(:first-of-type) {
  margin-left: 50px;
  margin-left: 5rem;
}

.c-page-link__item svg {
  width: 10px;
  width: 1rem;
  height: auto;
}

.c-page-link__item span {
  margin-left: 15px;
  margin-left: 1.5rem;
}

.c-page-link__item:hover {
  opacity: 0.8;
}

.c-page-link02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-page-link02__item {
  font-size: 17px;
  font-size: 1.7rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #122a88;
  border: 1px solid #122a88;
  border: 0.1rem solid #122a88;
  display: inline-block;
  text-align: center;
  padding: 10px 30px;
  padding: 1rem 3rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-page-link02__item:not(:first-of-type) {
  margin-left: 20px;
  margin-left: 2rem;
}

.c-page-link02__item:hover {
  color: #fff;
  background-color: #122a88;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-numbers {
  font-size: 19px;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 40px;
  line-height: 4rem;
  border: 1px solid #122a88;
  border: 0.1rem solid #122a88;
  text-align: center;
  display: inline-block;
  width: 40px;
  width: 4rem;
  height: 40px;
  height: 4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page-numbers:not(:first-child) {
  margin-left: 10px;
  margin-left: 1rem;
}

.page-numbers:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.page-numbers.prev,
.page-numbers.next {
  width: auto;
  padding: 0 10px;
  padding: 0 1rem;
}

.page-numbers.current {
  color: #fff;
  background-color: #122a88;
}

.c-pagenation2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #122a88;
}

.c-pagenation2__item {
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  min-width: 150px;
  min-width: 15rem;
}

.c-pagenation2__item:nth-of-type(2) {
  color: #fff;
  background-color: #dc4713;
}

.c-pagenation2__item:nth-of-type(1) span {
  display: inline-block;
  border-left: 10px solid transparent;
  border-left: 1rem solid transparent;
  border-right: 10px solid #122a88;
  border-right: 1rem solid #122a88;
  border-top: 5px solid transparent;
  border-top: 0.5rem solid transparent;
  border-bottom: 5px solid transparent;
  border-bottom: 0.5rem solid transparent;
  margin-right: 20px;
  margin-right: 2rem;
}

.c-pagenation2__item:nth-of-type(3) span {
  display: inline-block;
  border-left: 10px solid #122a88;
  border-left: 1rem solid #122a88;
  border-right: 10px solid transparent;
  border-right: 1rem solid transparent;
  border-top: 5px solid transparent;
  border-top: 0.5rem solid transparent;
  border-bottom: 5px solid transparent;
  border-bottom: 0.5rem solid transparent;
  margin-left: 20px;
  margin-left: 2rem;
}

.c-pagenation2__item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  padding: 1rem 2rem;
}

.c-pagenation2__item:nth-of-type(1) a,
.c-pagenation2__item:nth-of-type(3) a {
  border: 1px solid #122a88;
  border: 0.1rem solid #122a88;
}

.c-section-title {
  font-size: 70px;
  font-size: 7rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

.c-section-title::after {
  content: "";
  width: 105px;
  width: 10.5rem;
  height: 7px;
  height: 0.7rem;
  background-color: #122a88;
  position: absolute;
  bottom: -34px;
  bottom: -3.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-section-title--en {
  font-size: 23px;
  font-size: 2.3rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #dc4713;
  text-align: center;
}

.c-section-title--sub {
  font-size: 50px;
  font-size: 5rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #122a88;
  text-align: center;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}

.sp-footer-btn {
  display: none;
}

.c-table {
  width: 100%;
}

.c-table__list {
  font-size: 17px;
  font-size: 1.7rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ccc;
  border-bottom: 0.1rem solid #ccc;
  padding: 15px 0;
  padding: 1.5rem 0;
  word-wrap: break-word;
}

.c-table__list:first-of-type {
  font-weight: 700;
  border-bottom: 2px solid #dc4713;
  border-bottom: 0.2rem solid #dc4713;
}

.c-table__list .row1 {
  width: 29%;
  padding-right: 20px;
  padding-right: 2rem;
}

.c-table__list .row2 {
  width: 22%;
  padding-right: 20px;
  padding-right: 2rem;
}

.c-table__list .row3 {
  width: 21%;
  padding-right: 20px;
  padding-right: 2rem;
}

.c-table__list .row4 {
  width: 22%;
  padding-right: 20px;
  padding-right: 2rem;
}

.c-table__list .row5 {
  width: 6%;
  min-width: 20px;
  min-width: 2rem;
  text-align: center;
  padding-right: 0;
}

.c-table2 {
  width: 100%;
}

.c-table2__list {
  font-size: 17px;
  font-size: 1.7rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-table2__list .row1 {
  letter-spacing: 0.1em;
  width: 16%;
  min-width: 190px;
  min-width: 19rem;
  padding: 12px 10px 13px 0;
  padding: 1.2rem 1rem 1.3rem 0;
  border-bottom: 1px solid #122a88;
  border-bottom: 0.1rem solid #122a88;
}

.c-table2__list .row2 {
  letter-spacing: 0.1em;
  width: 84%;
  padding: 12px 33px 13px;
  padding: 1.2rem 3.3rem 1.3rem;
  border-bottom: 1px solid #ccc;
  border-bottom: 0.1rem solid #ccc;
}

.c-table3 {
  width: 100%;
}

.c-table3__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #fff;
  border-bottom: 0.1rem solid #fff;
}

.c-table3 .row1 {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.47;
  letter-spacing: 0.08em;
  width: 24%;
  padding: 15px 33px 18px;
  padding: 1.5rem 3.3rem 1.8rem;
  background-color: #eee;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.c-table3 .row2 {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.47;
  letter-spacing: 0.08em;
  width: 76%;
  padding: 18px 50px 18px;
  padding: 1.8rem 5rem 1.8rem;
  background-color: #f8f8f8;
}

.l-advantage01 {
  margin-bottom: 180px;
  margin-bottom: 18rem;
}

.l-contact {
  margin-bottom: 150px;
  margin-bottom: 15rem;
}

.l-contents {
  overflow: hidden;
  margin-bottom: 150px;
  margin-bottom: 15rem;
}

#techno .l-contents {
  margin-bottom: 110px;
  margin-bottom: 11rem;
}

#contact .l-contents {
  margin-bottom: 130px;
  margin-bottom: 13rem;
}

#single .l-contents {
  margin-bottom: 200px;
  margin-bottom: 20rem;
}

.l-corporate {
  margin-bottom: 150px;
  margin-bottom: 15rem;
}

.l-equipment-layout {
  margin-bottom: 150px;
  margin-bottom: 15rem;
}

.l-equipment-table {
  margin-bottom: 100px;
  margin-bottom: 10rem;
}

.l-eyecatch {
  margin-bottom: 60px;
  margin-bottom: 6rem;
}

#advantage .l-eyecatch {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

.l-inner {
  width: 100%;
  max-width: 1250px;
  max-width: 125rem;
  padding-right: 25px;
  padding-right: 2.5rem;
  padding-left: 25px;
  padding-left: 2.5rem;
  margin-right: auto;
  margin-left: auto;
}

.l-news {
  margin-bottom: 100px;
  margin-bottom: 10rem;
}

.l-page-link {
  margin: 0 auto 120px;
  margin: 0 auto 12rem;
}

.l-recruit {
  margin-bottom: 170px;
  margin-bottom: 17rem;
}

.l-techno {
  margin-bottom: 110px;
  margin-bottom: 11rem;
}

.p-advantage__section-title {
  font-size: 120px;
  font-size: 12rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.08em;
  color: #222;
  text-align: center;
  margin-bottom: 23px;
  margin-bottom: 2.3rem;
}

.p-advantage01__section-title span {
  font-size: 100px;
  font-size: 10rem;
}

.p-advantage02__section-title span {
  font-size: 110px;
  font-size: 11rem;
}

.p-advantage__section-title--en {
  font-size: 33px;
  font-size: 3.3rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #dc4713;
  text-align: center;
}

.p-advantage__text {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 2.05;
  letter-spacing: 0.1em;
  width: 64%;
  max-width: 766px;
  max-width: 76.6rem;
  text-align: justify;
  margin: 0 auto;
}

.p-advantage__btn {
  width: 33.3%;
  min-width: 400px;
  min-width: 40rem;
  margin: 0 auto;
}

.p-advantage01__text {
  margin-bottom: 72px;
  margin-bottom: 7.2rem;
}

.p-advantage01__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 102px;
  margin-bottom: 10.2rem;
}

.p-advantage01__item {
  width: 12.5%;
  min-height: 430px;
  min-height: 43rem;
  color: #fff;
  background-color: #122a88;
  padding: 34px 0 37px;
  padding: 3.4rem 0 3.7rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.p-advantage01__item-img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: 100px;
  height: 10rem;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}

.p-advantage01__item-img img {
  height: auto;
  margin: 0 auto;
}

.p-advantage01__item-img:nth-of-type(1) img {
  width: 84px;
  width: 8.4rem;
}

.p-advantage01__item-img:nth-of-type(2) img {
  width: 87px;
  width: 8.7rem;
}

.p-advantage01__item-img:nth-of-type(3) img {
  width: 85px;
  width: 8.5rem;
}

.p-advantage01__item-img:nth-of-type(4) img {
  width: 95px;
  width: 9.5rem;
}

.p-advantage01__item-img:nth-of-type(5) img {
  width: 71px;
  width: 7.1rem;
}

.p-advantage01__item-img:nth-of-type(6) img {
  width: 83px;
  width: 8.3rem;
}

.p-advantage01__item-img:nth-of-type(7) img {
  width: 65px;
  width: 6.5rem;
}

.p-advantage01__item-text {
  font-size: 35px;
  font-size: 3.5rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin: 0 auto;
  display: inline-block;
}

.p-advantage01__item svg {
  display: none;
}

.p-advantage02__text {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

.p-advantage02__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 76px;
  margin-bottom: 7.6rem;
}

.p-advantage02__item {
  width: 31.666667%;
}

.p-advantage02__item-img {
  position: relative;
  margin-bottom: 16px;
  margin-bottom: 1.6rem;
}

.p-advantage02__item-img::before {
  content: "";
  display: block;
  padding-top: 71.052632%;
}

.p-advantage02__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-advantage02__item-text {
  font-size: 20px;
  font-size: 2rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.p-contact-privacy__title {
  margin-bottom: 110px;
  margin-bottom: 11rem;
}

.p-contact-privacy__table {
  width: 80%;
  max-width: 960px;
  max-width: 96rem;
  margin: 0 auto;
}

.p-contact-privacy__table dl:not(:last-of-type) {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

.p-contact-privacy__table dl:nth-of-type(4) {
  margin-bottom: 70px;
  margin-bottom: 7rem;
}

.p-contact-privacy__table dl:nth-of-type(5) {
  margin-bottom: 80px;
  margin-bottom: 8rem;
}

.p-contact-privacy__table dt {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 40px;
  margin-bottom: 4rem;
}

.p-contact-privacy__table dd {
  line-height: 1.875;
  letter-spacing: 0.1em;
}

.p-contactarea {
  background-color: #eee;
  padding: 70px 0 105px;
  padding: 7rem 0 10.5rem;
}

.p-contactarea__inner {
  width: 100%;
  max-width: 1220px;
  max-width: 122rem;
  margin: 0 auto;
  padding-right: 25px;
  padding-right: 2.5rem;
  padding-left: 25px;
  padding-left: 2.5rem;
  position: relative;
}

.p-contactarea__head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}

.p-contactarea__title {
  font-size: 60px;
  font-size: 6rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 400;
  color: #122a88;
  position: relative;
}

.p-contactarea__title::after {
  content: "";
  width: 5px;
  width: 0.5rem;
  height: 56px;
  height: 5.6rem;
  background-color: #dc4713;
  position: absolute;
  top: 50%;
  right: -0.4em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-contactarea__text {
  font-size: 20px;
  font-size: 2rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-left: 60px;
  padding-left: 6rem;
}

.p-contactarea__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-contactarea__info {
  background-color: #fff;
  padding: 5px 20px 10px;
  padding: 0.5rem 2rem 1rem;
  width: 64%;
  max-width: 750px;
  max-width: 75rem;
}

.p-contactarea__num {
  font-size: 45px;
  font-size: 4.5rem;
  font-family: bebas-neue-pro-semiexpanded, sans-serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #122a88;
}

.p-contactarea__num .p-contactarea__num--tel {
  white-space: nowrap;
  display: inline-block;
}

.p-contactarea__num .p-contactarea__num--fax {
  display: inline-block;
}

.p-contactarea__time {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #999;
  padding-left: 11em;
}

.p-contactarea__btn {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: #fff;
  background-color: #dc4713;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 400px;
  width: 40rem;
  padding: 36px 20px;
  padding: 3.6rem 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: 20px;
  margin-left: 2rem;
}

.p-contactarea__btn svg {
  width: 40px;
  width: 4rem;
  height: 32px;
  height: 3.2rem;
}

.p-contactarea__btn span {
  margin-left: 14px;
  margin-left: 1.4rem;
}

.p-contactarea__btn:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-corporate-access__title {
  margin-bottom: 90px;
  margin-bottom: 9rem;
}

.p-corporate-access__map {
  width: 100%;
  height: 500px;
  height: 50rem;
}

.p-corporate-access__map iframe {
  width: 100%;
  height: 100%;
}

.p-corporate-greeting__title {
  margin-bottom: 90px;
  margin-bottom: 9rem;
}

.p-corporate-greeting__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 960px;
  max-width: 96rem;
  margin: 0 auto;
}

.p-corporate-greeting__text-box {
  width: 60%;
}

.p-corporate-greeting__text {
  font-size: 20px;
  font-size: 2rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: 0.08em;
  margin-top: -13px;
  margin-top: -1.3rem;
}

.p-corporate-greeting__text:not(:last-of-type) {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}

.p-corporate-greeting__img-box {
  width: 35.7%;
  margin-left: 20px;
  margin-left: 2rem;
}

.p-corporate-greeting__img {
  width: 100%;
  position: relative;
}

.p-corporate-greeting__img::before {
  content: "";
  display: block;
  padding-top: 117.647059%;
}

.p-corporate-greeting__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-corporate-greeting__name {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: 0.15em;
  text-align: right;
}

.p-corporate-greeting__name span {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.72;
  letter-spacing: 0.15em;
  margin-left: 15px;
  margin-left: 1.5rem;
}

.p-corporate-history__title {
  margin-bottom: 90px;
  margin-bottom: 9rem;
}

.p-corporate-profile__title {
  margin-bottom: 110px;
  margin-bottom: 11rem;
}

.p-corporate-profile .p-corporate-profile__table {
  margin-bottom: 57px;
  margin-bottom: 5.7rem;
}

.p-corporate-profile__img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-corporate-profile__img {
  width: 48.75%;
  position: relative;
}

.p-corporate-profile__img::before {
  content: "";
  display: block;
  padding-top: 68.376068%;
}

.p-corporate-profile__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-equipment-layout__img {
  width: 100%;
}

.p-equipment-layout__img img {
  width: 100%;
  height: auto;
}

.p-equipment-list .c-section-title {
  margin-bottom: 60px;
  margin-bottom: 6rem;
}

.p-equipment-list__page-link {
  margin-bottom: 90px;
  margin-bottom: 9rem;
}

.p-equipment-list__table-title {
  font-size: 40px;
  font-size: 4rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.08em;
  border-bottom: solid 5px #122a88;
  border-bottom: solid 0.5rem #122a88;
  position: relative;
  padding-bottom: 20px;
  padding-bottom: 2rem;
  margin-bottom: 30px;
  margin-bottom: 3rem;
}

.p-equipment-list__table-title::after {
  content: "";
  width: 8%;
  display: block;
  position: absolute;
  bottom: -5px;
  bottom: -0.5rem;
  right: 0;
  border-bottom: solid 5px #dc4713;
  border-bottom: solid 0.5rem #dc4713;
}

.p-equipment-list__table {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 53px;
  margin-bottom: 5.3rem;
}

.p-equipment-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-equipment-list__item {
  width: 31.6%;
}

.p-equipment-list__img {
  margin-bottom: 10px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.p-equipment-list__img::before {
  content: "";
  display: block;
  padding-top: 71.052632%;
}

.p-equipment-list__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-equipment-list__text {
  font-size: 15px;
  font-size: 1.5rem;
  word-wrap: break-word;
}

.p-eyecatch {
  margin-top: 100px;
  margin-top: 10rem;
}

.p-eyecatch__contents {
  padding-top: 100px;
  padding-top: 10rem;
  padding-bottom: 95px;
  padding-bottom: 9.5rem;
  padding-left: 270px;
  padding-left: 27rem;
  text-align: right;
}

.p-eyecatch__title--en {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #122a88;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.p-eyecatch__title {
  font-size: 95px;
  font-size: 9.5rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.p-eyecatch__title span {
  font-size: 85px;
  font-size: 8.5rem;
}

.p-footer {
  text-align: center;
  padding: 48px 0 27px;
  padding: 4.8rem 0 2.7rem;
}

.p-footer__inner {
  width: 100%;
  padding-right: 25px;
  padding-right: 2.5rem;
  padding-left: 25px;
  padding-left: 2.5rem;
}

.p-footer__logo {
  display: inline-block;
  width: 370px;
  width: 37rem;
  height: auto;
  margin: 0 auto 15px;
  margin: 0 auto 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-footer__logo img {
  width: 100%;
  height: auto;
}

.p-footer__logo:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-footer__info {
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  margin-bottom: 2.5rem;
}

.p-footer__link {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #122a88;
  min-width: 230px;
  min-width: 23rem;
  padding: 10px 20px;
  padding: 1rem 2rem;
  margin-bottom: 25px;
  margin-bottom: 2.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-footer__link:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-footer__link img {
  width: 13px;
  width: 1.3rem;
  height: auto;
  margin-left: 10px;
  margin-left: 1rem;
}

.p-footer__copyright {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #999;
}

.p-form__title {
  margin-bottom: 100px;
  margin-bottom: 10rem;
}

.p-form__table {
  width: 80%;
  max-width: 960px;
  max-width: 96rem;
  margin: 0 auto;
}

input, button, textarea {
  border: 1px solid #ccc;
  border: 0.1rem solid #ccc;
  border-radius: 0.5rem;
  padding: 5px;
  padding: 0.5rem;
}

.your-company input {
  width: 67%;
}

.your-name-last input,
.your-name-first input,
.your-name-kana-last input,
.your-name-kana-first input,
.your-post input {
  width: 32.1%;
}

.your-prefecture input,
.your-municipalities input,
.your-block input {
  width: 100%;
}

.your-tell input,
.your-email input,
.your-email_confirm input {
  width: 42%;
}

textarea {
  width: 87.4%;
  height: 12.5em;
  line-height: 1.3;
}

.p-form__table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 30px;
  padding: 2.4rem 3rem;
  width: 100%;
}

.p-form__table dl:not(:first-of-type) {
  border-top: 1px solid #ccc;
  border-top: 0.1rem solid #ccc;
}

.p-form__table .form-head {
  width: 20%;
  min-width: 180px;
  min-width: 18rem;
}

.p-form__table dt {
  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-right: 30px;
  margin-right: 3rem;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.textarea .form-head {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-form__table dd {
  width: 100%;
}

.p-form__table .post {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-form__table .address {
  display: block;
}

.address-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.address-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.address-items .address-item {
  margin-top: 18px;
  margin-top: 1.8rem;
}

.address-item dt {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.form-sub {
  color: #999;
  white-space: nowrap;
  padding-left: 1em;
}

.must {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 7px 0;
  padding: 0.7rem 0;
  background: #bd2e2e;
  width: 70px;
  width: 7rem;
  height: 35px;
  height: 3.5rem;
  text-align: center;
}

input.wpcf7-submit,
input[type=reset],
input[type=Reset],
input[type=rEset],
input[type=REset],
input[type=reSet],
input[type=ReSet],
input[type=rESet],
input[type=RESet],
input[type=resEt],
input[type=ResEt],
input[type=rEsEt],
input[type=REsEt],
input[type=reSEt],
input[type=ReSEt],
input[type=rESEt],
input[type=RESEt],
input[type=reseT],
input[type=ReseT],
input[type=rEseT],
input[type=REseT],
input[type=reSeT],
input[type=ReSeT],
input[type=rESeT],
input[type=RESeT],
input[type=resET],
input[type=ResET],
input[type=rEsET],
input[type=REsET],
input[type=reSET],
input[type=ReSET],
input[type=rESET],
input[type=RESET] {
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e0e0e0));
  background: linear-gradient(180deg, white 0%, #e0e0e0 100%);
  font-size: 20px;
  font-size: 2rem;
  padding: 5px 15px;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  text-shadow: 2px 2px 2px #fff;
  text-shadow: 0.2rem 0.2rem 0.2rem #fff;
  color: #000;
}

.form-btn {
  text-align: center;
}

input.wpcf7-submit {
  margin-right: 10px;
  margin-right: 1rem;
  font-size: 25px;
  font-size: 2.5rem;
}

input[type=reset], input[type=Reset], input[type=rEset], input[type=REset], input[type=reSet], input[type=ReSet], input[type=rESet], input[type=RESet], input[type=resEt], input[type=ResEt], input[type=rEsEt], input[type=REsEt], input[type=reSEt], input[type=ReSEt], input[type=rESEt], input[type=RESEt], input[type=reseT], input[type=ReseT], input[type=rEseT], input[type=REseT], input[type=reSeT], input[type=ReSeT], input[type=rESeT], input[type=RESeT], input[type=resET], input[type=ResET], input[type=rEsET], input[type=REsET], input[type=reSET], input[type=ReSET], input[type=rESET], input[type=RESET] {
  font-size: 25px;
  font-size: 2.5rem;
  font-size: 25px;
  font-size: 2.5rem;
  cursor: pointer;
}

.wpcf7-spinner {
  display: none;
}

.p-header {
  width: 100%;
  height: 100px;
  height: 10rem;
  background-color: #f5f5f5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 100px;
  padding-left: 10rem;
}

.p-header__logo {
  display: inline-block;
  width: 270px;
  width: 27rem;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 30px 0;
  padding: 3rem 0;
}

.p-header__logo img {
  width: 100%;
  height: auto;
}

.p-header__logo:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-header__nav {
  height: inherit;
}

.p-header__contact {
  text-align: center;
  padding: 10px 22px 10px 11px;
  padding: 1rem 2.2rem 1rem 1.1rem;
}

.p-header__contact-num {
  font-size: 26px;
  font-size: 2.6rem;
  font-family: bebas-neue-pro-semiexpanded, sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #122a88;
}

.p-header__btn {
  width: 100px;
  width: 10rem;
  height: inherit;
  background-color: #dc4713;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__btn:hover {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-header__btn svg {
  width: 30px;
  width: 3rem;
  height: auto;
}

.p-main-view {
  height: calc(100vh - 23rem);
  position: relative;
  margin-top: 100px;
  margin-top: 10rem;
}

.p-main-view video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: -2;
}

.p-main-view__copy {
  font-size: 120px;
  font-size: 12rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  text-shadow: 5px 5px 30px #000;
  line-height: 1;
  letter-spacing: -0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  position: absolute;
  top: 15%;
  z-index: 1;
  padding: 0 100px;
  padding: 0 10rem;
}

.p-main-view__copy span {
  font-size: 100px;
  font-size: 10rem;
}

.p-news__items {
  width: 77.5%;
  max-width: 930px;
  max-width: 93rem;
  margin: 0 auto;
}

.p-news__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 3px solid #122a88;
  border-bottom: 0.3rem solid #122a88;
  padding: 27px 0;
  padding: 2.7rem 0;
}

.p-news__item:not(:last-of-type) {
  margin-bottom: 32px;
  margin-bottom: 3.2rem;
}

.p-news__date {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 900;
  color: #dc4713;
  background-color: #f5f5f5;
  display: inline-block;
  padding: 12px 20px;
  padding: 1.2rem 2rem;
}

.p-news__title {
  font-size: 28px;
  font-size: 2.8rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 20px;
  margin-left: 2rem;
}

.p-news__pagenation {
  width: 77.5%;
  max-width: 930px;
  max-width: 93rem;
  margin: 0 auto;
}

.p-page-link {
  width: 100%;
  max-width: 1200px;
  max-width: 120rem;
  padding-right: 25px;
  padding-right: 2.5rem;
  padding-left: 270px;
  padding-left: 27rem;
}

.p-page-link__inner {
  padding-left: 60px;
  padding-left: 6rem;
  padding-right: calc(50vw - 50%);
  width: 100vw;
  background-color: #eee;
}

.p-production-system {
  position: relative;
  padding-left: 250px;
  padding-left: 25rem;
  padding-top: 50px;
  padding-top: 5rem;
  padding-bottom: 100px;
  padding-bottom: 10rem;
  overflow: hidden;
}

.p-production-system__title--en {
  font-size: 33px;
  font-size: 3.3rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 900;
  color: #dc4713;
  margin-bottom: 5px;
  margin-bottom: 0.5rem;
}

.p-production-system__title {
  font-size: 120px;
  font-size: 12rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.08em;
  margin-bottom: 30px;
  margin-bottom: 3rem;
}

.p-production-system__title span {
  font-size: 100px;
  font-size: 10rem;
  line-height: 1;
}

.p-production-system__text {
  line-height: 2.18;
  letter-spacing: 0.1em;
  width: 80%;
  margin-bottom: 35px;
  margin-bottom: 3.5rem;
}

.p-production-system__btn {
  font-size: 20px;
  font-size: 2rem;
  font-family: zen-old-mincho, sans-serif;
  color: #fff;
  background-color: #122a88;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 320px;
  width: 32rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px 20px;
  padding: 2.5rem 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-production-system__btn span {
  display: inline-block;
  border-left: 10px solid #fff;
  border-left: 1rem solid #fff;
  border-right: 10px solid transparent;
  border-right: 1rem solid transparent;
  border-top: 5px solid transparent;
  border-top: 0.5rem solid transparent;
  border-bottom: 5px solid transparent;
  border-bottom: 0.5rem solid transparent;
  margin-left: 20px;
  margin-left: 2rem;
}

.p-production-system__btn:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-production-system__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.p-production-system__item {
  width: 19.3%;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}

.p-production-system__item:not(:first-of-type) {
  margin-left: 12px;
  margin-left: 1.2rem;
}

.p-production-system__img {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: -1;
}

.p-production-system__img::before {
  content: "";
  display: block;
  padding-top: 135.714286%;
}

.p-production-system__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-production-system__desc {
  display: inline-block;
  color: #fff;
  background-color: #122a88;
  width: 85.7%;
  height: 80px;
  height: 8rem;
  position: relative;
  padding: 10px;
  padding: 1rem;
  top: -50px;
  top: -5rem;
}

.p-production-system__desc::before {
  font-family: zen-old-mincho, sans-serif;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #dc4713;
  bottom: -10px;
  bottom: -1rem;
  right: -10px;
  right: -1rem;
  z-index: -1;
}

.p-production-system__desc-title {
  font-size: 20px;
  font-size: 2rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
}

.p-production-system__desc-title--en {
  font-size: 10px;
  font-size: 1rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
}

.p-recruit-career__title {
  margin-bottom: 100px;
  margin-bottom: 10rem;
}

.p-recruit-career__header {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  background-color: #dc4713;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 20px;
  padding: 2rem;
  margin-bottom: 35px;
  margin-bottom: 3.5rem;
}

.p-recruit-fresh__title {
  margin-bottom: 100px;
  margin-bottom: 10rem;
}

.p-recruit-fresh__header {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  background-color: #dc4713;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 20px;
  padding: 2rem;
  margin-bottom: 35px;
  margin-bottom: 3.5rem;
}

.p-single__contents {
  width: 77.5%;
  max-width: 930px;
  max-width: 93rem;
  margin: 0 auto 45px;
  margin: 0 auto 4.5rem;
  border-bottom: 3px solid #ccc;
  border-bottom: 0.3rem solid #ccc;
}

.p-single__date {
  font-size: 17px;
  font-size: 1.7rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 900;
  display: block;
  color: #dc4713;
  background-color: #f5f5f5;
  width: 160px;
  width: 16rem;
  text-align: center;
  padding: 6px 20px;
  padding: 0.6rem 2rem;
  margin: 0 auto 30px;
  margin: 0 auto 3rem;
}

.p-single__title {
  font-size: 35px;
  font-size: 3.5rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  border-bottom: 3px solid #122a88;
  border-bottom: 0.3rem solid #122a88;
  padding-bottom: 10px;
  padding-bottom: 1rem;
  margin-bottom: 30px;
  margin-bottom: 3rem;
}

.p-single p {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 2.05;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  margin-bottom: 3rem;
}

.p-single img {
  margin-bottom: 80px;
  margin-bottom: 8rem;
}

.p-single__contents h3 {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  background-color: #f5f5f5;
  border-bottom: 3px solid #122a88;
  border-bottom: 0.3rem solid #122a88;
  padding: 10px 10px 10px 20px;
  padding: 1rem 1rem 1rem 2rem;
}

.p-single__contents h4 {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 20px;
  padding-left: 2rem;
}

.p-single__contents h4::before {
  content: "";
  background-color: #122a88;
  position: absolute;
  width: 10px;
  width: 1rem;
  height: 100%;
  top: 0;
  left: 0;
}

.p-single__contents img {
  width: calc(50% - 20px);
  height: auto;
  margin-top: 40px;
  margin-top: 4rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-single__img img:nth-of-type(2n) {
  margin-left: 40px;
  margin-left: 4rem;
}

.p-single__img img:nth-of-type(1),
.p-single__img img:nth-of-type(2) {
  margin-top: 0;
}

.p-single__pagenation {
  width: 77.5%;
  max-width: 930px;
  max-width: 93rem;
  margin: 0 auto;
}

.p-techno__text {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 2.05;
  letter-spacing: 0.12em;
  width: 61.66%;
  max-width: 740px;
  max-width: 74rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  margin: 0 auto 25px;
  margin: 0 auto 2.5rem;
}

.p-techno__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-techno__img:nth-of-type(1),
.p-techno__img:nth-of-type(2) {
  width: 49.375%;
}

.p-techno__img:nth-of-type(3),
.p-techno__img:nth-of-type(4),
.p-techno__img:nth-of-type(5) {
  width: 32.5%;
  margin-top: 15px;
  margin-top: 1.5rem;
}

.p-techno__img {
  position: relative;
}

.p-techno__img::before {
  content: "";
  display: block;
  padding-top: 67.567568%;
}

.p-techno__img:nth-of-type(3)::before,
.p-techno__img:nth-of-type(4)::before,
.p-techno__img:nth-of-type(5)::before {
  padding-top: 71.794872%;
}

.p-techno__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-top-equipment {
  height: 650px;
  height: 65rem;
  position: relative;
  background-color: #3e3a39;
}

.p-top-equipment__bg {
  height: inherit;
  overflow: hidden;
}

.p-top-equipment__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-equipment__contents {
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  width: 55%;
  height: 650px;
  height: 65rem;
  background-color: #122a88;
  -webkit-clip-path: polygon(38% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(38% 0, 100% 0, 100% 100%, 0% 100%);
  padding-left: 500px;
  padding-left: 50rem;
  position: absolute;
  top: 0;
  right: 0;
  padding: 200px 50px 200px 360px;
  padding: 20rem 5rem 20rem 36rem;
}

.p-top-equipment__title {
  font-size: 80px;
  font-size: 8rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
  margin-bottom: 1.8rem;
}

.p-top-equipment__title--en {
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 30px;
  margin-bottom: 3rem;
}

.p-top-equipment__btn {
  font-size: 20px;
  font-size: 2rem;
  color: #122a88;
  background-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 320px;
  width: 32rem;
  padding: 25px 20px;
  padding: 2.5rem 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-top-equipment__btn span {
  display: inline-block;
  border-left: 10px solid #122a88;
  border-left: 1rem solid #122a88;
  border-right: 10px solid transparent;
  border-right: 1rem solid transparent;
  border-top: 5px solid transparent;
  border-top: 0.5rem solid transparent;
  border-bottom: 5px solid transparent;
  border-bottom: 0.5rem solid transparent;
  margin-left: 20px;
  margin-left: 2rem;
}

.p-top-links {
  padding: 100px 30px 130px;
  padding: 10rem 3rem 13rem;
}

.p-top-links__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-top-links__content {
  width: 49%;
  position: relative;
}

.p-top-links__content:hover .p-top-links__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-top-links__img {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: -2;
}

.p-top-links__img::before {
  content: "";
  display: block;
  padding-top: 60%;
}

.p-top-links__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-top-links__text {
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  width: 340px;
  width: 34rem;
  height: 280px;
  height: 28rem;
  background-color: #fff;
  position: absolute;
  bottom: -30px;
  bottom: -3rem;
  left: 30px;
  left: 3rem;
  padding: 50px 53px 50px 57px;
  padding: 5rem 5.3rem 5rem 5.7rem;
}

.p-top-links__text::before {
  content: "";
  background-color: rgba(0, 0, 0, .2);
  width: 100%;
  height: 100%;
  position: absolute;
  right: -20px;
  right: -2rem;
  bottom: -20px;
  bottom: -2rem;
  z-index: -1;
}

.p-top-links__title {
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.1em;
  color: #122a88;
}

.p-top-links__title--en {
  color: #122a88;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
  margin-bottom: 2.6rem;
}

.p-top-links__btn {
  color: #fff;
  background-color: #122a88;
  font-size: 20px;
  font-size: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 230px;
  width: 23rem;
  padding: 20px;
  padding: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-top-links__btn span {
  display: inline-block;
  border-left: 10px solid #fff;
  border-left: 1rem solid #fff;
  border-right: 10px solid transparent;
  border-right: 1rem solid transparent;
  border-top: 5px solid transparent;
  border-top: 0.5rem solid transparent;
  border-bottom: 5px solid transparent;
  border-bottom: 0.5rem solid transparent;
  margin-left: 20px;
  margin-left: 2rem;
}

.p-top-links__btn:hover {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-topics {
  width: 80%;
  color: #fff;
  background-color: #122a88;
  margin-right: 0;
  margin-left: auto;
  -webkit-clip-path: polygon(6% 0%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(6% 0%, 100% 0, 100% 100%, 0% 100%);
  padding: 40px 250px 40px 110px;
  padding: 4rem 25rem 4rem 11rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-topics__title {
  font-size: 36px;
  font-size: 3.6rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 74px;
  margin-right: 7.4rem;
}

.p-topics__contents {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-topics__article {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-topics__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-topics__link:hover {
  opacity: 0.8;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-topics__article-date {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  min-width: 106px;
  min-width: 10.6rem;
}

.p-topics__article-title {
  letter-spacing: 0.1em;
  margin-left: 27px;
  margin-left: 2.7rem;
}

.p-topics__btn {
  width: 110px;
  width: 11rem;
  height: 40px;
  height: 4rem;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  border: 1px solid #fff;
  border: 0.1rem solid #fff;
  padding: 7px 15px;
  padding: 0.7rem 1.5rem;
  margin-left: 20px;
  margin-left: 2rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-topics__btn:hover {
  color: #122a88;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}


.recruit_txt{text-align: center; font-size: 1.8rem;}
.recruit_mynavi_img{max-width: 600px; margin: 0 auto 30px;}
.recruit_mynavi_img img{width: 100%; height: auto;}
.recruit_mynavi_btn{width: 90%; max-width: 400px; margin: 0 auto; text-align: center;}
.recruit_mynavi_btn a{font-size: 2.5rem; color: #fff; background-color: #dc4713; display: block; padding: 15px 0; border: 1px solid #dc4713; transition: .5s;}
.recruit_mynavi_btn a:hover{color: #dc4713; background-color: #fff; transition: .5s;}


/* 
----------------------------------------------------
PC CSS　※PC：～1370px　※印刷用はPC CSSを大体利用する
----------------------------------------------------
*/
@media (max-width: 1370px) {
  /***************
  共通 
  ***************/
  .p-header__inner {
    padding-left: 2rem;
  }

  .p-header__logo {
    width: 22rem;
    padding: 3.5rem 0;
  }

  .c-gnavi__item:not(:first-of-type) {
    margin-left: 1.5rem;
  }

  .p-header__contact {
    padding: 2rem 1rem;
  }

  .p-header__contact-num {
    font-size: 1.8rem;
  }

  .p-eyecatch__contents {
    padding-left: 0;
  }

  .p-page-link {
    padding-left: 2.5rem;
  }

.c-gnavi__items {
  font-size: 15px;
  font-size: 1.5rem;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
}



  /***************
  トップページ 
  ***************/
  .p-topics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4rem 10rem 4rem 11rem;
    -webkit-clip-path: polygon(9% 0%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(9% 0%, 100% 0, 100% 100%, 0% 100%);
  }

  .p-topics__title {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .p-top-links__text {
    height: auto;
    height: initial;
    padding: 2rem;
  }

  .p-top-equipment__contents {
    width: 70%;
    padding: 20rem 5rem 10rem 30rem;
  }

  .p-production-system {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 10rem;
  }

  /***************
  竹村製作所の強みページ 
  ***************/
  .p-advantage__section-title--en {
    font-size: 3rem;
  }

  .p-advantage__section-title {
    font-size: 7rem;
  }

  .p-advantage__section-title span {
    font-size: 5rem;
  }

  /***************
  技術情報ページ 
  ***************/
  .p-techno__text {
    width: 70%;
  }
}
/* 
----------------------------------------------------
TAB CSS　※タブレット：～1024px
----------------------------------------------------
*/
@media (max-width: 1024px) {
  /***************
  共通 
  ***************/
  .br-tab {
    display: none;
  }

  .show-tab {
    display: block;
  }

  .p-header__nav {
    display: none;
  }

  .p-header__btn {
    display: none;
  }

  .c-burger-btn {
    display: block;
  }

  main::before {
    display: none;
  }

  .p-contactarea__title {
    font-size: 3rem;
  }

  .p-contactarea__text {
    font-size: 1.8rem;
    padding-left: 4rem;
  }

  .p-contactarea__info {
    padding: 2rem;
  }

  .p-contactarea__num {
    font-size: 2.5rem;
  }

  .p-contactarea__time {
    padding-left: 0;
  }

  .p-contactarea__btn {
    padding: 2rem;
  }

  .p-eyecatch__contents {
    padding-left: 0;
    text-align: left;
  }

  .p-eyecatch__title {
    font-size: 7rem;
  }

  .p-eyecatch__title span {
    font-size: 5rem;
  }

  .p-eyecatch__contents {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .p-page-link__inner {
    padding-left: 2rem;
  }

  .c-page-link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 2rem 0;
  }

  .c-page-link__item {
    padding: 1rem 2rem;
  }

  .c-page-link__item:not(:first-of-type) {
    margin-left: 0;
  }

  .c-section-title {
    font-size: 6rem;
  }

  .c-section-title--sub {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .c-table__wrap {
    overflow-x: scroll;
    margin-bottom: 3rem;
    position: relative;
  }

  .scroll-hint-icon {
    width: 14.8rem !important;
    height: 14.8rem !important;
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
    padding: 25px 10px 25px 10px !important;
  }

  .scroll-hint-icon:before {
    width: 100% !important;
    height: 100% !important;
    background-image: url(../images/ico_slide01.png) !important;
  }

  .scroll-hint-icon:after {
    display: none !important;
  }

  .scroll-hint-text {
    display: none !important;
  }

  .scroll-hint-icon-wrap.is-active .scroll-hint-icon {
    opacity: 0.6 !important;
  }

  .c-table {
    width: 100%;
    min-width: 102.4rem;
    overflow: hidden;
  }

  .c-table__list {
    font-size: 1.5rem;
  }

  .c-table3 .row1 {
    padding: 1.5rem 2rem 1.8rem;
  }

  .c-table3 .row1 {
    padding: 1.5rem 2rem 1.8rem;
  }

    .p-header__logo {
    width: 18rem;
    padding: 3.5rem 0;
  }

  /***************
  トップページ 
  ***************/
  .p-main-view__copy {
    font-size: 6rem;
  }

  .p-main-view__copy span {
    font-size: 4rem;
  }

  .p-topics {
    width: 100%;
    -webkit-clip-path: initial;
            clip-path: initial;
  }

  .p-topics__article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .p-topics__article-title {
    margin-left: 0;
  }

  .p-production-system {
    padding-bottom: 17rem;
  }

  .p-production-system__title {
    font-size: 5rem;
  }

  .p-production-system__title span {
    font-size: 3rem;
  }

  .p-production-system__title--en {
    font-size: 2.3rem;
  }

  .p-production-system__text {
    width: 100%;
  }

  .p-production-system__btn {
    width: 100%;
    max-width: 32rem;
    padding: 2rem;
  }

  .p-production-system__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .p-production-system__item {
    width: 32%;
  }

  .p-top-equipment {
    height: 48rem;
    position: relative;
  }

  .p-top-equipment__contents {
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-color: initial;
    -webkit-clip-path: initial;
            clip-path: initial;
    top: 0;
    left: 0;
  }

  .p-top-equipment__bg img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .p-top-equipment__hr {
    width: 100%;
    height: 7rem;
    background-color: #122a88;
    position: absolute;
    left: 0;
    bottom: -7rem;
    z-index: -1;
  }

  .p-top-equipment__title {
    font-size: 5rem;
    color: #122a88;
    margin-bottom: 0;
    position: absolute;
    top: -10rem;
    left: 2rem;
  }

  .p-top-equipment__title--en {
    font-size: 1.6rem;
    color: #122a88;
    position: absolute;
    top: -4rem;
    left: 2rem;
    margin-bottom: 0;
  }

  .p-top-equipment__btn {
    position: absolute;
    bottom: -3.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 2rem;
  }

  .p-top-links {
    padding: 10rem 3rem 20rem;
  }

  .p-top-links__text {
    width: auto;
    width: initial;
    bottom: -15rem;
  }

  /***************
  竹村製作所の強みページ
  ***************/
  .l-advantage01 {
    margin-bottom: 10rem;
  }

  .p-advantage__section-title--en {
    font-size: 2.5rem;
  }

  .p-advantage__section-title {
    font-size: 6rem;
    margin-bottom: 3rem;
  }

  .p-advantage__section-title span {
    font-size: 5rem;
  }

  /***************
  技術情報ページ
  ***************/
  .l-techno {
    margin-bottom: 10rem;
  }

  /***************
  設備概要ページ
  ***************/
  .p-equipment-list__table {
    margin-bottom: 0;
  }

  /***************
  会社案内ページ
  ***************/
  .l-corporate {
    margin-bottom: 10rem;
  }

  .p-corporate-greeting__text {
    font-size: 1.6rem;
  }

  .p-corporate-greeting__name {
    font-size: 1.4rem;
  }

  .p-corporate-greeting__name span {
    font-size: 1.8rem;
  }

  /***************
  採用情報ページ
  ***************/
  .l-recruit {
    margin-bottom: 10rem;
  }

  /***************
  お問い合わせ 
  ***************/
  .p-form__table dl {
    display: block;
    padding: 1.5rem 1rem;
  }

  .p-form__table dd {
    margin-top: 1rem;
  }

  .address-items {
    display: block;
  }

  .address-items .address-item {
    margin-top: 0.8rem;
  }

  .p-form__table {
    margin-top: 3rem;
    width: 100%;
  }

  .address-item {
    display: block;
  }

  .p-form__table dt {
    display: block;
  }

  .must {
    padding: 0.3rem 1rem;
    margin-right: 0.5rem;
  }

  .your-company input {
    width: 100%;
  }

  .your-name-last input,
.your-name-first input,
.your-name-kana-last input,
.your-name-kana-first input,
.your-post input {
    width: 49%;
  }

  .your-tell input,
.your-email input,
.your-email_confirm input {
    width: 100%;
  }

  input, textarea {
    width: 100%;
  }

  button {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  input.wpcf7-submit {
    margin-right: 0;
    font-size: 2rem;
  }

  input[type=reset],input[type=Reset],input[type=rEset],input[type=REset],input[type=reSet],input[type=ReSet],input[type=rESet],input[type=RESet],input[type=resEt],input[type=ResEt],input[type=rEsEt],input[type=REsEt],input[type=reSEt],input[type=ReSEt],input[type=rESEt],input[type=RESEt],input[type=reseT],input[type=ReseT],input[type=rEseT],input[type=REseT],input[type=reSeT],input[type=ReSeT],input[type=rESeT],input[type=RESeT],input[type=resET],input[type=ResET],input[type=rEsET],input[type=REsET],input[type=reSET],input[type=ReSET],input[type=rESET],input[type=RESET] {
    margin-top: 1rem;
    font-size: 2rem;
  }

  .form-btn {
    max-width: 30rem;
    margin: 0 auto;
  }

  /***************
  新着情報一覧ページ 
  ***************/
  .p-news__title {
    font-size: 2rem;
  }

  .p-news__item:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}
/* 
---------------------------------------------------
SP CSS　※スマートフォン：～680px
---------------------------------------------------
*/
@media (max-width: 680px) {
  /***************
  共通 
  ***************/
  .none-sp {
    display: none;
  }

  .show-sp {
    display: block;
  }

  .br-sp {
    display: block;
  }

  .l-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .l-contents {
    margin-bottom: 6rem;
  }

  .l-techno.scroll-position,
.l-heater.scroll-position {
    margin-top: -5rem;
    padding-top: 5rem;
  }

  .p-header__contact {
    display: none;
  }

  .p-header {
    height: 5rem;
  }

  .p-header__inner {
    padding-left: 2rem;
  }

  .p-header__logo {
    width: 16.5rem;
    height: auto;
    padding: 1rem 0;
  }

  .c-burger-btn {
    width: 5rem;
    height: 5rem;
  }

  .bar {
    width: 2rem;
    height: 0.1rem;
  }

  .bar01 {
    top: 2rem;
  }

  .bar02 {
    top: 2.5rem;
  }

  .bar03 {
    top: 3rem;
  }

  .c-burger-btn.js-close .bar01 {
    top: 2.5rem;
    left: 1.5rem;
  }

  .c-burger-btn.js-close .bar03 {
    top: 2.5rem;
    left: 1.5rem;
  }

  .p-contactarea {
    display: none;
  }

  .p-footer {
    background-color: #eee;
    padding: 5.6rem 0 7.5rem;
  }

  .p-footer__inner {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .p-footer__logo {
    width: 29.8rem;
    margin-bottom: 2.5rem;
  }

  .p-footer__info {
    margin-bottom: 3.5rem;
  }

  .p-footer__text {
    font-size: 1.4rem;
    line-height: 1.78;
    letter-spacing: 0.05em;
  }

  .p-footer__copyright {
    font-size: 0.9rem;
    line-height: 2.77;
  }

  .sp-footer-btn {
    width: 100%;
    height: 5rem;
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    border-top: 0.1rem solid #333;
    color: #fff;
    background-color: #333;
  }

  .sp-footer-btn__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .sp-footer-btn__item {
    font-size: 1.4rem;
    width: 50%;
  }

  .sp-footer-btn__item:first-of-type {
    border-right: 0.1rem solid #fff;
  }

  .sp-footer-btn__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 100%;
    padding: 1.5rem 0.5rem 0.5rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sp-footer-btn__link svg {
    height: 2.6rem;
    margin-right: 1rem;
  }

  .p-eyecatch {
    height: auto;
    height: initial;
    background-color: #eee;
    margin-top: 5rem;
  }

  .p-eyecatch__contents {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .p-eyecatch__title--en {
    font-size: 1.5rem;
  }

  .p-eyecatch__title {
    font-size: 3.7rem;
  }

  .p-eyecatch__title span {
    font-size: 3.7rem;
  }

  .c-breadcrumbs {
    font-size: 1.2rem;
  }

  .l-page-link {
    margin: 0 auto 4rem;
  }

  .p-page-link {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .p-page-link__inner {
    width: 100%;
    padding: 2rem;
  }

  .c-page-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .c-page-link__item {
    padding: 0.5rem 0;
  }

  .c-page-link__item:not(:first-of-type) {
    margin-left: 0;
  }

  .c-page-link02__item:not(:first-of-type) {
    margin-left: 1rem;
  }

  .c-page-link02__item {
    width: 31.9%;
    padding: 1.5rem 0.1rem;
  }

  .c-section-title--en {
    font-size: 1.5rem;
  }

  .c-section-title {
    font-size: 3.5rem;
    margin-bottom: 4.5rem;
  }

  .c-section-title::after {
    bottom: -2rem;
  }

  .c-section-title--sub {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .c-btn {
    font-size: 1.8rem;
    padding: 2.5rem 1rem;
  }

  .c-btn span {
    margin-left: 1rem;
  }

  .c-table2 .row1 {
    padding-left: 0;
  }

  .c-table2__list .row2 {
    padding-left: 0.5rem;
  }

  .c-table2__wrap {
    overflow-x: scroll;
    margin-bottom: 2rem;
    position: relative;
  }

  .c-table2 {
    width: 100%;
    min-width: 68rem;
    overflow: hidden;
  }

  .c-table2__list {
    font-size: 1.4rem;
  }

  .c-table3__list {
    font-size: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .c-table3 .row1 {
    font-weight: 700;
    width: 100%;
    padding: 1rem 2rem;
  }

  .c-table3 .row2 {
    width: 100%;
    letter-spacing: 0;
    padding: 1rem 2rem;
  }

  .c-pagenation2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .c-pagenation2__item:not(:first-of-type) {
    margin-top: 1.5rem;
  }

  /***************
  トップページ
  ***************/
  .p-main-view {
    height: calc(100vh - 14.5rem);
    margin-top: 5rem;
  }

  .p-main-view__copy {
    font-size: 5rem;
    text-align: center;
    display: inline-block;
    width: 100%;
    top: 40%;
    padding: 0 2rem;
  }

  .p-main-view__copy span {
    font-size: 4.5rem;
  }

  .p-topics {
    padding: 0 2rem;
    margin: 0;
  }

  .p-topics__title {
    display: none;
  }

  .p-topics__contents {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 2.5rem 0;
  }

  .p-topics__article {
    display: block;
    padding: 0;
    margin-left: 0;
  }

  .p-topics__link {
    display: block;
    height: auto;
    height: initial;
  }

  .p-topics__article-date {
    font-size: 1.2rem;
  }

  .p-topics__article-title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-left: 0;
  }

  .p-production-system {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 3rem;
  }

  .p-production-system__title--en {
    font-size: 1.7rem;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
  }

  .p-production-system__title {
    font-size: 4.3rem;
    margin-bottom: 2rem;
  }

  .p-production-system__title span {
    font-size: 3.6rem;
  }

  .p-production-system__text {
    font-size: 1.5rem;
    width: auto;
    margin-bottom: 2.5rem;
  }

  .p-production-system__items {
    display: block;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }

  .p-production-system__item {
    display: block;
    position: relative;
    width: 100%;
  }

  .p-production-system__item:not(:first-of-type) {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .p-production-system__img {
    width: 100%;
  }

  .p-production-system__img::before {
    padding-top: 42.5%;
  }

  .p-production-system__desc {
    min-width: 28rem;
    height: auto;
    height: initial;
    text-align: center;
    color: #122a88;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 0.7rem 2rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .p-production-system__desc::before {
    display: none;
  }

  .p-production-system__desc:hover {
    color: #fff;
    background-color: #122a88;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .p-production-system__desc-title--en {
    display: none;
  }

  .p-production-system__desc-title {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .p-production-system__desc-title span {
    display: inline-block;
    border-left: 1rem solid #122a88;
    border-right: 1rem solid transparent;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    margin-left: 2rem;
    position: absolute;
    right: 1rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .p-production-system__desc:hover .p-production-system__desc-title span {
    border-left: 1rem solid #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .p-top-links {
    padding: 11rem 3rem 6rem;
    overflow: hidden;
  }

  .p-top-links__contents {
    display: block;
  }

  .p-top-links__content {
    width: 100%;
  }

  .p-top-links__content:nth-of-type(1) {
    margin-bottom: -2rem;
  }

  .p-top-links__content:nth-of-type(2) {
    margin-bottom: -4rem;
  }

  .p-top-links__img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }

  .p-top-links__img::before {
    padding-top: 75%;
  }

  .p-top-links__text {
    width: 30rem;
    height: auto;
    height: initial;
    bottom: 8rem;
    left: 0;
    padding: 2rem 2rem 4rem 3.5rem;
    position: relative;
  }

  .p-top-links__title {
    font-size: 3rem;
    line-height: 1.2;
  }

  .p-top-links__title--en {
    margin-bottom: 0;
  }

  .p-top-links__btn {
    display: block;
    position: absolute;
    bottom: -4rem;
    padding: 2rem 3rem;
  }

  /***************
  竹村製作所の強みページ
  ***************/
  .p-advantage__section-title--en {
    font-size: 1.5rem;
  }

  .p-advantage__section-title {
    font-size: 3.5rem;
    position: relative;
    margin-bottom: 3.5rem;
  }

  .p-advantage__section-title::after {
    content: "";
    width: 9rem;
    height: 0.5rem;
    background-color: #122a88;
    position: absolute;
    bottom: -1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .p-advantage__section-title span {
    font-size: 3.5rem;
  }

  .l-advantage01 {
    margin-bottom: 6rem;
  }

  .p-advantage01__text {
    font-size: 1.5rem;
    line-height: 2;
    width: 100%;
    margin-bottom: 3rem;
  }

  .p-advantage01__items {
    display: block;
    margin-bottom: 3rem;
  }

  .p-advantage01__item {
    width: 100%;
    min-height: 0;
    min-height: initial;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem 2rem;
    position: relative;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }

  .p-advantage01__item svg {
    display: block;
    width: 4.6rem;
    height: auto;
    position: absolute;
    top: 65%;
    right: 2.5rem;
    z-index: 1;
  }

  .p-advantage01__item:not(:first-of-type) {
    margin-top: 1rem;
  }

  .p-advantage01__item-img {
    width: auto;
    width: initial;
    height: auto;
    height: initial;
    margin-bottom: 0;
  }

  .p-advantage01__item-img:nth-of-type(1) img {
    width: 5.2rem;
  }

  .p-advantage01__item-text {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-left: 2.5rem;
  }

  .p-advantage__btn {
    width: 100%;
    min-width: 0;
    min-width: initial;
  }

  .p-advantage02__text {
    font-size: 1.5rem;
    line-height: 2;
    width: 100%;
    margin-bottom: 3rem;
  }

  .p-advantage02__items {
    display: block;
    margin-bottom: 3rem;
  }

  .p-advantage02__item {
    width: 100%;
    margin-bottom: 2rem;
  }

  .p-advantage02__item-img {
    margin-bottom: 1rem;
  }

  .p-advantage02__item-text {
    font-size: 1.7rem;
  }

  /***************
  技術情報ページ
  ***************/
  #techno .l-contents {
    margin-bottom: 6rem;
  }

  .l-techno {
    margin-bottom: 6rem;
  }

  .p-techno__text {
    font-size: 1.5rem;
    line-height: 2;
    width: 100%;
    margin: 0 auto 1.5rem;
  }

  .p-techno__images {
    gap: 1rem 1rem;
  }

  .p-techno__img:nth-of-type(1) {
    width: 100%;
  }

  .p-techno__img:nth-of-type(2),
.p-techno__img:nth-of-type(3),
.p-techno__img:nth-of-type(4),
.p-techno__img:nth-of-type(5) {
    width: 48%;
    margin-top: 0;
  }

  .p-techno04 .p-techno__img:nth-of-type(2),
.p-techno05 .p-techno__img:nth-of-type(2) {
    width: 100%;
  }

  /***************
  設備概要ページ 
  ***************/
  .l-equipment-layout {
    margin-bottom: 6rem;
  }

  .p-equipment-list__page-link {
    margin-bottom: 3rem;
  }

  .p-equipment-list {
    overflow: hidden;
  }

  .p-equipment-list__table-title {
    font-size: 2.4rem;
    line-height: 2;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 0 2rem;
  }

  .p-equipment-list__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .p-equipment-list__item {
    width: 100%;
  }

  .p-equipment-list__item:not(:first-of-type) {
    margin-top: 2rem;
  }

  .l-equipment-table {
    margin-bottom: 6rem;
  }

  .p-equipment-list__table-title::after {
    width: 15%;
  }

  .p-equipment-list__text {
    font-size: 1.4rem;
  }

  /***************
  会社概要ページ 
  ***************/
  .l-corporate {
    margin-bottom: 6rem;
  }

  .p-corporate-greeting__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .p-corporate-greeting__text-box {
    width: 100%;
    margin-bottom: 3rem;
  }

  .p-corporate-greeting__text {
    font-size: 1.6rem;
    line-height: 2.18;
  }

  .p-corporate-greeting__text:not(:last-of-type) {
    margin-bottom: 3rem;
  }

  .p-corporate-greeting__img-box {
    width: 100%;
    margin-left: 0;
  }

  .p-corporate-greeting__img {
    margin-bottom: 1rem;
  }

  .p-corporate-greeting__name {
    text-align: center;
  }

  .p-corporate-greeting__name span {
    font-size: 2.4rem;
  }

  .p-corporate-profile .p-corporate-profile__table {
    margin-bottom: 0;
  }

  .p-corporate-profile .c-table2 .row1 {
    width: 20%;
  }

  .p-corporate-profile__img-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .p-corporate-profile__img {
    width: 100%;
  }

  .p-corporate-profile__img:not(:first-of-type) {
    margin-top: 2rem;
  }

  .p-corporate-access__map {
    height: 45rem;
  }

  .p-corporate-history .c-table2 .row1 {
    width: 18%;
    min-width: 13rem;
  }

  /***************
  採用情報ページ 
  ***************/
  .l-recruit {
    margin-bottom: 6rem;
  }

  .p-recruit-fresh__header {
    font-size: 1.8rem;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }

  .p-recruit-career__header {
    font-size: 1.8rem;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }

  /***************
  お問合せページ 
  ***************/
  .p-contact-privacy__table {
    width: 100%;
  }

  .p-contact-privacy__table dl:not(:last-of-type) {
    margin-bottom: 3rem;
  }

  .p-contact-privacy__table dt {
    font-size: 1.9rem;
    margin-bottom: 2rem;
  }

  .p-contact-privacy__table dd {
    font-size: 1.4rem;
  }

  /***************
  新着情報一覧ページ 
  ***************/
  .l-news {
    margin-bottom: 6rem;
  }

  #news .l-eyecatch {
    margin-bottom: 5rem;
  }

  .p-news__items {
    width: 100%;
  }

  .p-news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0;
    padding-bottom: 1.5rem;
  }

  .p-news__date {
    padding: 0.6rem 2rem;
    margin-bottom: 1.5rem;
  }

  .p-news__title {
    font-size: 2rem;
    line-height: 1.25;
    margin-left: 0;
  }

  /***************
  新着情報個別ページ 
  ***************/
  #single .l-contents {
    margin-bottom: 6rem;
  }

  #single .l-eyecatch {
    margin-bottom: 5rem;
  }

  .p-single__contents {
    width: 100%;
  }

  .p-single__date {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .p-single__title {
    font-size: 2rem;
    -moz-text-align-last: left;
         text-align-last: left;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .p-single p {
    font-size: 1.5rem;
    line-height: 2;
    text-align: justify;
  }

  .p-single__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3rem;
  }

  .p-single__contents img {
    width: 100%;
  }

  .p-single__img img:nth-of-type(2n) {
    margin-left: 0;
  }

  .p-single img {
    margin-bottom: 2rem;
  }

  .p-single__contents h3 {
    font-size: 1.8rem;
  }

  .p-single__pagenation {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
/* 
---------------------------------------------------
SP CSS　※スマートフォン：0～375px
----------------------------------------------------
*/
@media (max-width: 375px) {
  /***************
  共通 
  ***************/
  /***************
  トップページ
  ***************/
  .p-main-view__copy {
    font-size: 4rem;
  }

  .p-main-view__copy span {
    font-size: 3rem;
  }

  .p-production-system__title {
    font-size: 3rem;
  }

  .p-production-system__title span {
    font-size: 2.4rem;
  }

  .p-top-equipment__contents {
    padding: 0;
  }
}
/*# sourceMappingURL=styles.css.map */
