/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  color: #333333;
}

a {
  text-decoration: none;
}
a:link {
  color: #333333;
}
a:visited {
  color: #333333;
}
a:hover {
  color: #333333;
}
a:active {
  color: #333333;
}

li a {
  display: block;
}

.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100vw;
  height: 60px;
  line-height: 60px;
  background-color: #b8c9e0;
  z-index: 2;
  border-top: 10px solid #333333;
  padding: 0 10px;
}

.header-title {
  font-size: 3rem;
  padding-left: 20px;
  white-space: nowrap;
  vertical-align: middle;
}
.header-title .title-small {
  font-size: 1.5rem;
}
.header-title a:link {
  color: #333333;
}
.header-title a:visited {
  color: #333333;
}
.header-title a:hover {
  color: #333333;
}
.header-title a:active {
  color: #333333;
}

.header-nav {
  display: flex;
  height: 60px;
  margin-right: 20px;
  font-size: 2rem;
  list-style: none;
}
@media screen and (max-width: 850px) {
  .header-nav {
    display: none;
  }
}
.header-nav__list {
  position: relative;
  margin-left: 10px;
  width: 130px;
  text-align: center;
  background-color: #b8c9e0;
}
.header-nav__list:link {
  color: #333333;
}
.header-nav__list:visited {
  color: #333333;
}
.header-nav__list:hover {
  color: #3741a0;
}
.header-nav__list:active {
  color: #333333;
}

.header-sub-nav {
  position: absolute;
  display: none;
  list-style: none;
  background-color: #d8e2f0;
  width: 100%;
  font-size: 1.6rem;
}
.header-sub-nav__list {
  border-bottom: 2px solid #b8c9e0;
  height: 60px;
  line-height: 60px;
}
.header-sub-nav__list:link {
  color: #333333;
}
.header-sub-nav__list:visited {
  color: #333333;
}
.header-sub-nav__list:hover {
  color: #3741a0;
}
.header-sub-nav__list:active {
  color: #333333;
}
.header-sub-nav a:last-child li {
  border-bottom: none;
}

