@charset "UTF-8";
/* ハンバーガーメニューのスタイリング */
body {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  line-height: 2;
  letter-spacing: 0.1rem;
}
body a {
  color: var(--bs-blue);
  text-decoration: none;
}

img {
  max-width: 100%; /* 1 */
  height: auto; /* 1 */
  vertical-align: middle; /* 2 */
  font-style: italic; /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover; /* 4 */
  shape-margin: 0.75rem; /* 5 */
}

.small {
  font-size: 80%;
}

main {
  flex: 1;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.text-white {
  color: var(--bs-white);
}

.text-blue {
  color: var(--bs-blue);
}

.text-red {
  color: var(--bs-red);
}

.header {
  position: fixed;
  width: 100%;
  z-index: 999; /*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  text-align: center;
}
.header .logo {
  margin: 0 1.5rem;
  width: 35%;
  background-color: var(--bs-white);
}
.header .logo a {
  padding: 1rem;
  display: block;
}
.header .navbar-dark .navbar-brand {
  /* サイトタイトル */
  text-align: center;
}

@media (max-width: 767.98px) {
  .header .logo {
    margin: 0;
    background-color: var(--bs-white);
  }
  .header .logo a {
    padding: 1rem;
    display: block;
  }
  .header .logo a img {
    width: 80%;
  }
}
.header .navbar {
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}
.header .nav-item a {
  color: var(--bs-body-color);
}
.header .nav-item.contact {
  background-color: var(--bs-red);
}
.header .nav-item .nav-link {
  color: var(--bs-white);
  line-height: 1.6;
}
.header .nav-item .nav-link span {
  display: block;
}
.header.invert {
  background: rgba(255, 255, 255, 0.9);
}
.header.invert .logo {
  background: none;
  margin-left: 0;
}
.header.invert .nav-item .nav-link {
  color: var(--bs-body-color);
}
.header.invert .nav-item.contact a {
  color: var(--bs-white);
}
.header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
.header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header .navbar-collapse {
  justify-content: flex-end;
  margin: 0.5rem;
}
@media (max-width: 991.98px) {
  .header .navbar-nav {
    padding: 3rem 0;
  }
  .header .navbar-toggler {
    background-color: var(--bs-blue);
    padding: 0.85rem;
    border-radius: 0;
  }
  .header .navbar-toggler:focus {
    box-shadow: none !important;
  }
  .header .navbar-collapse {
    justify-content: flex-end;
    margin: 0;
    background-color: var(--bs-blue);
  }
  .header .header__logo {
    max-width: 324px;
  }
  .header .header__nav__overlay {
    height: 100vh;
    background-color: rgba(var(--bs-wihite), 0.8);
    /*padding-top: 3.5rem*/
  }
  .header .header__nav .navbar-collapse {
    overflow-y: auto;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
  }
  .header .header__nav .navbar-collapse .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 2px solid var(--bs-body-color);
    color: var(--bs-white);
  }
  .header .header__nav__bg {
    background-color: var(--bs-body-color);
    height: 100vh;
  }
  .header .navbar-toggler {
    z-index: 2;
    position: fixed;
    right: 0;
    top: 0;
  }
  .header .navbar-toggler i {
    display: none;
  }
  .header .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
    background: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .navbar-toggler[aria-expanded=true] .navbar-toggler-icon i {
    display: block;
  }
}
.header .navbar-dark .navbar-brand {
  /* サイトタイトル */
  width: 100%;
}

.hero__catch {
  position: absolute;
  left: 50px;
  top: 400px;
  z-index: 1;
}
.hero .slider {
  position: relative;
  height: 610px;
  padding: 0;
  margin: 0;
  /*矢印の設定*/
  /*ドットナビゲーションの設定*/
}
.hero .slider .slider-item {
  background-position: top center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
.hero .slider .slider-item.slider-item01 {
  background: url(../images/index/im_slide01.jpg) no-repeat;
  background-size: cover;
}
.hero .slider .slider-item.slider-item02 {
  background: url(../images/index/im_slide02.jpg) no-repeat;
  background-size: cover;
}
.hero .slider .slider-item.slider-item03 {
  background: url(../images/index/im_slide03.jpg) no-repeat;
  background-size: cover;
}
.hero .slider .slider-item.slider-item04 {
  background: url(../images/index/im_slide04.jpg) no-repeat;
  background-size: cover;
}
.hero .slider::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/index/im_slide-front.png) no-repeat;
  background-size: cover;
  opacity: 0.5;
  z-index: 1;
}
.hero .slider .slick-prev,
.hero .slider .slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff; /*矢印の色*/
  border-right: 2px solid #fff; /*矢印の色*/
  height: 25px;
  width: 25px;
}
.hero .slider .slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
  z-index: 9999;
}
.hero .slider .slick-prev::before {
  content: none;
}
.hero .slider .slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
  z-index: 9999;
}
.hero .slider .slick-next::before {
  content: none;
}
.hero .slider .slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -60px 0 0 0; /*ドットの位置*/
}
.hero .slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
  z-index: 1;
}
.hero .slider .slick-dots button {
  color: transparent;
  outline: none;
  width: 10px; /*ドットボタンのサイズ*/
  height: 10px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #fff; /*ドットボタンの色*/
}
.hero .slider .slick-dots .slick-active button {
  background: var(--bs-red); /*ドットボタンの現在地表示の色*/
}

