@charset "UTF-8";
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1020px) {
  .is-sp {
    display: none;
  }
}

body {
  width: 100%;
  font-size: 15px;
  color: #333;
  font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  line-height: 1.6875;
  background-color: #fff;
  counter-reset: number 0;
}

.wrap {
  overflow: hidden;
}

.util-title {
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 10px 0px;
  letter-spacing: 0.1em;
  color: #354359;
  position: relative;
}

@media screen and (max-width: 767px) {
  .util-title {
    font-size: 25px;
  }
}

.util-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background-color: #354359;
  border-radius: 7px;
}

.inner {
  height: 100%;
  padding: 30px 0;
}

.inner:nth-child(8) {
  padding: 0px;
}

.intro {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #354359;
  letter-spacing: 0.15em;
  padding: 10px 0;
}

.intro-text {
  text-align: center;
  line-height: 1.8;
}

p {
  font-family: "Klee One", cursive;
}

h1, h2, h3 {
  font-family: "Julius Sans One", sans-serif;
  font-weight: bold;
  color: #354359;
}

.link-more {
  border: 1px solid #fff;
  width: 130px;
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 30px;
  font-family: serif;
  cursor: pointer;
}

.link-more:hover {
  color: #354359;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.link-more::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.4em;
  /* arrow size */
  height: 0.4em;
  /* arrow size */
  border-top: 1px solid #fff;
  /* thickness, color */
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.link-more-black {
  border: 1px solid #808080;
  width: 90px;
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 30px;
  font-family: serif;
  font-size: 13px;
  cursor: pointer;
}

.link-more-black:hover {
  color: #fff;
  background-color: black;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.link-more-black::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.4em;
  /* arrow size */
  height: 0.4em;
  /* arrow size */
  border-top: 1px solid black;
  /* thickness, color */
  border-right: 1px solid black;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#g-nav-list {
  line-height: 5;
  font-size: 20px;
}

#g-nav-list li {
  margin: 48px;
}

.g-nav-list__text {
  line-height: 1;
}

.g-nav-list__sub-text {
  font-size: 15px;
  line-height: 1.3;
}

.top-box {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top-box {
    height: 400px;
  }
}

.top-img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 2.0s;
  transition: all 2.0s;
  -webkit-animation: animationZoom1 20s ease-in-out infinite;
          animation: animationZoom1 20s ease-in-out infinite;
}

@media screen and (min-width: 768px) and (max-width: 1020px) {
  .top-img {
    height: 100%;
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .top-img {
    height: 100%;
    width: auto;
  }
}

@-webkit-keyframes animationZoom1 {
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes animationZoom1 {
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.top-box__text {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 35%;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .top-box__text {
    left: 50%;
    font-size: 20px;
  }
}

.current-img {
  opacity: 1;
  z-index: 20;
}

.highlight-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .highlight-list {
    display: block;
  }
}

.highlight-inner {
  margin: 20px 0;
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .highlight-inner {
    padding-bottom: 20px;
  }
}

.highlight-box__inner {
  height: 250px;
  margin: 0 20px;
}

.highlight-box {
  position: relative;
}

@media screen and (max-width: 767px) {
  .highlight-box {
    margin-bottom: 80px;
  }
}

.highlight-box__content {
  background-color: #fff;
  padding: 0 20px;
  width: 75%;
}

.highlight-box__inner-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.highlight-box__content {
  position: absolute;
  left: 40px;
  top: 70%;
}

.highlight-box__title {
  font-size: 18px;
}

.highlight-box__description {
  font-size: 14px;
  line-height: 1.3;
}

.highlight-box__more {
  padding: 3px 0;
  margin-top: 10px;
}

.about-inner {
  position: relative;
  padding: 20px 0px;
}

.about-inner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-inner__content-img__box {
  width: 70%;
  margin-left: 230px;
}

@media screen and (max-width: 767px) {
  .about-inner__content-img__box {
    width: 95%;
    margin: 0 auto;
  }
}

.about-inner__content-img {
  width: 60%;
  left: 5%;
  top: 20%;
  height: 500px;
  width: 900px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

@media screen and (max-width: 767px) {
  .about-inner__content-img {
    width: 100%;
    height: 100%;
  }
}

.about-inner__content__box {
  position: absolute;
  height: 500px;
  top: 23%;
  left: 5%;
  padding: 30px;
}

.about-inner__content-text__box {
  max-width: 700px;
  padding: 50px;
  background-color: black;
  display: block;
  z-index: 888;
  opacity: 0.9;
  height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 767px) {
  .about-inner__content-text__box {
    padding: 30px;
  }
}

.about-inner__content-text__title {
  position: relative;
  top: 0%;
  font-size: 20px;
  color: #fff;
  z-index: 999;
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .about-inner__content-text__title {
    font-size: 16px;
  }
}

.about-inner__content-text__text {
  padding: 0 0 30px 0;
}

.about-inner__content-text__text,
.about-inner__content-text__link {
  position: relative;
  top: 10%;
  font-size: 17px;
  color: #fff;
  z-index: 999;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .about-inner__content-text__text,
  .about-inner__content-text__link {
    font-size: 14px;
  }
}

.product {
  padding: 190px 0;
}

@media screen and (max-width: 767px) {
  .product {
    padding-top: 300px;
    padding-bottom: 100px;
  }
}

.product-inner {
  margin: 20px 0;
}

.product-inner__text-box {
  padding: 25px 160px;
}

@media screen and (max-width: 767px) {
  .product-inner__text-box {
    padding: 2px 16px;
  }
}

.product-inner__text__link {
  width: 100px;
}

.product-inner__text__link-box {
  text-align: center;
  margin-top: 30px;
}

.company-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 600px;
}

@media screen and (max-width: 767px) {
  .company-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .company__box {
    margin-bottom: 10px;
  }
}

.company__box-back {
  background-image: url(/img/company1.jpg);
  height: 350px;
  width: 450px;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .company__box-back {
    width: 100%;
  }
}

.company__box-front {
  background-color: black;
  opacity: 0.9;
  height: 300px;
  width: 350px;
  position: relative;
  left: -20%;
  top: 15%;
}

@media screen and (max-width: 767px) {
  .company__box-front {
    left: 5%;
  }
}

@media screen and (max-width: 767px) {
  .showroom__box {
    margin-top: 80px;
  }
}

.showroom__box-back {
  background-image: url(/img/company2.jpg);
  height: 350px;
  width: 450px;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .showroom__box-back {
    width: 100%;
  }
}

.showroom__box-front {
  background-color: black;
  opacity: 0.9;
  height: 300px;
  width: 350px;
  position: relative;
  left: -20%;
  top: 15%;
}

@media screen and (max-width: 767px) {
  .showroom__box-front {
    left: 5%;
  }
}

.company__box-text__box,
.company__box-text__box {
  color: #fff;
  padding: 20px;
}

.company__box-text__box-text {
  padding: 30px 0;
}

#news {
  padding-top: 200px;
}

.news-inner {
  padding-bottom: 100px;
}

.news-list {
  padding: 0 120px;
}

@media screen and (max-width: 767px) {
  .news-list {
    padding: 0 10px;
  }
}

.news-list__item {
  border-bottom: 1px solid #e8e8e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 25px;
}

@media screen and (max-width: 767px) {
  .news-list__item {
    padding: 10px;
  }
}

.news-link p {
  display: inline;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .news-link p {
    display: block;
    padding: 0;
  }
}

.blog-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .blog-inner {
    display: block;
    padding: 0 0 100px 0;
  }
}

