@charset "UTF-8";

/* 変数 */

/* mediaquery */

/* font */

/* mixin */

html {
  color: #000;
  background: #FFF;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
select,
main,
address {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
  box-sizing: border-box;
}

a,
span {
  box-sizing: border-box;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-style: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-bottom;
}

sub {
  vertical-align: text-top;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
}

legend {
  color: #000;
}

figure {
  margin: 0;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  color: #000;
  font-family: Hiragino Kaku Gothic Pro, Yu Gothic Medium, Yu Gothic, Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
}

a img {
  opacity: 1;
  transition: all 0.3s;
}

p {
  line-height: 190%;
}

p + p {
  margin-top: 1.2rem;
}

p a {
  text-decoration: underline;
}

ol {
  padding-left: 2rem;
}

ruby rt {
  font-size: 40%;
}

em {
  color: #e13838;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px 10px;
  border: 1px solid  #b7b7b7;
}

select {
  padding: 8px 10px;
  border: 1px solid  #b7b7b7;
}

textarea {
  width: 100%;
  height: 200px;
}

.col {
  display: flex;
  flex-flow: row wrap;
}

.col.is-oneline {
  flex-wrap: nowrap;
  justify-content: space-between;
}

.col-contents {
  width: 100%;
}

.is-oneline .col-contents {
  margin-bottom: 0;
}

.is-oneline .col-contents + .col-contents {
  margin-left: 2%;
}

.is-2 .col-contents {
  max-width: 48%;
}

.is-2 .col-contents:nth-child(even) {
  margin-left: calc(4% - 1px);
}

.is-2 .col-contents:nth-child(n + 3) {
  margin-top: 30px;
}

.is-3 .col-contents {
  max-width: 32%;
}

.is-3 .col-contents:not(:nth-child(3n + 1)) {
  margin-left: calc(2% - 1px);
}

.is-3 .col-contents:nth-child(n + 4) {
  margin-top: 30px;
}

.is-4 .col-contents {
  max-width: 23%;
}

.is-4 .col-contents:not(:nth-child(4n + 1)) {
  margin-left: calc(2.6% - 1px);
}

.is-4 .col-contents:nth-child(n + 5) {
  margin-top: 30px;
}

.col-contents-title {
  margin-bottom: 5px;
}

.col-contents-text {
  margin-top: 5px;
}

.flImgContents-img {
  max-width: 37%;
  width: 100%;
}

.flImgContents-img.is-s {
  max-width: 200px;
}

.flImgContents-img.is-ss {
  max-width: 100px;
}

.flImgContents-img.is-l {
  max-width: 47%;
}

.flImgContents-img.is-fr {
  float: right;
  margin: 0 0 20px 40px;
}

.flImgContents-img.is-fl {
  float: left;
  margin: 0 40px 20px 0;
}

/*　テキスト、フォント　*/

.text-s {
  font-size: 85%;
}

.text-l {
  font-size: 120%;
}

.cl-red {
  color: #ff0000;
}

/* リスト */

.list-normal > li {
  margin: 0 0 10px;
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}

.list-normal > li::before {
  content: '●';
  margin-right: 5px;
  font-size: 10px;
  font-family: sans-serif;
  color: #064f9d;
}

.list-number {
  padding: 0 0 0 25px;
}

.list-number > li {
  list-style: decimal;
  margin: 0 0 10px;
}

.list-numbold {
  counter-reset: li;
  list-style: none;
  padding-left: 2.5rem;
}

.list-numbold > li::before {
  margin: 0 5px 0 -2rem;
  width: 2.5rem;
  content: counter(li) ". ";
  counter-increment: li;
  font-weight: bold;
}

/* 定義リスト */

.dl-normal dt {
  font-weight: bold;
  font-size: 1.8rem;
}

.dl-normal dd {
  margin-bottom: 30px;
}

.al-r {
  text-align: right;
}

.al-c {
  text-align: center;
}

.al-l {
  text-align: left;
}

.full {
  width: 100%;
}

.size-30 {
  width: 30%;
}

.size-60 {
  width: 60%;
}

.indent {
  width: 97%;
  margin: 0 0 0 auto;
}

/*　セクション　*/

.section-small {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-01 {
  margin-top: 30px;
  margin-bottom: 40px;
}

.section-01:first-child {
  margin-top: 0;
}

.section-02 {
  margin-top: 40px;
  margin-bottom: 70px;
}

.section-02:first-child {
  margin-top: 0;
}

.section-03 {
  margin-top: 40px;
  margin-bottom: 100px;
}

.section-03:first-child {
  margin-top: 0;
}

.section-center {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/* テーブル */

.nowrap {
  white-space: nowrap;
}

.caption {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}

.table-01 {
  border-collapse: collapse;
}

.table-01 th,
.table-01 td {
  padding: 13px;
  border: 1px solid #ccc;
}

.table-01 th {
  background: #fcfbf5;
  color: #064f9d;
}

.table-01 a {
  color: #019ab3;
}

.table-01 .cl-yellow {
  background: #f8ffb0;
}

.wfix {
  table-layout: fixed;
}

.tableScrollWrap {
  display: flex;
}

.tableScrollWrap.is-pctoo {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.tableScrollWrap::after {
  content: '';
  display: inline-block;
  min-width: 1px;
  height: 1px;
  background: transparent;
}

/* タイトル */

.title-bold {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}

.title-l {
  margin-bottom: 40px;
  border-bottom: 5px solid #207ace;
  font-size: 2.9rem;
  font-weight: bold;
  color: #207ace;
}

.pageTitle {
  position: relative;
  height: 350px;
  margin-bottom: 100px;
  padding-top: 170px;
  background: url(../img/top/mv.jpg) center center/cover no-repeat;
  color: #303030;
}

.pageTitle.is-screw {
  background-image: url(../img/screw/mv.jpg);
}

.pageTitle-main {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 10px #fff;
}

.productMv img {
  width: 100%;
}

.lead {
  padding: 60px 0;
  font-size: 1.8rem;
  font-weight: bold;
}

.lead-img {
  float: right;
  width: 350px;
}

.lead-img-cap {
  font-size: 1.4rem;
  font-weight: normal;
}

.productSpec-content + .productSpec-content {
  margin-top: 50px;
}

.productSpec-content-table {
  font-size: 1.3rem;
  text-align: center;
}

.footer {
  margin-top: 100px;
  padding: 70px 0;
  background: #064f9d;
  color: #fff;
  text-align: center;
}

.footer-logo {
  width: 160px;
  margin: 0 auto 60px;
}

.footer-address {
  margin-bottom: 40px;
  font-weight: bold;
}

.footer-address p {
  line-height: 220%;
}

.dwMenu {
  position: relative;
  z-index: 5;
}

.dwMenu-input {
  display: none;
}

.dwMenu-hamburger {
  position: fixed;
  top: 0;
  right: 10px;
  display: block;
  height: 50px;
  width: 50px;
  z-index: 3;
  transition: all .3s;
}

.is-headerNarrow .dwMenu-hamburger {
  top: -6px;
  transform: scale(0.7);
}

.dwMenu-hamburger:hover {
  cursor: pointer;
}

.dwMenu-hamburger-text-main {
  text-transform: uppercase;
  font-size: .8em;
  position: absolute;
  transform: translateY(50px);
  text-align: center;
  overflow: hidden;
  transition: width .25s .35s, color .45s .35s;
}

.dwMenu-hamburger-text-main.is-close {
  color: rgba(0, 0, 0, 0);
  right: 0;
  width: 0;
}

.dwMenu-active .dwMenu-hamburger-text-main.is-close {
  color: #000;
  width: 100%;
}

.dwMenu-hamburger-text-main.is-open {
  color: #000;
  width: 100%;
}

.dwMenu-active .dwMenu-hamburger-text-main.is-open {
  color: rgba(0, 0, 0, 0);
  width: 0;
}

.dwMenu-hamburger > i {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  background-color: #000;
  pointer-events: auto;
  transition-duration: .35s;
  transition-delay: .35s;
}

.dwMenu-hamburger > i:before,
.dwMenu-hamburger > i:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 50%;
  background-color: #000;
  transition: transform 0.35s;
  transform-origin: 50% 50%;
}

.dwMenu-hamburger > i:before {
  transform: translate(-50%, -14px);
}

.dwMenu-hamburger > i:after {
  transform: translate(-50%, 14px);
}

.dwMenu-active .dwMenu-hamburger > i {
  background-color: transparent;
  transform: rotate(90deg);
}

.dwMenu-active .dwMenu-hamburger > i:before {
  transform: translate(-50%, -50%) rotate(315deg);
}

.dwMenu-active .dwMenu-hamburger > i:after {
  transform: translate(-50%, -50%) rotate(-315deg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  transition: all .3s;
  will-change: background-color;
  z-index: 4;
}

.is-headerNarrow .header {
  background: rgba(255, 255, 255, 0.8);
  height: 70px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.header-logo {
  width: 197px;
  min-width: 145px;
  margin-right: 20px;
  transform-origin: left top;
  transition: all .3s;
}

.is-headerNarrow .header-logo {
  transform: scale(0.8);
}

.header-logo a {
  display: block;
}

.header-naviArea {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.headerContact {
  background: #064f9d;
  text-align: center;
  width: 200px;
  height: 100%;
  margin-left: 20px;
}

.headerContact a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.headerContact img {
  width: 35px;
  margin-right: 10px;
}

.headerContact-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}

.gNavi-ul {
  display: flex;
}

.gNavi-ul-li {
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.gNavi-ul-li a {
  display: block;
}

.gNavi-ul-li .text-s {
  display: block;
  font-size: 1.2rem;
}

.is-headerNarrow .gNavi-ul-li + .gNavi-ul-li {
  margin-left: 40px;
}

.gNavi-ul-li::after {
  content: '';
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  left: calc(50% - 8px);
  width: 17px;
  height: 9px;
  background: url(../img/common/icon_arrow.png) center center/contain no-repeat;
}

.companyTable {
  width: 90%;
  margin: 50px auto;
}

.companyTable th,
.companyTable td {
  padding: 15px 40px;
}

.companyTable th {
  border-left: none;
}

.companyTable td {
  border-right: none;
}

.contactBtn {
  margin-top: 80px;
  text-align: center;
}

.contactBtn input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 200px;
  padding: 10px;
  border: none;
  border: 1px solid #ccc;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
}

.topMv {
  position: relative;
  height: 817px;
  background: url(../img/top/mv.jpg) top left/cover no-repeat;
}

.topMv-catchphrase {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  text-shadow: 0 0 6px #fff, 0 0 6px #fff;
}

.topMv-catchphrase-main {
  font-size: 4.7rem;
  font-weight: bold;
}

.topMv-catchphrase-sub {
  display: block;
  font-size: 4rem;
  font-weight: bold;
}

.topLinkPanel {
  display: flex;
  justify-content: space-between;
  padding: 100px 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
}

.topLinkPanel-one {
  position: relative;
  width: 45%;
}

.topLinkPanel-one-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
}

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

  a:hover img {
    opacity: 0.8;
  }

  p a:hover {
    color: #019ab3;
  }

  .contactBtn input:hover {
    background: #f7f7f7;
  }

  a:hover .topLinkPanel-one-title {
    background: transparent;
    opacity: 1;
  }
}

@media (min-width: 980px) {
  .dwMenu {
    display: none;
  }

  .headerContact a:hover {
    background: #207ace;
  }

  .gNavi {
    transform-origin: right top;
    transition: all .3s;
  }

  .is-headerNarrow .gNavi {
    transform: scale(0.7);
  }

  .is-headerNarrow .gNavi-ul-li {
    font-size: 1.7rem;
  }

  .gNavi-ul-li a {
    height: 100%;
  }

  .gNavi-ul-li a:hover {
    color: #019ab3;
  }

  .is-headerNarrow .gNavi-ul-li a {
    white-space: nowrap;
  }
}

@media (min-width: 1100px) {
  .gNavi-ul-li + .gNavi-ul-li {
    margin-left: 20px;
  }
}

@media (max-width: 979px) {
  .header {
    height: 70px;
  }

  .is-headerNarrow .header {
    height: 50px;
  }

  .header-logo {
    max-width: 90px;
    min-width: 0;
    margin-left: 0;
  }

  .is-headerNarrow .header-logo {
    max-width: 73px;
  }

  .headerContact {
    width: 70px;
    margin-right: 70px;
  }

  .headerContact a {
    flex-direction: column;
    width: 70px;
  }

  .headerContact-text {
    margin-top: 4px;
    font-size: 1rem;
    transform-origin: bottom;
    transform: scale(0.9);
  }

  .headerContact-text .is-headerNarrow {
    margin-top: -7px;
  }

  .gNavi {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    height: 3px;
    background: rgba(10, 30, 87, 0.774);
    transform: scaleX(0);
    overflow: hidden;
    z-index: 5;
  }

  .is-headerNarrow .gNavi {
    top: 50px;
  }

  .gNavi-ul {
    display: block;
    margin-top: 80px;
    padding: 0 15%;
  }

  .gNavi-ul-li {
    line-height: 2;
    text-align: left;
  }

  .gNavi-ul-li a {
    color: #fff;
  }

  .gNavi-ul-li + .gNavi-ul-li {
    margin-top: 50px;
  }

  .is-headerNarrow .gNavi-ul-li + .gNavi-ul-li {
    margin-left: 0;
  }

  .gNavi-ul-li::after {
    top: 15px;
    right: 20px;
    left: auto;
    transform: rotate(-90deg);
  }
}

@media (max-width: 767px) {
  html {
    font-size: 65%;
  }

  .pc {
    display: none !important;
  }

  a:active img {
    opacity: 0.8;
  }

  p a:active {
    color: #019ab3;
  }

  .col {
    display: block;
  }

  .col.is-sp-flex {
    display: flex;
  }

  .col-contents {
    max-width: 100%;
  }

  .col:not(.is-sp-flex) .col-contents + .col:not(.is-sp-flex) .col-contents {
    margin-top: 10px;
  }

  .is-oneline:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }

  .is-oneline:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }

  .is-2 .col-contents:nth-child(n + 3) {
    margin-top: 30px;
  }

  .is-2:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }

  .is-2:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }

  .is-3 .col-contents:nth-child(n + 4) {
    margin-top: 10px;
  }

  .is-3:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }

  .is-3:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }

  .is-4 .col-contents:nth-child(n + 5) {
    margin-top: 10px;
  }

  .is-4:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }

  .is-4:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }

  .flImgContents-img {
    max-width: 100%;
  }

  .flImgContents-img.is-s {
    max-width: 100%;
  }

  .flImgContents-img.is-ss {
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
  }

  .flImgContents-img.is-l {
    max-width: 100%;
  }

  .flImgContents-img.is-fr {
    margin: 0 auto 20px;
  }

  .flImgContents-img.is-fr:not(.is-sp-float) {
    float: none;
  }

  .flImgContents-img.is-fr.is-sp-float {
    width: 35%;
    margin: 0 0 10px 10px;
  }

  .flImgContents-img.is-fl {
    margin: 0 auto 20px;
  }

  .flImgContents-img.is-fl:not(.is-sp-float) {
    float: none;
  }

  .flImgContents-img.is-fl.is-sp-float {
    width: 35%;
    margin: 0 10px 10px 0;
  }

  .size-30 {
    width: 70%;
  }

  .size-60 {
    width: 100%;
  }

  .section-center-sp {
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;
  }

  .table-01 th,
  .table-01 td {
    padding: 5px;
    font-size: 1.2rem;
  }

  .table-01.sidetitle {
    width: 100%;
  }

  .table-01.sidetitle tr {
    margin-bottom: 20px;
  }

  .table-01.sidetitle th,
  .table-01.sidetitle td {
    border: none;
  }

  .table-01.sidetitle th {
    padding: 10px;
    background: #f7f7f7;
  }

  .table-01.sidetitle td {
    padding: 5px 0;
  }

  .sidetitle tr {
    display: block;
  }

  .sidetitle th,
  .sidetitle td {
    display: block;
    width: 100%;
    padding: 0;
  }

  .sidetitle th {
    margin-bottom: 5px;
    font-weight: bold;
  }

  .tableScrollWrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .title-l {
    font-size: 2rem;
  }

  .pageTitle {
    height: 200px;
    padding-top: 110px;
  }

  .pageTitle-main {
    font-size: 2.5rem;
  }

  .lead-img {
    float: none;
    width: 60%;
    margin: 0 auto 10px;
  }

  .footer-address {
    font-size: 1.2rem;
  }

  .headerContact img {
    width: 17px;
    margin-right: 0;
  }

  .companyTable {
    width: 100%;
  }

  .companyTable th,
  .companyTable td {
    padding: 10px;
  }

  .contactBtn {
    margin-top: 60px;
  }

  .topMv {
    height: 450px;
  }

  .topMv-catchphrase {
    top: 40%;
  }

  .topMv-catchphrase-main {
    font-size: 4vw;
  }

  .topMv-catchphrase-sub {
    font-size: 2rem;
  }

  .topLinkPanel {
    display: block;
  }

  .topLinkPanel-one {
    width: 90%;
    margin: 0 auto 10px;
  }

  .topLinkPanel-one-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .section-center {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .pageTitle-main {
    max-width: 90%;
    width: 90%;
  }

  .topLinkPanel {
    max-width: 90%;
    width: 90%;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .tableScrollWrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .headerContact img {
    width: 25px;
    margin-right: 0;
  }

  .topMv-catchphrase-main {
    width: 90%;
    margin: 0 auto;
    font-size: 4vw;
  }

  .topLinkPanel-one {
    width: 48%;
  }

  .topLinkPanel-one-title {
    font-size: 2.3rem;
  }
}

@media (min-width: 980px) and (max-width: 1099px) {
  .headerContact {
    width: 100px;
    margin-left: 20px;
  }

  .headerContact a {
    flex-direction: column;
  }

  .headerContact img {
    margin-right: 0;
    margin-bottom: 6px;
  }

  .headerContact-text {
    font-size: 1.1rem;
  }

  .gNavi-ul-li + .gNavi-ul-li {
    margin-left: 20px;
  }

  .is-headerNarrow .gNavi-ul-li + .gNavi-ul-li {
    margin-left: 20px;
  }

  .topMv-catchphrase-main {
    width: 90%;
    margin: 0 auto;
    font-size: 4vw;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .topLinkPanel-one-title-inner {
    transform: translateY(-30px);
  }
}