.hamburger-btn {
  position: fixed;
  top: 20px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222222;
  color: #e0e0e0;
  display: none;
}
@media screen and (max-width: 850px) {
  .hamburger-btn {
    display: block;
  }
}
.hamburger-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 11px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.hamburger-btn span:nth-of-type(1) {
  top: 10px;
}
.hamburger-btn span:nth-of-type(2) {
  top: 18px;
}
.hamburger-btn span:nth-of-type(3) {
  top: 26px;
}
.hamburger-btn.active span:nth-of-type(1) {
  top: 13px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.hamburger-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-of-type(3) {
  top: 25px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.hamburger-menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 60px;
  right: 0;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #b8c9e0;
  transform: translateY(-100vh);
  transition: all 0.3s linear;
  padding: 50px 0 30px;
  display: none;
  animation: fadeIn 0.4s ease 0s 1 normal;
  -webkit-animation: fadeIn 0.4s ease 0s 1 normal;
}
.hamburger-menu.is-active {
  transform: translateY(0);
  display: block;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hamburger-menu__item {
  width: 100%;
  height: auto;
  font-size: 2rem;
  padding: 0.1em 1em;
  text-align: center;
  color: #333333;
  box-sizing: border-box;
  border-bottom: 1px solid black;
}
.hamburger-menu__item:link {
  color: #333333;
}
.hamburger-menu__item:visited {
  color: #333333;
}
.hamburger-menu__item:hover {
  color: #3741a0;
}

.footer {
  width: 100%;
  padding: 10px 0;
  background-color: #222222;
  color: #e0e0e0;
}

.footer-top {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 743px) {
  .footer-top {
    display: block;
    text-align: center;
  }
}

.footer-address {
  margin: 5px auto 0 50px;
}
@media screen and (max-width: 743px) {
  .footer-address {
    margin: 5px auto 20px;
  }
}
.footer-address__name {
  font-size: 1.8rem;
}
@media screen and (max-width: 743px) {
  .footer-address__name {
    font-size: 1.4rem;
  }
}
.footer-address__text {
  margin-top: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 743px) {
  .footer-address__text {
    font-size: 1.2rem;
  }
}

.footer-nav {
  display: flex;
  margin-right: 70px;
}
@media screen and (max-width: 743px) {
  .footer-nav {
    justify-content: space-between;
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.footer-nav__list {
  text-align: center;
  list-style: none;
  font-size: 1.6rem;
  margin: 5px 20px 0 0;
}
@media screen and (max-width: 743px) {
  .footer-nav__list {
    font-size: 1.2rem;
    margin: 5px auto 0 auto;
  }
}
.footer-nav__item {
  margin-bottom: 5px;
}
.footer-nav__item a {
  color: #e0e0e0;
}

.footer-bottom {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 10px;
}

.video-wrap {
  text-align: center;
  background-color: #222222;
  padding-top: 60px;
}
.video-wrap__video {
  width: 1100px;
  max-height: 80vh;
}
@media screen and (max-width: 1200px) {
  .video-wrap__video {
    width: 730px;
  }
}
@media screen and (max-width: 743px) {
  .video-wrap__video {
    width: 100%;
  }
}
.video-wrap--business {
  padding-top: 0px;
}

.chathcopy {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 80px;
}

.belt {
  position: relative;
  width: 100%;
  height: 120px;
  box-sizing: border-box;
  border: 2px solid black;
  margin-bottom: 50px;
}
@media screen and (max-width: 743px) {
  .belt {
    height: 80px;
  }
}
.belt--business {
  height: 140px;
}
@media screen and (max-width: 743px) {
  .belt--business {
    height: 80px;
  }
}
.belt__p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 3rem;
  text-align: center;
  color: #e0e0e0;
  text-shadow: 1px 1px 1px #000000, -1px 1px 1px #000000, 1px -1px 1px #000000, -1px -1px 1px #000000, 1px 0px 1px #000000, 0px 1px 1px #000000, -1px 0px 1px #000000, 0px -1px 1px #000000;
}
@media screen and (max-width: 743px) {
  .belt__p {
    font-size: 1.8rem;
  }
}
.belt__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.sticky {
  position: relative;
  height: 150px;
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  width: 70%;
  max-width: 1000px;
  border: 4px solid black;
  box-shadow: 2px 2px 4px;
}
@media screen and (max-width: 743px) {
  .sticky {
    width: 95%;
  }
}
.sticky:hover {
  opacity: 0.6;
  transform: translate(0px, 2px);
  box-shadow: 0 0;
}
.sticky__textarea {
  width: 40%;
  height: 100%;
}
.sticky__title {
  margin-top: 20px;
  text-align: center;
  font-size: 2.4rem;
}
@media screen and (max-width: 743px) {
  .sticky__title {
    margin-top: 10px;
    font-size: 2rem;
  }
}
.sticky__text {
  width: 95%;
  text-align: left;
  margin: 30px auto 0px;
  font-size: 1.8rem;
}
@media screen and (max-width: 743px) {
  .sticky__text {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}
.sticky__triangle {
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
}
.sticky__triangle--left {
  left: 40%;
  border-width: 75px 0 75px 50px;
  border-color: transparent transparent transparent white;
}
.sticky__triangle--right {
  right: 40%;
  border-width: 75px 50px 75px 0;
  border-color: transparent white transparent transparent;
}
.sticky__img {
  width: 60%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sticky--business {
  margin-bottom: 40px;
}

.index-equipment {
  background-image: url("../img/kinzoku-mini.png");
  background-size: cover;
  margin-bottom: 50px;
}
@media screen and (max-width: 743px) {
  .index-equipment {
    margin-top: 30px;
  }
}
.index-equipment__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  padding: 50px 0 40px;
}
@media screen and (max-width: 743px) {
  .index-equipment__inner {
    justify-content: space-around;
    padding-bottom: 20px;
  }
}
.index-equipment__content {
  width: 18%;
  border: 1px solid black;
  box-shadow: 2px 2px 4px;
}
@media screen and (max-width: 743px) {
  .index-equipment__content {
    margin: 0;
    width: 34%;
    margin-bottom: 20px;
  }
}
.index-equipment__content:hover {
  filter: brightness(150%);
}
.index-equipment__img {
  width: 100%;
}
.index-equipment__title {
  background-color: #d8e2f0;
  text-align: center;
  font-size: 2.2rem;
  color: #333333;
  padding: 10px 0;
}
.index-equipment__br {
  display: none;
}
@media screen and (max-width: 743px) {
  .index-equipment__br {
    display: inline;
  }
}

.creed {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  text-align: center;
}
.creed__title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 743px) {
  .creed__title {
    font-size: 1.8rem;
  }
}
.creed__list {
  text-align: left;
  list-style-type: none;
}
.creed__item {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 743px) {
  .creed__item {
    font-size: 1.6rem;
  }
}

.telephone-and-mail {
  margin: 0 auto 20px;
  border: 3px solid black;
  width: 720px;
  box-sizing: border-box;
}
@media screen and (max-width: 743px) {
  .telephone-and-mail {
    width: 95%;
    margin: 50px auto 20px;
  }
}
.telephone-and-mail__title {
  text-align: center;
  font-size: 2rem;
  line-height: 2.2rem;
  margin-top: 10px;
}
@media screen and (max-width: 743px) {
  .telephone-and-mail__title {
    font-size: 2rem;
  }
}
.telephone-and-mail__text {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 3px;
}
@media screen and (max-width: 743px) {
  .telephone-and-mail__text {
    font-size: 1.4rem;
  }
}
.telephone-and-mail__flex {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
@media screen and (max-width: 743px) {
  .telephone-and-mail__flex {
    display: block;
  }
}

.telephone {
  margin-bottom: 10px;
  text-align: center;
}
.telephone__text {
  margin-bottom: 6px;
  font-size: 1.6rem;
}
@media screen and (max-width: 743px) {
  .telephone__text {
    font-size: 1.4rem;
  }
}
.telephone__number {
  font-size: 2.6rem;
  font-weight: bold;
  padding-bottom: 10px;
}
.telephone__number a {
  color: #ff0000;
}
@media (min-width: 743px) {
  .telephone__number a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 743px) {
  .telephone__number {
    font-size: 2.2rem;
  }
}
.telephone__subtext {
  font-size: 1.4rem;
  line-height: 1.8rem;
}
@media screen and (max-width: 743px) {
  .telephone__subtext {
    margin-bottom: 24px;
  }
}

.mail {
  margin-bottom: 10px;
  text-align: center;
}
.mail__text {
  margin-bottom: 6px;
  font-size: 1.6rem;
}
@media screen and (max-width: 743px) {
  .mail__text {
    font-size: 1.4rem;
  }
}
.mail__address {
  font-size: 2.6rem;
  font-weight: bold;
  padding-bottom: 10px;
  color: #ff0000;
}
@media screen and (max-width: 743px) {
  .mail__address {
    font-size: 2.2rem;
  }
}

.subpage-top {
  padding-top: 60px;
  width: 100%;
  height: 150px;
  position: relative;
}
@media screen and (max-width: 743px) {
  .subpage-top {
    height: 90px;
  }
}
.subpage-top__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  text-align: center;
}
.subpage-top__title {
  font-size: 4rem;
  color: #e0e0e0;
  text-shadow: 1px 1px 1px #000000, -1px 1px 1px #000000, 1px -1px 1px #000000, -1px -1px 1px #000000, 1px 0px 1px #000000, 0px 1px 1px #000000, -1px 0px 1px #000000, 0px -1px 1px #000000;
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 743px) {
  .subpage-top__title {
    font-size: 3.5rem;
  }
}

.anker {
  padding-top: 60px;
  margin-top: -60px;
}

.table {
  table-layout: fixed;
  margin: 10px auto 0;
  color: black;
  font-size: 1.8rem;
  border: 2px solid black;
  width: 60%;
  background-color: white;
  list-style: none;
}
.table th,
.table td {
  border: 2px solid black;
  padding: 1%;
  vertical-align: middle;
}
.table th {
  background-color: #d6d6d6;
}
.table td {
  word-wrap: break-word;
}
.table td ul {
  list-style: none;
}
@media screen and (max-width: 1200px) {
  .table {
    width: 80%;
  }
}
@media screen and (max-width: 743px) {
  .table {
    width: 90%;
    font-size: 1.6rem;
  }
}

.table-overview__title {
  width: 150px;
}
@media screen and (max-width: 743px) {
  .table-overview__title {
    width: 100px;
  }
}

.table-employ {
  line-height: 2.2rem;
}
.table-employ__title {
  width: 150px;
}
@media screen and (max-width: 743px) {
  .table-employ__title {
    width: 100px;
  }
}

.table-facility {
  margin-bottom: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 743px) {
  .table-facility {
    font-size: 1.2rem;
  }
}
.table-facility tr td {
  text-align: right;
}
.table-facility tr td:first-child {
  text-align: center;
}

.overview {
  margin: 40px auto;
}
@media screen and (max-width: 743px) {
  .overview {
    margin: 30px auto;
  }
}
.overview__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 3rem;
}
@media screen and (max-width: 743px) {
  .overview__title {
    font-size: 2.6rem;
  }
}

.employ {
  padding: 40px 0;
  background-color: #f5f5f5;
}
.employ__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 3rem;
}
@media screen and (max-width: 743px) {
  .employ__title {
    font-size: 2.6rem;
  }
}
.employ__center {
  text-align: center;
}
.employ__text {
  width: 60%;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .employ__text {
    width: 80%;
  }
}
@media screen and (max-width: 743px) {
  .employ__text {
    width: 90%;
    font-size: 1.6rem;
  }
}
.employ__num {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 2.6rem;
}
.employ__num a {
  color: #ff0000;
}
@media (min-width: 743px) {
  .employ__num a[href^="tel:"] {
    pointer-events: none;
  }
}

.introduction {
  text-align: center;
  margin: 40px auto;
}
@media screen and (max-width: 743px) {
  .introduction {
    margin-bottom: 60px;
  }
}
.introduction__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 3rem;
}
@media screen and (max-width: 743px) {
  .introduction__title {
    font-size: 2.6rem;
  }
}
.introduction__belt {
  margin: 30px auto 0;
  width: 80%;
  padding-bottom: 20px;
  border-bottom: 3px solid gray;
}
@media screen and (max-width: 743px) {
  .introduction__belt {
    padding-bottom: 10px;
  }
}
.introduction__text {
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .introduction__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 400px) {
  .introduction__text {
    font-size: 1.4rem;
  }
}