.customer-box__inner {
  background-image: url(/img/blog2.jpg);
  background-position: center;
  width: 450px;
  height: 300px;
  margin-right: 20px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.customer-box__inner:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

@media screen and (max-width: 767px) {
  .customer-box__inner {
    width: 100%;
    height: 200px;
  }
}

@media screen and (max-width: 767px) {
  .customer-box {
    padding: 10px;
  }
}

.customer__box-title, .blog__box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {
  .customer__box-title, .blog__box-title {
    text-align: center;
    font-size: 30px;
  }
}

.blog-box__inner {
  background-image: url(/img/blog1.jpg);
  background-position: center;
  width: 450px;
  height: 300px;
  margin-left: 20px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.blog-box__inner:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

@media screen and (max-width: 767px) {
  .blog-box__inner {
    width: 100%;
    margin-left: 0px;
    height: 200px;
  }
}

@media screen and (max-width: 767px) {
  .blog-box {
    padding: 10px;
  }
}

.contact-box {
  background-image: url(/img/top5.jpg);
  height: 300px;
  width: 100%;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .contact-box {
    height: 200px;
  }
}

.contact-box__icon-text {
  padding: 30px;
  border: 1px solid #fff;
  width: 300px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: #fff;
  font-size: 23px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .contact-box__icon-text {
    padding: 20px;
  }
}

.contact-btn:hover {
  background-color: #f5f5f5;
  color: #000;
  border: 1px solid #000;
  -webkit-transition: .5s;
  transition: .5s;
}

.footer {
  background-color: #c0c0c0;
}

.footer-sns-list {
  text-align: center;
  display: block;
  font-size: 30px;
}

.footer-sns-item-link {
  margin: 0 10px;
}

.footer-copyright {
  text-align: center;
  font-size: 19px;
  padding: 2px;
}

.footer__sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .footer__sitemap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sitemap__category {
  padding: 20px 20px;
}

.sitemap__category:first-child {
  width: 180px;
}

@media screen and (max-width: 767px) {
  .sitemap__category:first-child {
    width: 100%;
  }
}

.sitemap-items__text {
  position: relative;
  display: inline-block;
  padding-left: 5px;
}

.sitemap-items__text:before {
  content: '-';
  padding: 0 3px;
}

.js_cat {
  position: relative;
}

.js_cat:hover .sitemap__heading:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: .2s;
  transition: .2s;
}

@media screen and (max-width: 767px) {
  .js_cat:hover ul li {
    overflow: visible;
    height: 40px;
    background-color: #fff;
  }
  .js_cat:hover ul li:hover {
    background: #ffd999;
    -webkit-transition: .5s;
    transition: .5s;
  }
}

.sitemap__heading {
  padding: 5px 0;
  margin: 5px;
}

@media screen and (max-width: 767px) {
  .sitemap__heading {
    display: block;
    margin: 8px 0px;
    padding: 13px 15px;
    font-size: 14px;
    line-height: 1;
    background: #696969;
    color: #ffffff;
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .sitemap__heading:after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 40%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #FFFFFF transparent transparent transparent;
  }
}

.sitemap-list {
  position: absolute;
  width: 100%;
  z-index: 9999;
  top: 100%;
  left: 0;
}

.sitemap-items__text {
  vertical-align: -webkit-baseline-middle;
}

@media screen and (max-width: 767px) {
  .sitemap-items {
    overflow: hidden;
    height: 0;
    -webkit-transition: .2s;
    transition: .2s;
  }
}
/*# sourceMappingURL=style.css.map */