@charset "UTF-8";
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%;
  line-height: inherit;
}

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

body {
  color: #231815;
  font-size: 17px;
  font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
@media (min-width: 500px) {
  body {
    min-width: 1170px;
  }
}

*, *:before, *:after {
  box-sizing: border-box;
}

a {
  color: #000;
}

a:hover, a:active, a:focus {
  color: #000;
}

img,
img[src*=".svg"] {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

video {
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
}

@media (max-width: 499px) {
  .hidden-xs {
    display: none;
  }
}

.visible-xs {
  display: none;
}
@media (max-width: 499px) {
  .visible-xs {
    display: block;
  }
}

/* Content
---------------------*/
.content-container > * {
  margin-left: auto;
  margin-right: auto;
}

.content-container > *:not(.alignfull) {
  margin-left: 15px;
  margin-right: 15px;
}
@media (min-width: 1200px) {
  .content-container > *:not(.alignfull) {
    width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}

.content-content {
  line-height: 1.8;
}

ul.circle {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.circle li {
  position: relative;
  padding-left: 1em;
}
ul.circle li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

/* Header
---------------------*/
@media (min-width: 1000px) {
  #header {
    position: absolute;
    z-index: 50;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25);
  }
}
.home #header {
  background: none;
}
#header .header-inner {
  display: flex;
  height: 90px;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
@media (min-width: 1000px) {
  #header .header-inner {
    height: 110px;
  }
}
@media (min-width: 500px) {
  #header .header-inner {
    padding: 20px;
  }
}
#header h1 {
  margin: 0;
  font-size: 1em;
}
#header h1 span {
  display: block;
}
#header .logo-wrap {
  position: relative;
  max-width: 70%;
}
@media (max-width: 999px) {
  #header nav {
    display: none;
  }
}
#header nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
#header nav li {
  margin: 0 1em;
  padding: 0;
}
@media (min-width: 1500px) {
  #header nav li {
    margin: 0 3vw;
  }
}
#header nav a {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#header nav a:hover, #header nav a:focus, #header nav a:active {
  text-decoration: none;
  opacity: 0.7;
}
#header nav li.contact a {
  padding: 3px 20px;
  background: #4678a7;
}

#hamburger-nav {
  position: fixed;
  cursor: pointer;
  z-index: 101;
  width: 55px;
  padding: 10px 0;
  top: 15px;
  right: 20px;
  display: flex;
  height: 55px;
  width: 55px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1000px) {
  #hamburger-nav {
    display: none;
  }
}
#hamburger-nav span,
#hamburger-nav span:before,
#hamburger-nav span:after {
  content: "";
  display: block;
  height: 2px;
  width: 55px;
  background-color: #4578a7;
  position: absolute;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#hamburger-nav span:before {
  bottom: 14px;
}
#hamburger-nav span:after {
  top: 14px;
}
#hamburger-nav.active span {
  background-color: rgba(255, 255, 255, 0);
}
#hamburger-nav.active span:before {
  bottom: 0;
  transform: rotate(45deg);
}
#hamburger-nav.active span:after {
  top: 0;
  transform: rotate(-45deg);
}

/* Nav
---------------------*/
#nav-window {
  position: fixed;
  z-index: 100;
  display: flex;
  top: 200%;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.9);
}
#nav-window.active {
  top: 0;
}
#nav-window #win-close {
  max-width: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  text-align: center;
  cursor: pointer;
}
#nav-window #win-close img {
  display: inline-block;
  margin-bottom: 10px;
}
#nav-window ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
#nav-window ul li {
  margin: 20px 0;
  font-size: 20px;
}
@media (min-width: 500px) {
  #nav-window ul li {
    font-size: 24px;
  }
}
#nav-window ul li a {
  color: #231815;
  text-decoration: none;
}

/* Footer
---------------------*/
#footer {
  padding: 30px 0;
  color: #fff;
  background: #000021;
}
#footer .footer-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 499px) {
  #footer .footer-inner .left {
    max-width: 70%;
  }
}
#footer .footer-inner .right {
  width: 50%;
}
@media (max-width: 499px) {
  #footer .footer-inner .right {
    display: none;
  }
}
#footer nav ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer nav a {
  color: #fff;
  font-size: 19px;
  text-decoration: none;
  line-height: 1;
}
#footer nav li.contact a {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  background: #4678a7;
}
#footer .copyright {
  margin-top: 15px;
  font-size: 15px;
  text-align: right;
}

#totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.visibleToTop #totop {
  opacity: 1;
}

#content-header {
  height: 350px;
  padding-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
