@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local('Noto Sans JP'), local('Noto Sans JP'), url('../font/noto_sans_jp_regular.woff2') format('woff2'), url('../font/noto_sans_jp_regular.woff') format('woff');
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  src: local('Noto Sans JP'), local('Noto Sans JP'), url('../font/noto_sans_jp_bold.woff2') format('woff2'), url('../font/noto_sans_jp_bold.woff') format('woff');
}

/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/

/* reset margin
-----------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
}

/* reset font style
-----------------------------------------------------------------*/

html {
  box-sizing: border-box;
  font-family: "Noto Sans JP";
}

html * {
  box-sizing: inherit;
}

body {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

ul, ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em, strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/

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

table, th, td {
  table-layout: fixed;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/

input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type="reset"],
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

button,
input[type="reset"]::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

button,
input[type="reset"]:focus,
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

/* reset img
-----------------------------------------------------------------*/

img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

a {
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.7;
}


/******************************
 * トップ - 共通
 ******************************/

.top-section {
  padding: 75px 30px;
}

.top-section._gray {
  background-color: #f9f9f9;
}

.top-section-heading {
  text-align: center;
  margin-bottom: 55px;
}

@media (max-width: 767px) {
  .top-section-heading {
    margin-bottom: 25px;
  }
}

.top-section-heading__title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .top-section-heading__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.top-section-heading__title-en {
  width: 250px;
  margin: 0 auto;
  background-color: #ff8c00;
  color: white;
  border-radius: 100px;
  font-size: 14px;
  padding: 5px 0;
  font-weight: bold;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .top-section-heading__title-en {
    width: 150px;
    font-size: 10px;
    padding: 2px 0;
  }
}




/******************************
 * 共通 - フェードインアニメーション
 ******************************/

.fadein {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s, transform 1s cubic-bezier(0, 0.55, 0.38, 1.01);;
}

.fadein._show {
  opacity: 1;
  transform: none;
}




/******************************
 * ヘッダー
 ******************************/

.header-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backface-visibility: hidden;
  transition: none;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header-bar {
    display: none;
  }
}

.header-bar._fixed {
  position: fixed;
  top: -80px;
  background-color: white;
}

.header-bar._show {
  top: 0;
}

.header-bar._animation {
  transition: top 0.3s;
}

.header-bar__logo {
  padding-left: 30px;
  padding-top: 6px;
}

@media (max-width: 1130px) {
  .header-bar__logo {
    padding-top: 0px;
  }
}

.header-bar__logo a:nth-child(1) {
  display: block;
}

.header-bar__logo a:nth-child(2) {
  display: none;
}

.header-bar._fixed .header-bar__logo a:nth-child(1) {
  display: none;
}

.header-bar._fixed .header-bar__logo a:nth-child(2) {
  display: block;
}

.header-bar__logo img {
  width: 240px;
}

@media (max-width: 1130px) {
  .header-bar__logo img {
    width: 180px;
  }
}

.header-bar__nav {
  height: 100%;
}


.header-bar-nav {
  display: flex;
  height: 100%;
}

.header-bar-nav__item {
  height: 100%;
}

.header-bar-nav__item a {
  height: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  padding: 0 15px;
}

@media (max-width: 1130px) {
  .header-bar-nav__item a {
    font-size: 12px;
    padding: 0 10px;
  }
}

.header-bar._fixed .header-bar-nav__item a {
  color: black;
}

.header-bar-nav__item._contact a {
  background-color: #ff8c00;
  padding: 0 65px;
  margin-left: 40px;
}

@media (max-width: 1130px) {
  .header-bar-nav__item._contact a {
    padding: 0 30px;
    margin-left: 10px;
  }
}

.header-bar._fixed .header-bar-nav__item._contact a {
  color: white;
}





/******************************
 * ヘッダー - ハンバーガーボタン
 ******************************/

.hamburger-button {
  position: fixed;
  height: 50px;
  width: 50px;
  background-color: #ff8c00;
  top: 10px;
  right: 10px;
  border-radius: 25px;
  z-index: 2000;
}

.hamburger-button span {
  display: block;
  height: 2px;
  width: 25px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, transform 0.3s;
}

.hamburger-button span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-8px);
}

