@charset "utf-8";
/*====================================
共通
====================================*/
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "kinto-sans", 'Noto Sans JP', "Yu Gothic Medium", "游ゴシック Medium", 'YuGothic', "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #F0F0F0;
}

section h2 {
  font-size: 2.4rem;
}
a {
  text-decoration: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
#container {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

li {
  list-style: none;
}

main {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  color: #162096;
}

.section-titleEn {
  font-family: "brother-1816", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

.section-titleJp {
  padding-top: 14px;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

.fl-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

@media(max-width: 768px) {
  .lead-text::after {
    margin-left: 0;
  }
}

/*====================================
アニメーション
====================================*/

.box, .flipRightTrigger{
	opacity: 0;
}

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
  opacity: 0;
	transform: translateY(100px);
  }

  to {
  opacity: 1;
	transform: translateY(0);
  }
}

.flipRight {
  animation-name: flipRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@keyframes flipRightAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}

.flipLeft{
  animation-name:flipLeftAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  perspective-origin:left center;
  opacity:0;
}

@keyframes flipLeftAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}


/*====================================
LOADING
====================================*/

#loding {
  /*fixedで全面に固定*/
	position: fixed;
	z-index: 99999;
	width: 100%;
	height: 100%;
	background: #F0F0F0;
	text-align: center;
	color: #162096;
}

.loding_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin: 0;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 200px;
  height: auto;
}

.loding_logo img {
  width: 100%;
  height: 100%;
}


/*====================================
HEADER
====================================*/

header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  width: 100%;
  background-color: #F0F0F0;
  
  z-index: 100;
}

.g-nav {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2% 0 1.5%;
  overflow: hidden;
}

.g-nav-logo {
  width: 20%;
  overflow: hidden;
}

.g-nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-nav-inner {
  width: 50vw;
  max-width: 500px;
}

.g-nav-item a {
  color: #162096;
  letter-spacing: 0.03em;
}

.g-contact {
  width: 120px;
  height: 35px;
  padding: 0.5% 1%;
  text-align: center;
  background-color: #162096;
  border-radius: 100px;
}

.g-contact a {
  color: #FFF;
  line-height: 27px;
}

@media (max-width: 768px) {
  
  .g-nav {
    padding: 3% 1.5%;
  }
  
  .g-nav-inner {
    display: none;
  }
}

/*====SP NAVIGATION=====*/
#s-nav {
  position: fixed;
  z-index: 999;
  bottom: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #162096;
  transition: all 0.6s;
}
#s-nav.panelactive {
  bottom: 0;
}
#s-nav.panelactive #s-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#s-nav ul {
  position: absolute;
  z-index: 990;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#s-nav li {
  list-style: none;
  text-align: center;
}
#s-nav li a {
  display: block;
  padding: 10px;
  font-family: "brother-1816", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1em;
}
/*========= ボタンのためのCSS ===============*/
.openBtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.openBtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #162096;
  
  width: 45%;
}

.openBtn span:nth-of-type(1) {
  top: 8px;
}

.openBtn span:nth-of-type(2) {
  top: 16px;
}

.openBtn span:nth-of-type(3) {
  top: 24px;
}

.openBtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background-color: #F0F0F0;
}

.openBtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openBtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background-color: #F0F0F0;
}

@media(min-width: 768px) {
  .sp-menu {
    display: none;
  }
}

@media(max-width: 768px) {
  .openBtn {
    top: 20px;
  }
}

/*====================================
TOP
====================================*/

.top-image {
  padding-top: 13vh;
  padding-bottom: 5vh;
}

.top-image-wrap {
  position: relative;
  width: 80vw;
  max-width: 1400px;
  height: 60vh;
  margin: 0 auto;
  overflow: hidden;
}

.top-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-image-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 18vw;
  margin-left: auto;
}

.top-image-message h2 {
  color: #fff;
  font-size: 3.3rem;
  line-height: 2;
}

@media(max-width: 768px) {
  
  .top-image {
    padding-top: 0;
  }
  
  .top-image-wrap {
    height: 35vh;
  }
  
  .top-image-message {
    width: 100vw;
  }
  
  .top-image-message h2 {
    font-size: 2.6rem;
    line-height: 1.5;
    text-align: left;
    padding-left: 5vw;
  }
}

/*====================================
FEATURE
====================================*/
.feature {
  padding-top: 5%;
  margin-bottom: 10%;
}

.feature-contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 5%;
}

.feature-img {
  width: 45%;
  height: 450px;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  width: 45%;
}

.feature-list-item {
  margin-bottom: 7%;
  text-align: left;
}