.bn-area {
  padding-left: 0;
  display: flex;
  border-top: 1px solid #fff;
}
.bn-area p {
  margin-bottom: 0;
  font-weight: 700;
  font-style: normal;
}
.bn-area li {
  list-style: none;
  width: 25%;
  border-right: 1px solid #fff;
  position: relative;
}
.bn-area li:last-child {
  border-right: none;
}
.bn-area li::before {
  position: absolute;
  content: "\f078";
  font-weight: 900;
  display: block;
  font-size: 2.5em;
  top: -40px;
  left: 50%;
  color: var(--bs-red);
  margin-left: -1.25rem;
  font-family: "Font Awesome 5 Free";
  z-index: 1;
}
.bn-area li a {
  display: inline-block;
  text-align: center;
  color: var(--bs-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
}
.bn-area li a.bn01 {
  background: url(../images/index/bn_01.png) no-repeat;
  background-size: cover;
  min-height: 180px;
}
.bn-area li a.bn02 {
  background: url(../images/index/bn_02.png) no-repeat;
  background-size: cover;
  min-height: 180px;
}
.bn-area li a.bn03 {
  background: url(../images/index/bn_03.png) no-repeat;
  background-size: cover;
  min-height: 180px;
}
.bn-area li a.bn04 {
  background: url(../images/index/bn_04.png) no-repeat;
  background-size: cover;
  min-height: 180px;
}
.bn-area li a:hover {
  opacity: 0.5;
}

/*タイトル関係*/
.tl-h2 {
  font-size: 1.75rem;
  color: var(--bs-blue);
  font-weight: 700;
  line-height: 1.6;
}
.tl-h2 span {
  display: block;
  font-size: 0.75rem;
}

.tl-h2-02 {
  z-index: 1;
  position: relative;
  color: #fff;
  line-height: 1.6;
  top: -15px;
}
.tl-h2-02 .small {
  display: block;
  font-size: 0.75rem;
}

.tl-h3 {
  font-size: 1.25rem;
  color: var(--bs-blue);
  font-weight: 700;
  line-height: 1.6;
}

.top-corpolate, .top-service {
  position: relative;
}
.top-corpolate::before, .top-service::before {
  background-color: #54c3f1;
  position: absolute;
  transform: skewY(-5deg);
  transform-origin: top left;
  left: 0;
  top: 20px;
  content: "";
  width: 100%;
  height: 100px;
  z-index: -1;
}
.top-corpolate::after, .top-service::after {
  transform: skewY(-5deg);
  transform-origin: top left;
  background-color: var(--bs-blue);
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 38%;
  height: 100px;
  z-index: -1;
}
.top-corpolate > .container, .top-service > .container {
  position: relative;
}
.top-corpolate > .container .ph, .top-service > .container .ph {
  position: absolute;
  right: 0;
  top: -30px;
}

.contact-area {
  background: url(../images/index/bg_contact.png) no-repeat;
  background-size: cover;
  min-height: 280px;
  display: flex;
  color: var(--bs-white);
  align-items: center;
  text-align: center;
  line-height: 3;
}
.contact-area .btn {
  background-color: var(--bs-white);
  border-radius: 5rem;
  padding: 1rem 3rem;
  color: var(--bs-red);
  font-weight: 700;
}
.contact-area .btn:hover {
  opacity: 0.8;
}

/*news*/
.news {
  display: flex;
}
.news dt {
  width: 140px;
  font-weight: 400;
}
.news dd {
  flex: 1;
}
.news dd a {
  color: var(--bs-tertiary-color);
}
.news dd a:hover {
  text-decoration: underline;
}

.footer {
  width: 100%;
}

@media (max-width: 767.98px) {
  .header .logo {
    width: 100%;
  }
  .header .nav-item {
    border-bottom: 1px solid var(--bs-white);
  }
  .header .nav-item a {
    color: var(--bs-white);
  }
  .header .nav-link {
    color: var(--bs-white);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
  }
  .header .nav-link span {
    display: block;
  }
  .header.invert .nav-item .nav-link {
    color: var(--bs-white);
  }
  .header .navbar-dark .navbar-brand {
    /* サイトタイトル */
    width: 100%;
    text-align: left;
  }
  .hero .slider {
    height: 500px;
    background-position: center;
  }
  .hero__catch {
    left: 10px;
    top: 300px;
    margin: 0 10px;
  }
  .bn-area {
    flex-wrap: wrap;
  }
  .bn-area p {
    margin-bottom: 0;
  }
  .bn-area li {
    width: 50%;
  }
  .news {
    flex-direction: column;
  }
  .top-corpolate, .top-service {
    position: relative;
  }
  .top-corpolate > .container, .top-service > .container {
    position: relative;
  }
  .top-corpolate > .container .ph, .top-service > .container .ph {
    position: static;
    right: 0;
    top: 0;
  }
  .top-corpolate::after, .top-service::after {
    width: 50%;
  }
  .tl-h2-02 {
    top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header .logo {
    width: 100%;
    margin: 0;
  }
  .header .nav-item {
    border-bottom: 1px solid var(--bs-white);
  }
  .header .nav-item a {
    color: var(--bs-white);
  }
  .header.invert .nav-item .nav-link {
    color: var(--bs-white);
  }
  .header .nav-link {
    color: var(--bs-white);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
  }
  .header .nav-link span {
    display: block;
  }
  .corpolate > .container .ph, .service > .container .ph {
    text-align: right;
  }
  .corpolate > .container .ph img, .service > .container .ph img {
    width: 70%;
  }
  .corpolate .tl-h2-02, .service .tl-h2-02 {
    top: 15px;
  }
  .header .navbar-toggler {
    padding: 1.25rem;
  }
  .header .small {
    display: inline;
  }
}
/*下層ページタイトル*/
.title-h2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--bs-white);
  font-weight: 700;
  line-height: 1.6;
  min-height: 190px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: center center;
  z-index: 1;
  padding-top: 5rem;
}
.title-h2.system {
  background-image: url(../images/system/bg_title-system.png);
}
.title-h2.quality {
  background-image: url(../images/quality/bg_title-quality.png);
}
.title-h2.corpolate {
  background-image: url(../images/corpolate/bg_title-corpolate.png);
}
.title-h2.factory {
  background-image: url(../images/factory/bg_title-factory.png);
}
.title-h2.contact {
  background-image: url(../images/contact/bg_title-contact.png);
}
.title-h2.product {
  background-image: url(../images/product/bg_title-product.png);
}
.title-h2.recruit {
  background-image: url(../images/recruit/bg_title-recruit.png);
}
.title-h2::before {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  min-height: 190px;
  width: 100%;
  left: 0;
  top: 0;
  content: "";
  z-index: -1;
}