#content-header h1 span {
  display: inline-block;
  font-size: 52px;
  letter-spacing: 0.5em;
  margin-right: -0.5em;
}
@media (min-width: 500px) {
  #content-header h1 span {
    letter-spacing: 1em;
    margin-right: -1em;
  }
}
#content-header small {
  display: block;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
}
.page-product #content-header {
  background-image: url(../img/product_title.jpg);
}
.page-aboutus #content-header {
  background-image: url(../img/aboutus_title.jpg);
}
.page-facility #content-header {
  background-image: url(../img/facility_title.jpg);
}
.page-recruit #content-header {
  background-image: url(../img/recruit_title.jpg);
}

/* Home
---------------------*/
#featured {
  position: relative;
  margin-bottom: 84px;
}
#featured video {
  width: 100%;
  height: auto;
}
#featured .catch {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#featured .catch img {
  max-width: 100%;
  opacity: 0.65;
}
@media (min-width: 1125px) {
  #featured .catch img {
    max-width: 1125px;
  }
}
#featured:after {
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}

.home .mask-wrap,
.product-content-wrap .mask-wrap {
  display: block;
  overflow: hidden;
}
.home .mask,
.product-content-wrap .mask {
  display: block;
}
.home .title > .mask-wrap .mask,
.product-content-wrap .title > .mask-wrap .mask {
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  transform: translateY(100%);
}
.home .title small,
.product-content-wrap .title small {
  overflow: hidden;
}
.home .title small span.mask,
.product-content-wrap .title small span.mask {
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
  display: block;
  transform: translateY(-100%);
}
.home .title.appeared > .mask-wrap .mask,
.product-content-wrap .title.appeared > .mask-wrap .mask {
  transform: translateY(0);
}
.home .title.appeared small span.mask,
.product-content-wrap .title.appeared small span.mask {
  transform: translateY(0);
}

figure.img-appear img {
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}
figure.img-appear.appeared img {
  opacity: 1;
  transform: translateY(0px);
}

figure.img-appear-opacity img {
  opacity: 0;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
figure.img-appear-opacity.appeared img {
  opacity: 1;
}

#home-message {
  margin-bottom: 85px;
}
@media (min-width: 500px) {
  #home-message .home-content-wrap {
    display: flex;
    flex-direction: row-reverse;
  }
  #home-message .home-content-wrap > * {
    width: 50%;
  }
}
@media (min-width: 500px) {
  #home-message .image {
    padding-left: 40px;
  }
}
#home-message .title {
  position: relative;
  margin-bottom: 55px;
  font-size: 45px;
  font-weight: bold;
  line-height: 1.2;
}
#home-message .title small {
  position: absolute;
  bottom: -36px;
  right: 0;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#home-message .title:after {
  content: "";
  display: block;
  background: #000021;
  height: 2px;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#home-message .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #home-message .title.appeared:after {
    width: calc(100% + 170px);
  }
}
#home-message p {
  margin: 0;
  text-indent: 1em;
  font-size: 19px;
}

#home-product {
  color: #fff;
  background: #000021;
}
@media (min-width: 500px) {
  #home-product {
    display: flex;
    align-items: center;
  }
  #home-product > * {
    width: 50%;
  }
}
#home-product .image img {
  width: 100%;
}
#home-product .content-inner {
  max-width: 650px;
}
@media (min-width: 500px) {
  #home-product .content-inner {
    padding-left: 55px;
  }
}
@media (max-width: 499px) {
  #home-product .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#home-product .title {
  position: relative;
  margin-bottom: 55px;
  font-size: 45px;
  font-weight: bold;
  letter-spacing: 0.8em;
  line-height: 1.2;
}
#home-product .title small {
  position: absolute;
  bottom: -36px;
  right: 0;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#home-product .title:after {
  content: "";
  display: block;
  background: #fff;
  height: 2px;
  bottom: 0;
  right: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#home-product .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #home-product .title.appeared:after {
    width: calc(100% + 170px);
  }
}
#home-product .body {
  margin-bottom: 20px;
}
@media (min-width: 500px) {
  #home-product .body {
    margin-bottom: 90px;
  }
}
#home-product p {
  margin: 0;
  text-indent: 1em;
  font-size: 19px;
}
#home-product .more {
  padding-bottom: 20px;
}
#home-product .more a {
  padding: 8px 80px;
  font-size: 23px;
  color: #fff;
  text-decoration: none;
  background: #4678a7;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#home-product .more a:hover {
  background: #2d4f6b;
}