.hamburger-button span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(8px);
}

.hamburger-button._opened span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger-button._opened span:nth-child(2) {
  width: 0;
}

.hamburger-button._opened span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}





/******************************
 * ヘッダー - ハンバーガーメニュー
 ******************************/

.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  padding: 70px 20px 20px;
  transition: visibility 0.3s, opacity 0.3s;
}

.hamburger-menu._opened {
  visibility: visible;
  opacity: 1;
  overflow: scroll;
  background: rgba(240, 137, 7, 0.729);
}

.hamburger-menu-list__item a {
  display: block;
  background-color: white;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 15px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  position: relative;
}

.hamburger-menu-list__item a::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: solid 2px black;
  border-right: solid 2px black;
  width: 5px;
  height: 5px;
}

.hamburger-menu-list__tel a {
  display: block;
  margin-bottom: 10px;
  background-color: #ff8c00;
  border-radius: 5px;
  padding: 10px;
  color: white;
  text-align: center;
  border: solid 2px white;
}

.hamburger-menu-list__tel-title {
  font-weight: bold;
  font-size: 12px;
}

.hamburger-menu-list__tel-num {
  font-weight: bold;
  font-size: 20px;
}

.hamburger-menu-list__tel-open {
  font-weight: bold;
  font-size: 12px;
}

.hamburger-menu-list__contact a {
  display: block;
  border-radius: 3px;
  padding: 15px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  border: solid 2px white;
  color: white;
  background-color: rgba(240, 137, 7, 0.729);
  margin-bottom: 10px;
  position: relative;
}

.hamburger-menu-list__contact a::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: solid 2px white;
  border-right: solid 2px white;
  width: 5px;
  height: 5px;
}

.hamburger-menu-list__close {
  display: block;
  border-radius: 3px;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  border: solid 2px white;
  color: white;
  background-color: rgba(240, 137, 7, 0.729);
  margin-bottom: 10px;
}




/******************************
 * ヘッダー - ページトップボタン
 ******************************/
.pagetop {
  position: fixed;
  width: 57px;
  height: 57px;
  right: 100px;
  bottom: 90px;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}

@media (max-width: 767px) {
  .pagetop {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 10px;
  }
}

.pagetop._show {
  visibility: visible;
  opacity: 1;
}

.pagetop p {
  height: 100%;
}

.pagetop p a {
  display: block;
  height: 100%;
  background: url('../img/pagetop.svg') center / 100% no-repeat;
}




/******************************
 * トップ - MV
 ******************************/

.top-mv {
  position: relative;
  height: 100vh;
  min-height: 480px;
  background: url('../img/top-mv.jpg') center / cover no-repeat;
  background-color: #2b2b35;
}

@media (max-width: 767px) {
  .top-mv {
    min-height: 200px;
    background: url('../img/top-mv-sp.jpg') center / cover no-repeat;
  }
}