.feature-list-item:last-child {
  margin-bottom: 0px;
}

.feature-item-num {
  font-family: "brother-1816", sans-serif;
  color: #162096;
  font-size: 1.5rem;
  font-weight: 400;
}

.feature-item-text {
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/*====================================
MACHINE
====================================*/

.machine {
  padding-top: 5%;
  margin-bottom: 5%;
}

.machine-inner {
  padding-top: 3%;
}


/*====================================
COMPANY
====================================*/

.company {
  margin-bottom: 10%;
  padding-top: 5%;
}

.company-outline-detail {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 5%;
  text-align: left;
}

.company-outline-detail p {
  padding-top: 14px;
}

.company-outline-detail dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

.company-outline-detail dt {
  flex-basis: 30%;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  font-size: 1.6rem;
  font-weight: 600;
}

.company-outline-detail dd {
  flex-basis: 70%;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.company-img {
  width: 80%;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 3%;
  overflow: hidden;
}

.company-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media(max-width: 768px) {
  
  .company-outline-detail {
    padding-top: 5vh;
  }
  
  .company-outline-detail dl {
    flex-flow: column;
  }
  
  .company-outline-detail dt {
    border-bottom: none;
  }

}

/*====================================
FOOTER
====================================*/

.footer {
  padding: 2% 2% 0.5%;
  background-color: #1C1D2E;
}

.f-company-title {
  width: 30%;
}

.f-logo {
  width: 100%;
  max-width: 300px;
  overflow: hidden;
}

.f-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-company-title p {
  padding-top: 1%;
  color: #FFF;
  font-size: 2rem;
  text-align: left;
  letter-spacing: 0.1em;
}

.f-nav {
  width: 60%;
  padding-top: 5%;
  margin-bottom: 5%;
}

.f-nav ul {
  justify-content: flex-end;
}

.f-nav ul li {
  margin-left: 5%;
}

.f-nav ul li a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.footer-bottom {
  margin-bottom: 5%;
}

.footer-sns {
  display: flex;
  justify-content: center;
  width: 40vw;
  margin: auto;
  margin-bottom: 5%;
}

.sns-follow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40vw;
  margin: auto;
  color: #fff;
  font-size: 1.2rem;
}

.sns-follow::before, .sns-follow::after {
  content: '';
  width: 40%;
  height: 1px;
  background-color: #fff;
}

.sns-follow::before {
  margin-right: 14px;
}

.sns-follow::after {
  margin-left: 14px;
}

.footer-sns-inner {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10% 0;
  border-bottom: 1px solid #fff;
}

.footer-sns-inner .fa-brands {
  color: #fff;
  font-size: 2.2rem;
}

.footer-sns li {
  margin: 0 2rem;
}

.footer-logo {
  width: 20vw;
  height: auto;
  margin: auto;
  overflow: hidden;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reTopBtn-container {
  width: 10%;
  margin-right: 0;
  margin-left: auto;
}

.reTopBtn {
  display: inline-block;
}

.reTopBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #ECECEC;
  border-radius: 50vh;
  transition: 0.3s;
}

.reTopBtn a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.3s;
}
.reTopBtn span {
  width: 0px;
  height: 0px;
  visibility: hidden;
}

.reTopBtn a:hover {
  background-color: #fff;
  opacity: .7;
}

.reTopBtn a:hover::after {
  border-top: 2px solid #BF9D80;
  border-left: 2px solid #BF9D80;
}

#page-top {
	position: fixed;
	right: 10px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}


#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

.footer-copy {
  color: #999;
  font-size: 1.1rem;
}

@media(max-width: 768px) {
  
  .f-nav {
    width: 70vw;
    paddin-top: 10%;
    margin: 0 auto;
    margin-bottom: 10%;
  }
  
  .f-nav ul {
    
  }
  
  .f-nav ul li {
    display: block;
    maragin: 0;
    padding: 20px 0;
    text-align: left;
  }
  
  .f-nav ul li a {
    font-size: 1.4rem;
    font-weight: 600;
  }
  
  .footer-sns {
    width: 70vw;
    margin-bottom: 10%;
  }
  
  .sns-follow {
    width: 70vw;
  }
  
  .sns-follow::before, .sns-follow::after {
    width: 30%;
  }
  
  .footer-sns-inner .fa-brands {
    font-size: 1.8rem;
  }
  
  .footer-logo {
    width: 20vw;
  }
  
  .footer-copy {
    font-size: 0.8rem;
  }
}

/*====================================
CONTACT-AREA
====================================*/

.contact-area {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10% 0;
}