.title-h3 {
  position: relative;
  margin-bottom: 0.2rem;
  padding: 1rem 0;
  border-bottom: 2px solid var(--bs-blue);
  font-size: 1.25rem;
  font-weight: 700;
}
.title-h3::before {
  position: absolute;
  content: "";
  width: 40%;
  left: 0;
  bottom: -0.13rem;
  border-bottom: 2px solid var(--bs-red);
}

.title-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bs-blue);
  font-family: "BIZ UDPGothic", sans-serif;
}

/*list*/
.num-circle li {
  list-style-type: decimal;
}
.num-circle li ul li {
  list-style-type: circle;
}

/*corpolate*/
.corpolate {
  /*news*/
}
.corpolate__box {
  --x-gradient: linear-gradient(90deg, var(--bs-blue) 0 135px, transparent 0 calc(100% - 135px), var(--bs-blue) calc(100% - 135px));
  --y-gradient: linear-gradient(var(--bs-blue) 0 135px, transparent 0 calc(100% - 135px), var(--bs-blue) calc(100% - 135px));
  margin: 5rem 7rem 7rem;
  padding: 3rem;
  background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  background-position: top, right, bottom, left;
  font-family: "Hiragino Mincho ProN";
  font-size: 1.15rem;
}
.corpolate__list {
  display: flex;
  border-bottom: 1px solid #efefef;
}
.corpolate__list dt {
  width: 140px;
  font-weight: 400;
  color: var(--bs-blue);
  font-weight: 700;
}
.corpolate__list dd {
  flex: 1;
}
.corpolate__list a {
  color: var(--bs-blue);
}
.corpolate__list a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .title-h2 {
    font-size: 1.2rem;
  }
  .corpolate__box {
    margin: 0;
    padding: 2rem;
  }
  .corpolate__list {
    flex-direction: column;
  }
  .corpolate__list dt {
    width: 100%;
  }
  .corpolate__list dd {
    flex: none;
    width: 100%;
  }
}
/*factory*/
.factory__ph {
  display: flex;
  padding-left: 0;
  justify-content: space-between;
}
.factory__ph li {
  list-style: none;
}
.factory .table-wrap {
  overflow-x: auto;
}
.factory .tbl01 {
  text-align: left;
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
.factory .tbl01 tr {
  border-bottom: solid 1px #efefef;
}
.factory .tbl01 th {
  padding: 1rem 1rem 1rem 0;
  width: 30%;
  font-weight: normal;
}
.factory .tbl01 td {
  margin-left: auto;
  padding: 1rem;
}
.factory .tbl01 td.item01 {
  width: 30%;
}
.factory .tbl01 td.item02 {
  width: 20%;
}

@media (max-width: 767.98px) {
  .factory dl {
    flex-direction: column;
  }
}
/*contact*/
.form dl {
  margin-bottom: 2rem;
}
.form dl dt {
  color: var(--bs-blue);
  margin-bottom: 0.75rem;
}
.form input[type=text], .form textarea {
  border: 1px solid #505050;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  width: 100%;
}
.form .file-button::file-selector-button {
  background-color: #e6f0ff;
  border: 1px solid #505050;
  border-radius: 0.5em;
  padding: 0.5rem 3rem;
  text-align: center;
}
.form .fileBtn {
  background-color: #e6f0ff;
  border: 1px solid #505050;
  border-radius: 0.5em;
  padding: 0.5rem 3rem;
  text-align: center;
  position: relative;
  width: 40%;
}
.form .fileBtn input[type=file] {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  cursor: pointer;
}
.form .btn {
  background-color: var(--bs-blue);
  border-radius: 5rem;
  padding: 1rem 5rem;
  color: var(--bs-white);
  font-weight: normal;
  font-size: 2rem;
}
.form .btn__re {
  background-color: var(--bs-white);
  border: 1px solid #505050;
  color: var(--bs-tertiary-color);
}
.form .btn__re2 {
  font-size: 1rem;
}
.form .btn:hover {
  opacity: 0.8;
}

@media (max-width: 767.98px) {
  .form .btn {
    width: 100%;
    font-size: 1.25rem;
    padding: 0.5rem 3rem;
    margin-top: 1rem;
    width: 100%;
  }
  .form .fileBtn {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  /*product*/
  .product__box {
    display: flex;
    flex-wrap: wrap;
  }
  .product__box .item {
    width: calc(33.3% - 13.3px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .product__box .item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .product__box {
    display: flex;
    flex-wrap: wrap;
  }
  .product__box .item {
    width: calc(20% - 32px);
    margin-right: 40px;
    margin-bottom: 40px;
  }
  .product__box .item:nth-child(5n) {
    margin-right: 0;
  }
}
.recruit__form .btn {
  background-color: #e6f0ff;
  border: 2px solid var(--bs-blue);
  border-radius: 5rem;
  padding: 1rem 5rem;
  color: var(--bs-blue);
  font-weight: normal;
  font-size: 2rem;
}
.recruit__form .btn__re {
  background-color: var(--bs-white);
  border: 1px solid #505050;
  color: var(--bs-tertiary-color);
}
.recruit__form .btn__re2 {
  font-size: 1rem;
}
.recruit__form .btn:hover {
  opacity: 0.5;
}
.recruit__form dl {
  margin-bottom: 2rem;
}
.recruit__form dl dt {
  color: var(--bs-blue);
  margin-bottom: 0.75rem;
}
.recruit__form dl dd.label label {
  margin: 0 1rem 0 0;
}
.recruit__form input[type=text], .recruit__form textarea, .recruit__form [type=date] {
  border: 1px solid #505050;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  width: 100%;
}
.recruit__form input[type=radio] {
  margin: 0 0.5rem 0 0;
}
.recruit__form .block::file-selector-button {
  display: block;
}

@media (max-width: 767.98px) {
  .recruit__form .btn {
    width: 100%;
    font-size: 1.25rem;
    padding: 0.5rem 3rem;
    margin-top: 1rem;
  }
}/*# sourceMappingURL=style.css.map */