@media (min-width: 500px) {
  #home-facility {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  #home-facility > * {
    width: 50%;
  }
}
#home-facility .image img {
  width: 100%;
}
#home-facility .content {
  display: flex;
  justify-content: flex-end;
}
#home-facility .content-inner {
  max-width: 650px;
}
@media (min-width: 500px) {
  #home-facility .content-inner {
    padding-right: 55px;
  }
}
@media (max-width: 499px) {
  #home-facility .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#home-facility .title {
  position: relative;
  margin-bottom: 55px;
  font-size: 45px;
  font-weight: bold;
  letter-spacing: 0.8em;
  line-height: 1.2;
}
#home-facility .title small {
  position: absolute;
  bottom: -36px;
  right: 0;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#home-facility .title:after {
  content: "";
  display: block;
  background: #000021;
  height: 2px;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#home-facility .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #home-facility .title.appeared:after {
    width: calc(100% + 170px);
  }
}
#home-facility .body {
  margin-bottom: 20px;
}
#home-facility p {
  margin: 0;
  text-indent: 1em;
  font-size: 19px;
}
#home-facility .more {
  padding-bottom: 20px;
}
@media (min-width: 500px) {
  #home-facility .more {
    text-align: right;
  }
}
#home-facility .more a {
  padding: 8px 80px;
  font-size: 23px;
  color: #fff;
  text-decoration: none;
  background: #4678a7;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#home-facility .more a:hover {
  background: #2d4f6b;
}

#home-aboutus {
  color: #fff;
  background: #000021;
}
@media (min-width: 500px) {
  #home-aboutus {
    display: flex;
    align-items: center;
  }
  #home-aboutus > * {
    width: 50%;
  }
}
#home-aboutus .image img {
  width: 100%;
}
#home-aboutus .content-inner {
  max-width: 650px;
}
@media (min-width: 500px) {
  #home-aboutus .content-inner {
    padding-left: 55px;
  }
}
@media (max-width: 499px) {
  #home-aboutus .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#home-aboutus .title {
  position: relative;
  margin-bottom: 55px;
  font-size: 45px;
  font-weight: bold;
  letter-spacing: 0.8em;
  line-height: 1.2;
}
@media (min-width: 500px) {
  #home-aboutus .title {
    margin-bottom: 100px;
  }
}
#home-aboutus .title small {
  position: absolute;
  bottom: -36px;
  right: 0;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#home-aboutus .title:after {
  content: "";
  display: block;
  background: #fff;
  height: 2px;
  bottom: 0;
  right: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#home-aboutus .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #home-aboutus .title.appeared:after {
    width: calc(100% + 170px);
  }
}
#home-aboutus .more {
  padding-bottom: 20px;
}
@media (min-width: 500px) {
  #home-aboutus .more {
    text-align: right;
  }
}
#home-aboutus .more a {
  padding: 8px 80px;
  font-size: 23px;
  color: #fff;
  text-decoration: none;
  background: #4678a7;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#home-aboutus .more a:hover {
  background: #2d4f6b;
}

@media (min-width: 500px) {
  #home-recruit {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  #home-recruit > * {
    width: 50%;
  }
}
#home-recruit .image img {
  width: 100%;
}
@media (min-width: 500px) {
  #home-recruit .content {
    display: flex;
    justify-content: flex-end;
  }
}
#home-recruit .content-inner {
  max-width: 650px;
}
@media (min-width: 500px) {
  #home-recruit .content-inner {
    padding-right: 55px;
  }
}
@media (max-width: 499px) {
  #home-recruit .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#home-recruit .title {
  position: relative;
  margin-bottom: 55px;
  font-size: 45px;
  font-weight: bold;
  letter-spacing: 0.8em;
  line-height: 1.2;
}
@media (min-width: 500px) {
  #home-recruit .title {
    margin-bottom: 100px;
  }
}
#home-recruit .title small {
  position: absolute;
  bottom: -36px;
  right: 0;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#home-recruit .title:after {
  content: "";
  display: block;
  background: #000021;
  height: 2px;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#home-recruit .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #home-recruit .title.appeared:after {
    width: calc(100% + 170px);
  }
}
#home-recruit .body {
  margin-bottom: 20px;
}
@media (min-width: 1300px) {
  #home-recruit .body {
    width: 595px;
  }
}
#home-recruit p {
  margin: 0;
  text-indent: 1em;
  font-size: 19px;
}
#home-recruit .more {
  padding-bottom: 20px;
}
@media (min-width: 500px) {
  #home-recruit .more {
    text-align: right;
  }
}
#home-recruit .more a {
  padding: 8px 80px;
  font-size: 23px;
  color: #fff;
  text-decoration: none;
  background: #4678a7;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#home-recruit .more a:hover {
  background: #2d4f6b;
}

#home-access .title {
  position: relative;
  padding: 18px 15px;
  text-align: center;
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.2;
  background: #000021;
}
#home-access .title small {
  display: block;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#home-access iframe {
  width: 100%;
  height: 500px;
  vertical-align: bottom;
}
@media (min-width: 500px) {
  #home-access iframe {
    height: 700px;
  }
}