.facility {
  padding: 30px 0;
  background-color: #f5f5f5;
}
.facility__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 3rem;
}
@media screen and (max-width: 743px) {
  .facility__title {
    font-size: 2.6rem;
  }
}
.facility__photo-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 30px;
  padding-bottom: 40px;
}
@media screen and (max-width: 743px) {
  .facility__photo-wrapper {
    justify-content: space-around;
  }
}
.facility__text {
  font-size: 1.8rem;
  margin: 10px auto 10px 20%;
}
@media screen and (max-width: 1200px) {
  .facility__text {
    margin-left: 10%;
  }
}
@media screen and (max-width: 743px) {
  .facility__text {
    margin-left: 5%;
    font-size: 1.4rem;
  }
}

.facility-photo {
  margin: 10px 0;
  width: 18%;
}
@media screen and (max-width: 743px) {
  .facility-photo {
    width: 34%;
    margin: 10px 0;
  }
}
.facility-photo__img {
  width: 100%;
  height: auto;
  border: 1px solid black;
}
@media screen and (max-width: 743px) {
  .facility-photo__img {
    width: 100%;
    height: auto;
  }
}
.facility-photo__link {
  display: block;
  width: 113px;
  height: 62px;
  margin: 10px auto 0;
  border: 2px solid red;
  border-radius: 100px;
  box-shadow: 0 2px 1px;
  background-color: white;
}
.facility-photo__link:hover {
  opacity: 0.6;
  transform: translate(0px, 2px);
  box-shadow: none;
}
@media screen and (max-width: 743px) {
  .facility-photo__link {
    width: 85px;
    height: 49px;
  }
}
.facility-photo__notlink {
  width: 113px;
  height: 62px;
  margin: 10px auto 0;
  border: 2px solid red;
  border-radius: 100px;
}
@media screen and (max-width: 743px) {
  .facility-photo__notlink {
    width: 85px;
    height: 49px;
  }
}
.facility-photo__title {
  position: relative;
  padding: 5px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6rem;
}
.facility-photo__title--notlink {
  margin-top: 10px;
}
@media screen and (max-width: 743px) {
  .facility-photo__title--notlink {
    margin-top: 6px;
  }
}
@media screen and (max-width: 743px) {
  .facility-photo__title {
    font-size: 1.3rem;
    line-height: 1.3rem;
  }
}
.facility-photo__icon {
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  line-height: 2.2rem;
  vertical-align: middle;
  background: url(../img/youtube32.png) no-repeat left center;
}
@media screen and (max-width: 743px) {
  .facility-photo__icon {
    background: url(../img/youtube22.png) no-repeat left center;
    width: 2.2rem;
    height: 2.2rem;
  }
}