.top-mv__center {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.top-mv__catchcopy {
  font-size: 56px;
  font-weight: bold;
  text-align: center;
  color: white;
  margin-bottom: 35px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .top-mv__catchcopy {
    font-size: 25px;
    margin-bottom: 9px;
    line-height: 1.5;
  }
}

.top-mv__catchcopy-en {
  text-align: center;
}

@media (max-width: 767px) {
  .top-mv__catchcopy-en img {
    width: 170px;
  }
}

.top-mv__logo {
  text-align: center;
  position: absolute;
  bottom: 10vh;
  left: 0;
  width: 100%;
}

.top-mv__logo img {
  height: 70px;
}

@media (max-width: 767px) {
  .top-mv__logo img{
    width: 250px;
    height: auto;
  }
}




/******************************
 * トップ - ファインテックとは
 ******************************/

.top-about__body {
  max-width: 1017px;
  margin: 0 auto;
}

.top-about__message {
  font-size: 18px;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .top-about__message {
    font-size: 14px;
  }
}




/******************************
 * トップ - サービス
 ******************************/

.top-service__body {
  max-width: 1017px;
  margin: 0 auto;
}

.top-service__message {
  background: url('../img/service-dot.png') top 15px left 15px / 8px no-repeat
            , url('../img/service-dot.png') top 15px right 15px / 8px no-repeat
            , url('../img/service-dot.png') bottom 15px left 15px / 8px no-repeat
            , url('../img/service-dot.png') bottom 15px right 15px / 8px no-repeat;
  background-color: #ff8c00;
  padding: 46px;
  text-align: center;
  color: white;
  margin-bottom: 105px;
}

@media (max-width: 767px) {
  .top-service__message {
    padding: 30px 0;
    margin-bottom: 30px;
  }
}

.top-service__message-item {
  font-weight: bold;
  font-size: 30px;
}

@media (max-width: 767px) {
  .top-service__message-item {
    font-size: 14px;
  }
}

.top-service__message-item:not(:last-child) {
  margin-bottom: 5px;
}

.top-service__message-item span {
  border-bottom: solid 1px white;
}


.top-service-item {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .top-service-item {
    margin-bottom: 35px;
  }
}

.top-service-item__title {
  font-weight: bold;
  font-size: 30px;
  color: #ff8c00;
  margin-bottom: 50px;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .top-service-item__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

.top-service-item__description {
  margin-left: 90px;
  border-left: solid 1px #333333;
  padding-left: 65px;
  font-size: 18px;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .top-service-item__description {
    margin-left: 15px;
    padding-left: 13px;
    font-size: 14px;
  }
}

.top-service-item__description span {
  color: #e4007f;
  font-weight: bold;
}


/******************************
 * トップ - 主要設備一覧
 ******************************/

@media (max-width: 767px) {
  .top-machinery {
    padding-left: 0;
    padding-right: 0;
  }
}

.top-machinery__body {
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .top-machinery__scroll {
    overflow: scroll;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .top-machinery__table-wrapper {
    padding: 0 30px;
    width: 648px;
  }
}


.top-machinery-table {
  font-size: 14px;
  width: 100%;
  margin-bottom: 96px;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .top-machinery-table {
    font-size: 12px;
    margin-bottom: 25px;
  }
}

.top-machinery-table th {
  font-weight: bold;
  border-bottom: solid 1px black;
  padding-top: 3px;
  padding-bottom: 3px;
}

.top-machinery-table th:nth-child(1),
.top-machinery-table td:nth-child(1) {
  width: 225px;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .top-machinery-table th:nth-child(1),
  .top-machinery-table td:nth-child(1) {
    width: 180px;
    padding-left: 10px;
  }
}

.top-machinery-table th:nth-child(2) {
  width: 161px;
}

@media (max-width: 767px) {
  .top-machinery-table th:nth-child(2) {
    width: 150px;
  }
}

.top-machinery-table th:nth-child(3) {
  width: 256px;
}

@media (max-width: 767px) {
  .top-machinery-table th:nth-child(3) {
    width: 220px;
  }
}

.top-machinery-table th:nth-child(4),
.top-machinery-table td:nth-child(4) {
  padding-right: 28px;
}

@media (max-width: 767px) {
  .top-machinery-table th:nth-child(4),
  .top-machinery-table td:nth-child(4) {
    padding-right: 10px;
  }
}

.top-machinery-table td {
  border-bottom: solid 1px #bfbfbf;
  padding-top: 3px;
  padding-bottom: 3px;
}

.top-machinery-table td:nth-child(4) {
  text-align: center;
}

.top-machinery-table tr:last-child td {
  border-color: black;
}


.top-machinery-pictures {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
}

.top-machinery-pictures__item {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  padding: 0 10px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .top-machinery-pictures__item {
    padding: 0 5px;
    margin-bottom: 10px;
  }
}

.top-machinery-pictures__item img {
  border: solid 10px #efefef;
}

@media (max-width: 767px) {
  .top-machinery-pictures__item img {
    border-width: 5px;
  }
}





/******************************
 * トップ - 会社概要
 ******************************/

.top-company__body {
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .top-company__body {
    font-size: 14px;
  }
}

.top-company-table {
  width: 100%;
  margin-bottom: 60px;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .top-company-table {
    margin-bottom: 30px;
  }
}

.top-company-table tr {
  border-bottom: solid 1px black;
}

.top-company-table tr:first-child {
  border-top: solid 1px black;
}

.top-company-table th,
.top-company-table td {
  padding: 16px 0;
}

.top-company-table th {
  width: 133px;
}

@media (max-width: 767px) {
  .top-company-table th {
    width: 86px;
  }
}

.top-company-table td {
  padding-left: 22px;
  position: relative;
}

@media (max-width: 767px) {
  .top-company-table td {
    padding-left: 15px;
  }
}

.top-company-table td::after {
  position: absolute;
  content: '';
  height: calc(100% - 36px);
  top: 50%;
  transform: translateY(-50%) translateY(1px);
  left: 0;
  width: 1px;
  background-color: #807f60;
}

.top-company-table td a {
  display: inline-block;
  background-color: #f18b00;
  color: white;
  font-weight: bold;
  padding: 0 17px;
  font-size: 14px;
  border-radius: 100px;
  margin-left: 13px;
}

@media (max-width: 767px) {
  .top-company-table td a {
    display: block;
    margin-left: 0;
    margin-top: 3px;
    text-align: center;
  }
}


.top-company-pictures {
  display: flex;
  flex-wrap: wrap;
  padding: 0 30px;
}

@media (max-width: 767px) {
  .top-company-pictures {
    padding: 0;
  }
}

.top-company-pictures__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .top-company-pictures__item {
    padding: 0 10px;
  }
}

.top-company-pictures__item img {
  border: solid 10px #efefef;
}

@media (max-width: 767px) {
  .top-company-pictures__item img {
    border-width: 5px;
  }
}



/******************************
 * トップ - お問い合わせ
 ******************************/

.top-contact {
  padding-bottom: 0;
}

.top-contact__body {
  position: relative;
  padding-bottom: 97px;
}

.top-contact__inner {
  max-width: 900px;
  margin: 0 auto;
}

.top-contact__message {
  text-align: center;
  font-size: 18px;
  margin-bottom: 64px;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .top-contact__message {
    font-size: 13px;
    margin-bottom: 30px;
  }
}

.top-contact__map {
  height: 300px;
  position: relative;
  margin: 0 -30px;
}

.top-contact__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}


.top-contact-ways {
  background-color: #f8f8f8;
  display: flex;
  padding: 40px 20px;
}

@media (max-width: 767px) {
  .top-contact-ways {
    display: block;
  }
}


.top-contact-ways-item {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 767px) {
  .top-contact-ways-item {
    max-width: none;
  }
}

.top-contact-ways-item._tel {
  padding-top: 60px;
  background: url('../img/contact-tel.svg') top center / 50px no-repeat;
}

@media (max-width: 767px) {
  .top-contact-ways-item._tel {
    margin-bottom: 30px;
  }
}

.top-contact-ways-item._mail {
  padding-top: 70px;
  background: url('../img/contact-mail.svg') top center / 50px no-repeat;
}

.top-contact-ways-item__tel {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}

.top-contact-ways-item__open {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}

.top-contact-ways-item__mail a {
  display: block;
  max-width: 300px;
  background-color: #ff8c00;
  color: white;
  text-align: center;
  padding: 8px;
  margin: 0 auto;
  font-weight: bold;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .top-contact-ways-item__mail a {
    font-size: 14px;
  }
}



/******************************
 * トップ - フッター
 ******************************/

.footer__body {
  background-color: #ff8c00;
  color: white;
  padding: 85px 0;
}

@media (max-width: 767px) {
  .footer__body {
    padding: 77px 0;
  }
}

.footer__logo {
  margin-bottom: 64px;
  text-align: center;
}

@media (max-width: 767px) {
  .footer__logo {
    margin-bottom: 44px;
  }
}

.footer__logo img {
  width: 242px;
}

@media (max-width: 767px) {
  .footer__logo img {
    width: 200px;
  }
}

.footer__name {
  font-size: 18px;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.07em;
  font-weight: bold;
}

@media (max-width: 767px) {
  .footer__name {
    font-size: 14px;
  }
}

.footer__info {
  font-size: 18px;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.07em;
  font-weight: bold;
}

@media (max-width: 767px) {
  .footer__info {
    font-size: 14px;
  }
}

.footer__copyright {
  background-color: black;
  padding: 25px;
  color: white;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: bold;
}

@media (max-width: 767px) {
  .footer__copyright {
    padding-bottom: 60px;
    font-size: 12px;
  }
}