#home-contact h2.title {
  position: relative;
  padding: 18px 15px;
  text-align: center;
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.2;
  background: #000021;
}
#home-contact h2.title small {
  display: block;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}

/* Product
---------------------*/
#product-1 {
  margin-top: 80px;
  margin-bottom: 75px;
}
@media (min-width: 500px) {
  #product-1 .product-items {
    display: flex;
    justify-content: space-between;
  }
  #product-1 .product-items > * {
    width: calc(50% - 50px);
  }
}
#product-1 .product-items .product-title {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  border: 2px solid #000021;
  border-radius: 8px;
}
#product-1 .product-items .product-name {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
}
#product-1 .product-items .more {
  margin: 25px 0;
  text-align: center;
}
#product-1 .product-items .more a {
  padding: 8px 80px;
  font-size: 23px;
  color: #fff;
  text-decoration: none;
  background: #4678a7;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#product-1 .product-items .more a:hover {
  background: #2d4f6b;
}

#product-2 {
  margin-bottom: 85px;
}
@media (min-width: 500px) {
  #product-2 .product-content-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  #product-2 .product-content-wrap > * {
    width: 50%;
  }
}
#product-2 .image img {
  width: 100%;
}
#product-2 .content-inner {
  max-width: 650px;
}
@media (min-width: 500px) {
  #product-2 .content-inner {
    padding-right: 55px;
  }
}
@media (max-width: 499px) {
  #product-2 .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#product-2 .title {
  position: relative;
  margin-bottom: 25px;
  font-size: 45px;
  font-weight: bold;
}
#product-2 .title small {
  position: absolute;
  bottom: -36px;
  right: 0;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#product-2 .title:after {
  content: "";
  display: block;
  background: #000021;
  height: 2px;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#product-2 .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #product-2 .title.appeared:after {
    width: calc(100% + 170px);
  }
}
#product-2 .body {
  margin-bottom: 20px;
}
#product-2 p {
  margin: 0;
  font-size: 19px;
}
#product-2 .more {
  padding-bottom: 20px;
}
@media (min-width: 500px) {
  #product-2 .more {
    text-align: right;
  }
}
#product-2 .more a {
  padding: 8px 80px;
  font-size: 23px;
  color: #fff;
  text-decoration: none;
  background: #4678a7;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#product-2 .more a:hover {
  background: #2d4f6b;
}

#product-3 {
  margin-bottom: 30px;
}
@media (min-width: 500px) {
  #product-3 .product-content-wrap {
    display: flex;
    align-items: flex-start;
  }
  #product-3 .product-content-wrap > * {
    width: 50%;
  }
}
#product-3 .image img {
  width: 100%;
}
#product-3 .content-inner {
  max-width: 650px;
}
@media (min-width: 500px) {
  #product-3 .content-inner {
    padding-left: 55px;
  }
}
@media (max-width: 499px) {
  #product-3 .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#product-3 .title {
  position: relative;
  margin-bottom: 25px;
  font-size: 45px;
  font-weight: bold;
}
#product-3 .title small {
  position: absolute;
  bottom: -36px;
  right: 0;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#product-3 .title:after {
  content: "";
  display: block;
  background: #000021;
  height: 2px;
  bottom: 0;
  right: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#product-3 .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #product-3 .title.appeared:after {
    width: calc(100% + 170px);
  }
}
#product-3 .body {
  margin-bottom: 20px;
}
@media (min-width: 500px) {
  #product-3 .body {
    margin-bottom: 90px;
  }
}
#product-3 p {
  margin: 0 0 5px;
  font-size: 19px;
}
#product-3 ul.circle {
  margin-bottom: 5px;
}
#product-3 .more {
  padding-bottom: 20px;
}
#product-3 .more a {
  padding: 8px 80px;
  font-size: 23px;
  color: #fff;
  text-decoration: none;
  background: #4678a7;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#product-3 .more a:hover {
  background: #2d4f6b;
}

#product-4 {
  margin-bottom: 110px;
}
@media (min-width: 500px) {
  #product-4 .product-content-wrap {
    display: flex;
    align-items: center;
  }
}
#product-4 .title {
  position: relative;
  margin-right: 20px;
  margin-bottom: 25px;
  padding-right: 20px;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: -2px;
  border-bottom: 2px solid #000021;
}
@media (min-width: 500px) {
  #product-4 .title {
    font-size: 45px;
  }
}
@media (min-width: 500px) {
  #product-4 .title {
    margin-bottom: 0;
    border: 0;
    border-right: 2px solid #000021;
  }
}
#product-4 .body {
  font-size: 19px;
}