.location {
  text-align: center;
  padding: 40px 0;
}
.location__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 3rem;
}
@media screen and (max-width: 743px) {
  .location__title {
    font-size: 2.6rem;
  }
}
.location__map {
  width: 100%;
}
.location__map iframe {
  display: block;
  margin: 0 auto 30px;
}
@media screen and (max-width: 743px) {
  .location__map iframe {
    width: 100%;
    height: 300px;
  }
}
.location__text {
  font-size: 2rem;
  line-height: 3rem;
}
@media screen and (max-width: 743px) {
  .location__text {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

.inquiry {
  padding: 40px 0;
  text-align: center;
  background-color: #f5f5f5;
}
.inquiry__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 3rem;
}
@media screen and (max-width: 743px) {
  .inquiry__title {
    font-size: 2.6rem;
  }
}
.inquiry__subtitle {
  font-size: 2rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 743px) {
  .inquiry__subtitle {
    font-size: 1.8rem;
  }
}
.inquiry__address {
  margin-bottom: 10px;
  font-size: 2.6rem;
  font-weight: bold;
  font-style: normal;
  color: #ff0000;
}
.inquiry__address a {
  color: #ff0000;
}
@media (min-width: 743px) {
  .inquiry__address a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 743px) {
  .inquiry__address {
    font-size: 2.2rem;
  }
}
.inquiry__text {
  font-size: 1.6rem;
  margin-top: 3px;
}
@media screen and (max-width: 743px) {
  .inquiry__text {
    font-size: 1.4rem;
  }
}
.inquiry__text--last {
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */