@charset "utf-8";
/* CSS Document */
body {
  font-family: 'Noto Sans JP', sans-serif;
}
section {
  overflow: hidden;
}
img {
  width: 100%;
}
.bg_white {
  background: #FFFFFF;
}
.bg_line {
  position: relative;
}
.bg_line::before {
  content: "";
  display: block;
  background: url("../images/bg_line.svg") repeat-y center;
  background-size: contain;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.cont_1024 {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .cont_1024 {
    max-width: calc(100% - 30px);
    padding: 0 15px;
  }
}
.cont_flex {
  display: flex;
}
.cont_flex_center {
  display: flex;
  align-items: center;
  ;
  justify-content: center;
}
.cont_flex_between {
  display: flex;
  align-items: center;
  ;
  justify-content: space-between;
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}
/*
============================================================ */
/* main
============================================================ */
.main {
  margin-bottom: 100px;
  position: relative;
}
  .main {
    background: url("../images/KV_pc@2x.png") no-repeat center bottom;
    background-size: cover;
    height: 100vh;
  }
.main::before {
  content: "";
  display: block;
  border: 2px solid #fff;
  height: calc(100% - 44px);
  width: calc(100% - 44px);
  position: absolute;
  top: 20px;
  left: 20px;
}

.main_logo {
display: block;
  justify-content: center;
  position: absolute;
  top: 30vh;
  left: 0;
  right: 0;
  margin: auto;
}
.main_logo {
  animation-name: fadein;
  animation-duration: 3s; /*ライジング時間*/
}
h1{ 
  color: #fff;
  font-size: 28px;
  line-height: 43px;
  text-align: center;
  text-shadow:2px 0px 5px #bddffb;
  margin: 0 0 15px;
}
.main_logo img{
    width: 165px;
      position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1300px) {
  h1{
    font-size: 26px;
    line-height: 40px;
  }
  .main_logo img{
    width: 13vw;
  }
}
@media screen and (max-width: 1024px) {
.main_logo img {
    width: 20vw;
}
}
@media screen and (max-width: 768px) {
  .main {
    background: url("../images/KV_sp@2x.png") no-repeat center bottom;
    background-size: cover;
    height: 85vh;
    margin-bottom: 15px;
  }

  .main_logo {
    top: 10vh;
  } 
  h1{ 
  font-size: 25px;
  line-height: 38px;
}
    .main_logo img{
    width: 165px;
  }
}
.main_scroll .scroll_arrow {
  background: url("../images/scroll_arrow.svg") no-repeat center;
  background-size: contain;
  height: 95px;
  width: 22px;
  margin: 0 auto;
}
.main .main_scroll {
  display: block;
}
.main_scroll {
  animation-duration: .66s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-name: scrolllink;
}
@keyframes scrolllink {
  0% {
    bottom: 0
  }
  to {
    bottom: 8px
  }
}
.main_scroll {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 500;
  display: none;
}
.main_scroll p {
  color: #fff;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {

}
/* business
============================================================ */
.business {
  padding: 90px 0 100px;
  position: relative;
}
.business .bg_white {
  padding-top: 50px;
  padding-bottom: 30px;
}
.business_ttl_mark {
  width: 239px;
  position: absolute;
  left: 0;
  right: 180px;
  margin: auto;
  top: 0;
}
.business_ttl {
  max-width: 317px;
  width: 100%;
  margin: 0 auto 20px;
  position: relative;
}
.business_ttl_txt {
  text-align: center;
  margin-bottom: 40px;
}
.business_ttl_txt p {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.5em;
  line-height: 32px;
  margin: 0;
}
.business_img {
  max-width: calc(100% / 3);
  position: relative;
}
.business_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  height: 98px;
  max-width: 80%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.business_img p {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 3.12px;
  margin: 0;
}
@media screen and (max-width: 1300px) {
  .business_txt {
    height: 6vw;
  }
  .business_img p {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  .business_ttl_mark {
    top: 25px;
  }
  .business .cont_flex_between {
    display: block;
  }
  .business_img {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .business_txt {
    height: 50px;
  }
  .business_img p {
    font-size: 15px;
  }
}
/* products
============================================================ */
.products {
  padding: 100px 0 100px;
  position: relative;
}
.products .bg_white {
  padding-top: 50px;
  padding-bottom: 30px;
}
.products_ttl_mark {
  width: 209px;
  position: absolute;
  left: 80px;
  right: 0;
  margin: auto;
  top: 0;
}
.products_ttl {
  max-width: 230px;
  width: 100%;
  margin: 0 auto 20px;
  position: relative;
}
.products_ttl_txt {
  text-align: center;
  margin-bottom: 40px;
}
.products_ttl_txt p {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.5em;
  line-height: 32px;
  margin: 0;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.gallery_img {
  max-width: calc((100% - 60px) / 4);
  width: 100%;
  margin: 0 20px 20px 0;
  position: relative;
}
.gallery_img:nth-of-type(4n) {
  margin-right: 0;
}
.gallery_img p {
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 3.6px;
  padding: 10px;
  margin: 0;
  width: calc(100% - 20px);
  min-height:40px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.gallery_img p.img_cnt{
  display: none;
}
@media screen and (max-width: 768px) {
  .products {
    padding: 100px 0 50px;
  }
  .slider-wrapper {
    overflow: hidden;
    position: relative;
  }
  .cont_1024 {
    max-width: inherit;
  }
  .gallery {
    display: block;
    padding: 0;
  }
 .gallery_img  p.img_cnt{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
   width: 70px;
   height: 35px;
   padding: 0;
   text-align: center;
    position: absolute;
    top: 0;
right: 10px;
    left: inherit;
  }
  .gallery_img {
    margin: 0;
/*    max-width: inherit;
    width: 70vw !important;
    margin: 0;
    float: left;*/
  }
  .gallery_img:nth-of-type(4n) {
    margin-right: 0;
  }
  .gallery_img a {
    display: block;
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  .gallery_img p {
    width: calc(100% - 40px);
    left: 10px;
  }
}
/* csr
============================================================ */
.csr {
  padding: 200px 0 235px;
  position: relative;
}
.csr .bg_white {
  padding-top: 50px;
}
.csr_ttl {
  max-width: 82px;
  width: 100%;
  margin: 0 auto 20px;
  position: relative;
}
.csr_ttl_mark {
  width: 226px;
  position: absolute;
  left: 80px;
  right: 0;
  margin: auto;
  top: 0;
}
.csr_ttl_txt {
  text-align: center;
  margin-bottom: 40px;
}
.csr_ttl_txt p {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.5em;
  line-height: 32px;
  margin: 0;
}
.csr dl {
  margin: 0 0 50px 0;
}
.csr dl dt {
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  border: 1px solid #707070;
  padding: 22px 48px;
}
.csr dl dd {
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .csr {
    padding: 150px 0 200px;
  }
  .csr dl dt {
    padding: 22px 25px;
  }
  .csr dl dd {
    margin-left: 15px;
  }
}
/* company
============================================================ */
.company {
  background: url("../images/company_bg_pc@2x.png") no-repeat center;
  background-size: cover;
  padding: 130px 0 60px;
  margin-top: -70px;
}
.company_ttl {
  max-width: 334px;
  width: 100%;
  margin: 0 auto 20px;
}
.company dl {
  border-bottom: 1px solid #707070;
  display: flex;
  padding: 7px 0;
  margin: 0;
}
.company_ttl_txt {
  text-align: center;
  margin-bottom: 55px;
}
.company_ttl_txt p {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.5em;
  line-height: 32px;
  margin: 0;
}
.company dl:last-of-type {
  border-bottom: none;
}
.company dl dt {
  font-size: 15px;
  line-height: 25px;
  width: 220px;
}
.company dl dd {
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
  margin-left: 0;
  width: calc(100% - 220px);
}
@media screen and (max-width: 768px) {
  .company {
    background: url("../images/company_bg_sp@2x.png") no-repeat center;
    padding: 60px 0 60px;
    margin-top: -20px;
  }
  .company .cont_1024 {
    max-width: 100%;
    padding: 0;
  }
  .company dl {
    display: block;
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
  .company dl dt {
    text-align: left;
    width: 100%;
  }
  .company dl dd {
    text-align: left;
    width: 100%;
  }
}
/* factory
============================================================ */
.factory {
  padding-top: 180px;
}
.factory_col {
  width: 50%;
}
.factory_add {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 50px;
}
.factory_col + .factory_col .factory_add {
  justify-content: flex-end;
}
.factory_add p {
  font-size: 15px;
  line-height: 20px;
  margin: 0;
}
.factory_ttl {}
.factory_ttl p {
  font-size: 20px;
  line-height: 27px;
  margin: 0;
  padding-right: 30px;
}
.factory_ttl + div {
  border-left: 1px solid #707070;
  padding-left: 20px;
}
.factory_img {}
.factory_img + .factory_img {
  margin-left: -4vw;
}
@media screen and (max-width: 768px) {
  .factory {
    padding-top: 50px;
  }
  .factory .cont_1024.cont_flex_between {
    display: block;
    padding: 0;
  }
  .factory_col {
    width: 100%;
  }
  .factory_add {
    display: block;
    justify-content: center;
    width: 90%;
    margin: 0 auto 30px;
  }
  .factory_col + .factory_col .factory_add {
    justify-content: center;
    margin-top: 50px;
  }
  .factory_ttl + div {
    border-top: 1px solid #707070;
    border-left: none;
    padding-left: 0;
    padding-top: 10px;
  }
  .factory_ttl p {
    padding-right: 0;
    margin-bottom: 10px;
  }
}
/*
============================================================ */
/* footer
============================================================ */
.footer_logo {
  display: flex;
  justify-content: center;
  padding: 125px 0;
}
.footer_logo img {
  max-width: 356px;
  width: 100%;
}
footer {
  background: #000000;
  text-align: center;
  padding: 14px 15px;
}
footer small {
  color: #FFFFFF;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .footer_logo {
    padding: 70px 0;
  }
  .footer_logo img {
    max-width: 65%;
  }
}
/*
============================================================ */
/* pagetop
============================================================ */
.pagetop_wrap {
  position: relative;
  width: 100%;
  z-index: 200;
}
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  text-decoration: none;
  width: 90px;
  height: 90px;
  box-sizing: border-box;
  overflow: hidden;
}
.pagetop:link {}
.pagetop:link:hover {
  opacity: .8;
  text-decoration: none;
}
.pagetop:after {
  content: "";
  background: url("../images/pagetop.svg") no-repeat;
  background-size: contain;
  height: 90px;
  width: 90px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .pagetop_wrap {
    display: none;
  }
}