#product-robot {
  padding: 90px 0 20px;
  background: #d9e3ed;
}
@media (min-width: 500px) {
  #product-robot .product-content-wrap {
    display: flex;
    align-items: flex-start;
  }
  #product-robot .product-content-wrap > * {
    width: 50%;
  }
}
@media (min-width: 500px) {
  #product-robot .image {
    padding-right: 50px;
  }
}
#product-robot .image figcaption {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 13px;
  text-align: center;
}
#product-robot .image img {
  width: 100%;
}
#product-robot .content-inner {
  max-width: 650px;
}
@media (max-width: 499px) {
  #product-robot .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#product-robot .title {
  position: relative;
  margin-bottom: 95px;
  font-size: 35px;
  font-weight: bold;
}
@media (min-width: 500px) {
  #product-robot .title {
    font-size: 45px;
  }
}
#product-robot .title small {
  position: absolute;
  bottom: -1.6em;
  right: 0;
  font-size: 35px;
}
@media (min-width: 500px) {
  #product-robot .title small {
    font-size: 45px;
  }
}
#product-robot .title:after {
  content: "";
  display: block;
  background: #000021;
  height: 2px;
  bottom: 0;
  right: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#product-robot .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #product-robot .title.appeared:after {
    width: calc(100% + 0px);
  }
}
#product-robot .body {
  margin-bottom: 20px;
}
@media (min-width: 500px) {
  #product-robot .body {
    margin-bottom: 90px;
  }
}
#product-robot p {
  margin: 0 0 5px;
  font-size: 19px;
}
#product-robot ul.circle {
  margin-bottom: 5px;
}
#product-robot dl {
  margin-top: 50px;
  font-size: 19px;
}
@media (min-width: 500px) {
  #product-robot dl {
    display: flex;
  }
}
#product-robot dl dd {
  max-width: 125px;
}

#facility-1 {
  margin-bottom: 85px;
  padding-top: 80px;
}
@media (min-width: 500px) {
  #facility-1 .facility-content-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  #facility-1 .facility-content-wrap > * {
    width: 50%;
  }
}
#facility-1 .image img {
  width: 100%;
}
#facility-1 .content-inner {
  max-width: 650px;
}
@media (min-width: 500px) {
  #facility-1 .content-inner {
    padding-right: 55px;
  }
}
@media (max-width: 499px) {
  #facility-1 .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#facility-1 .title {
  position: relative;
  margin-bottom: 25px;
  font-size: 10vw;
  font-weight: bold;
}
@media (min-width: 500px) {
  #facility-1 .title {
    font-size: 45px;
  }
}
#facility-1 .title small {
  position: absolute;
  bottom: -36px;
  right: 0;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#facility-1 .title:after {
  content: "";
  display: block;
  background: #000021;
  height: 2px;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#facility-1 .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #facility-1 .title.appeared:after {
    width: calc(100% + 170px);
  }
}
#facility-1 .body {
  margin-bottom: 20px;
}
#facility-1 .body figure {
  margin-top: 30px;
}
#facility-1 p {
  margin: 0;
  text-indent: 1em;
  font-size: 19px;
}

#facility-2 {
  margin-bottom: 30px;
}
@media (min-width: 500px) {
  #facility-2 .facility-content-wrap {
    display: flex;
    align-items: flex-start;
  }
  #facility-2 .facility-content-wrap > * {
    width: 50%;
  }
}
#facility-2 .image img {
  width: 100%;
}
#facility-2 .content-inner {
  max-width: 650px;
}
@media (min-width: 500px) {
  #facility-2 .content-inner {
    padding-left: 55px;
  }
}
@media (max-width: 499px) {
  #facility-2 .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#facility-2 .title {
  position: relative;
  margin-bottom: 25px;
  font-size: 10vw;
  font-weight: bold;
}
@media (min-width: 500px) {
  #facility-2 .title {
    font-size: 45px;
  }
}
#facility-2 .title small {
  position: absolute;
  bottom: -36px;
  right: 0;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#facility-2 .title:after {
  content: "";
  display: block;
  background: #000021;
  height: 2px;
  bottom: 0;
  right: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#facility-2 .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #facility-2 .title.appeared:after {
    width: calc(100% + 170px);
  }
}
#facility-2 .body {
  margin-bottom: 20px;
}
@media (min-width: 500px) {
  #facility-2 .body {
    margin-bottom: 90px;
  }
}
#facility-2 p {
  margin: 0 0 5px;
  font-size: 19px;
  text-indent: 1em;
}

#facility-3 {
  margin-bottom: 85px;
  padding-top: 80px;
}
@media (min-width: 500px) {
  #facility-3 .facility-content-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  #facility-3 .facility-content-wrap > * {
    width: 50%;
  }
}
#facility-3 .image img {
  width: 100%;
}
#facility-3 .content-inner {
  max-width: 650px;
}
@media (min-width: 500px) {
  #facility-3 .content-inner {
    padding-right: 55px;
  }
}
@media (max-width: 499px) {
  #facility-3 .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#facility-3 .title {
  position: relative;
  margin-bottom: 25px;
  font-size: 10vw;
  font-weight: bold;
}
@media (min-width: 500px) {
  #facility-3 .title {
    font-size: 45px;
  }
}
#facility-3 .title small {
  position: absolute;
  bottom: -36px;
  right: 0;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#facility-3 .title:after {
  content: "";
  display: block;
  background: #000021;
  height: 2px;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#facility-3 .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #facility-3 .title.appeared:after {
    width: calc(100% + 170px);
  }
}
#facility-3 .body {
  margin-bottom: 20px;
}
#facility-3 p {
  margin: 0;
  text-indent: 1em;
  font-size: 19px;
}

#facility-4 {
  margin-bottom: 30px;
  padding-bottom: 40px;
}
@media (min-width: 500px) {
  #facility-4 .facility-content-wrap {
    display: flex;
    align-items: flex-start;
  }
  #facility-4 .facility-content-wrap > * {
    width: 50%;
  }
}
#facility-4 .image img {
  width: 100%;
}
#facility-4 .content-inner {
  max-width: 650px;
}
@media (min-width: 500px) {
  #facility-4 .content-inner {
    padding-left: 55px;
  }
}
@media (max-width: 499px) {
  #facility-4 .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#facility-4 .title {
  position: relative;
  margin-bottom: 25px;
  font-size: 10vw;
  font-weight: bold;
}
@media (min-width: 500px) {
  #facility-4 .title {
    font-size: 45px;
  }
}
#facility-4 .title small {
  position: absolute;
  bottom: -36px;
  right: 0;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 5px;
}
#facility-4 .title:after {
  content: "";
  display: block;
  background: #000021;
  height: 2px;
  bottom: 0;
  right: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
#facility-4 .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  #facility-4 .title.appeared:after {
    width: calc(100% + 170px);
  }
}
#facility-4 .body {
  margin-bottom: 20px;
}
@media (min-width: 500px) {
  #facility-4 .body {
    margin-bottom: 90px;
  }
}
#facility-4 p {
  margin: 0 0 5px;
  font-size: 19px;
  text-indent: 1em;
}

#aboutus-message {
  margin: 100px 0;
  font-size: 20px;
  line-height: 2em;
}
#aboutus-message .content-inner {
  max-width: 995px;
  margin-left: auto;
  margin-right: auto;
}
#aboutus-message p {
  text-indent: 1em;
}
#aboutus-message .sign {
  margin-top: 1em;
  text-align: right;
}
#aboutus-message .sign figure {
  max-width: 340px;
  margin-right: 0;
  margin-left: auto;
}

#aboutus-outline {
  padding: 75px 0 60px;
  font-size: 16px;
  color: #fff;
  background: #000021;
}
@media (min-width: 500px) {
  #aboutus-outline {
    font-size: 19px;
  }
}
@media (min-width: 500px) {
  #aboutus-outline .aboutus-content-wrap {
    display: flex;
    flex-direction: row-reverse;
  }
  #aboutus-outline .aboutus-content-wrap > * {
    width: 50%;
  }
}
#aboutus-outline .image {
  margin-bottom: 20px;
}
#aboutus-outline dl {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
#aboutus-outline dl > * {
  margin-bottom: 1em;
}
#aboutus-outline dt {
  width: 9em;
  padding-right: 3em;
  display: flex;
  justify-content: space-between;
}
#aboutus-outline dd {
  width: calc(100% - 9em);
}

#aboutus-history {
  padding: 75px 0 60px;
  font-size: 16px;
}
@media (min-width: 500px) {
  #aboutus-history {
    font-size: 19px;
  }
}
@media (min-width: 500px) {
  #aboutus-history .aboutus-content-wrap {
    display: flex;
    align-items: flex-end;
  }
  #aboutus-history .aboutus-content-wrap > * {
    width: 50%;
  }
}
@media (min-width: 500px) {
  #aboutus-history .content {
    padding-left: 80px;
  }
}
#aboutus-history .image {
  margin-bottom: 1em;
}
#aboutus-history h2 {
  text-align: center;
  font-size: 45px;
  margin-bottom: 25px;
}
#aboutus-history h2 span {
  display: inline-block;
  letter-spacing: 1em;
  margin-right: -1em;
}
#aboutus-history h2 small {
  display: block;
  border-top: 1px solid #000021;
  font-size: 20px;
  font-weight: normal;
}
#aboutus-history h2 small span {
  display: inline-block;
  letter-spacing: 0.5em;
  margin-right: -0.5em;
}
#aboutus-history dl {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
#aboutus-history dl > * {
  margin-bottom: 1em;
}
#aboutus-history dt {
  width: 8em;
  display: flex;
  justify-content: space-between;
}
#aboutus-history dd {
  width: calc(100% - 8em);
}

#recruit-table {
  padding: 80px 0;
}
#recruit-table table {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
#recruit-table table th, #recruit-table table td {
  padding: 15px 10px;
  border: 1px solid #000021;
}
@media (min-width: 500px) {
  #recruit-table table th, #recruit-table table td {
    padding: 15px 30px;
  }
}
@media (max-width: 499px) {
  #recruit-table table th, #recruit-table table td {
    font-size: 16px;
  }
}
#recruit-table table th {
  font-weight: 500;
}
#recruit-table table th div {
  display: flex;
  justify-content: space-between;
}
#recruit-table .more {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
}
#recruit-table .more img {
  max-width: 220px;
  height: auto;
}

.page-kg #content-header {
  display: none;
}
@media (min-width: 500px) {
  .page-kg #content-header {
    display: block;
    height: 110px;
    background: rgba(0, 0, 0, 0.8);
  }
}

#kg-kg1 {
  padding-top: 80px;
}
#kg-kg1 .info-items {
  margin-bottom: 170px;
}

#kg-kg1 .title-1, #kg-kg2 .title-1 {
  margin-bottom: 30px;
}
#kg-kg1 .title-1 h1, #kg-kg2 .title-1 h1 {
  margin-top: -150px;
  padding-top: 150px;
}
#kg-kg1 .title-2, #kg-kg2 .title-2 {
  margin-bottom: 20px;
}
#kg-kg1 .title-3, #kg-kg2 .title-3 {
  margin-bottom: 60px;
  font-size: 30px;
  text-align: center;
}
#kg-kg1 .main-image, #kg-kg2 .main-image {
  margin-bottom: 30px;
  text-align: center;
}
#kg-kg1 .benefit-items, #kg-kg2 .benefit-items {
  margin-bottom: 70px;
}
@media (min-width: 500px) {
  #kg-kg1 .benefit-items, #kg-kg2 .benefit-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #kg-kg1 .benefit-items > *, #kg-kg2 .benefit-items > * {
    width: calc(50% - 11px);
  }
}
#kg-kg1 .benefit-items .item, #kg-kg2 .benefit-items .item {
  margin-bottom: 22px;
  padding: 15px;
  font-size: 25px;
  line-height: 1.4;
  border: 1px solid #000021;
}
@media (min-width: 500px) {
  #kg-kg1 .benefit-items .item, #kg-kg2 .benefit-items .item {
    padding: 30px 40px;
  }
}
#kg-kg1 .benefit-items .item:first-child, #kg-kg2 .benefit-items .item:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

#kg-table {
  padding-bottom: 60px;
}
#kg-table .kg-table {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
}
#kg-table .kg-table h2 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 30px;
}
#kg-table .kg-table table {
  width: 100%;
  margin-bottom: 5px;
}
#kg-table .kg-table table tr:first-child th:nth-child(1) {
  width: 20%;
}
#kg-table .kg-table table tr:first-child th:nth-child(2) {
  width: 40%;
  background: #d3dee5;
}
#kg-table .kg-table table tr:first-child th:nth-child(3) {
  width: 40%;
  background: #d3dee5;
}
#kg-table .kg-table table th, #kg-table .kg-table table td {
  padding: 15px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #000021;
}
#kg-table .kg-table table td.text-left {
  text-align: left;
}
#kg-table .kg-table .note {
  font-size: 18px;
}
@media (max-width: 499px) {
  #kg-table .table-wrap {
    overflow-x: auto;
  }
  #kg-table .table-wrap th {
    white-space: nowrap;
  }
}

.page-kg #kg-kg2 .title:after {
  background: #0099ce;
}

.page-kg .info-items .item {
  margin-bottom: 85px;
}
@media (min-width: 500px) {
  .page-kg .info-items .item .product-content-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .page-kg .info-items .item .product-content-wrap > * {
    width: 50%;
  }
}
.page-kg .info-items .item .image img {
  width: 100%;
}
.page-kg .info-items .item .content-inner {
  max-width: 650px;
}
@media (min-width: 500px) {
  .page-kg .info-items .item .content-inner {
    padding-right: 55px;
  }
}
@media (max-width: 499px) {
  .page-kg .info-items .item .content-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.page-kg .info-items .item .title {
  position: relative;
  margin-bottom: 25px;
  font-size: 8vw;
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 500px) {
  .page-kg .info-items .item .title {
    font-size: 45px;
  }
}
.page-kg .info-items .item .title small {
  font-size: 20px;
}
@media (max-width: 499px) {
  .page-kg .info-items .item .title small {
    display: block;
  }
}
.page-kg .info-items .item .title img {
  align-items: center;
  display: inline-block;
  max-width: 47px;
  height: auto;
  margin-right: 5px;
}
.page-kg .info-items .item .title:after {
  content: "";
  display: block;
  background: #e60012;
  height: 2px;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
.page-kg .info-items .item .title.appeared:after {
  width: 100%;
}
@media (min-width: 500px) {
  .page-kg .info-items .item .title.appeared:after {
    width: calc(100% + 170px);
  }
}
.page-kg .info-items .item .title .mask {
  display: flex;
  align-items: center;
}
.page-kg .info-items .item .title.title-tight {
  letter-spacing: -3px;
}
.page-kg .info-items .item .title.title-tight small {
  letter-spacing: normal;
}
.page-kg .info-items .item .body {
  margin-bottom: 20px;
  line-height: 1.5;
}
.page-kg .info-items .item p {
  margin: 0;
  font-size: 19px;
}
.page-kg .info-items .item figure.right {
  max-width: 280px;
  margin-right: 0;
  margin-left: auto;
}
.page-kg .info-items .item .more {
  padding-bottom: 20px;
}
@media (min-width: 500px) {
  .page-kg .info-items .item .more {
    text-align: right;
  }
}
.page-kg .info-items .item .more a {
  padding: 8px 80px;
  font-size: 23px;
  color: #fff;
  text-decoration: none;
  background: #4678a7;
  border-radius: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.page-kg .info-items .item .more a:hover {
  background: #2d4f6b;
}

.contact-form-wrap {
  padding: 50px 0;
}
.contact-form-wrap .contact-form-wrap {
  padding-top: 20px;
}
.contact-form-wrap p {
  margin-top: 50px;
  text-align: center;
}
.contact-form-wrap .form-wrap {
  overflow: hidden;
}
.contact-form-wrap .input-wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}
.contact-form-wrap .checkbox-group label {
  display: block;
  margin-bottom: 10px;
}
.contact-form-wrap dl {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
  padding-top: 30px;
  font-size: 19px;
  border-top: 1px solid #9fa0a0;
}
.contact-form-wrap dl:first-child {
  border-top: 0;
}
@media (min-width: 500px) {
  .contact-form-wrap dl {
    flex-direction: row;
  }
}
.contact-form-wrap dl dt {
  width: 300px;
  margin-bottom: 5px;
}
.contact-form-wrap dl dd {
  flex-grow: 1;
}
.contact-form-wrap dl .title {
  display: inline-block;
  vertical-align: middle;
}
.contact-form-wrap dl .required {
  display: inline-block;
  margin-left: 10px;
  padding: 1px 10px;
  color: #fff;
  font-size: 13px;
  background: #e9474d;
}
.contact-form-wrap dl input[type=text], .contact-form-wrap dl textarea {
  width: 100%;
  padding: 10px;
  border: 0;
  font-size: 18px;
  border: 1px solid #9fa0a0;
  border-radius: 8px;
}
.contact-form-wrap dl textarea {
  height: 15em;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Mayryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.contact-form-wrap dl small {
  color: #9fa0a0;
  font-size: 17px;
}
.contact-form-wrap .checkbox-wrap {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 19px;
  text-align: center;
}
.contact-form-wrap .checkbox-wrap a {
  color: #4678a7;
  font-weight: bold;
  text-decoration: none;
}
.contact-form-wrap .submit-wrap {
  margin-bottom: 40px;
  text-align: center;
}
.contact-form-wrap .submit-wrap #submit {
  padding: 5px 30px;
  color: #fff;
  font-size: 20px;
  background: #4678a7;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
}
.contact-form-wrap .submit-wrap #submit:disabled {
  background: #999;
  cursor: auto;
}
.contact-form-wrap .form-error {
  color: #e00;
}
.contact-form-wrap .thanks {
  margin-bottom: 50px;
  text-align: center;
}

#privacy {
  padding-bottom: 65px;
}
#privacy h3 {
  margin-bottom: 10px;
  padding-bottom: 5px;
  color: #4678a7;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #9fa0a0;
}

.page-contact #home-contact {
  padding-top: 110px;
}
.page-contact .thanks {
  padding: 100px 0;
  text-align: center;
}

#contact {
  margin-top: -100px;
  padding-top: 100px;
}/*# sourceMappingURL=style.css.map */