html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
    font-family: 'Noto Serif JP', serif;
    overflow-x: hidden;
    height: 100%;
}
.container {
    width: 100%;
    margin: 0 auto;
}


#header {
  background:#fff;
    box-shadow: 0 2px 8px rgba(30,30,80,.3);
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    padding:1rem;
    z-index: 100;
    height: 100px;
}


.logo img {
    margin-left: 30px;
}

#header .active {
    background-color: aqua;
}

#hmb {
    width: 40px;
    height: 26px;
    cursor: pointer;
    position: relative;
    padding-right: 80px;
    z-index: 30;
}
#hmb span {
    width: 32px;
    height: 3px;
    display: block;
    background-color: #000000;
    border-radius: 2px;
    position: absolute;
    transition: .2s;
}
#hmb span:first-child {top: 0;}
#hmb span:nth-child(2) {top: 12px;}
#hmb span:last-child {top: 24px;}
nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: aliceblue;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition-property: all;
    transition-duration: .2s;
}
nav ul li a {
    display: block;
    line-height: 80px;
    font-size: 20px;
    text-align: left;
    border-bottom: 1px solid #646566;
}

.active #hmb span:first-child{
    top: 12px;
    transform: rotate(45deg);
}
.active #hmb span:nth-child(2) {
    opacity: 0;
} 
.active #hmb span:last-child {
    top: 12px;
    transform: rotate(-45deg);
}
.active nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}
.active::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgb(0, 0, 0);
    width: 100vw;
    height: 100vh;
    opacity: 0.4;
    z-index: 10;
}

@media screen and (max-width: 768px) {
  .logo img {
       width: 50px;
       height: 50px;
     }
  nav {
    width: 60%;
     }
  nav ul li a {
    font-size: 15px;
    line-height: 60px;
     }
  
     #header {
      height: 75px;
     }    
  
    }
.hero {
 background-image: url(../imgs/hero.png);
 background-position: center;
 background-size: cover;
 height: 740px;
 display: flex;
 align-items: center;
 margin-bottom: 40px;
 clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
 z-index: 1;
 }
.hero_inner {
  padding-top: 50px;
  z-index: 2;
  width: 100%;
  color: #ffffff;
  
}

.hero_inner p {
  font-size: 25px;
  font-weight: 250;
  margin-bottom: 8px;
  margin-left: 35px;
  text-shadow: -5px 4px 5px #3d3d3d;
}

.hero_inner h1 {
  font-size: 70px;
  font-weight: bold;
  margin-left: 20px;
  text-shadow: -5px 4px 5px #3d3d3d;
}

@media screen and (max-width: 480px) {
 .hero {
  height: 560px;
 }
 .hero_inner {
  padding-top: 20px;
 }
 .hero_inner p {
  font-size: 15px;
  margin-bottom: px;
  margin-left: 10px;
 }
 .hero_inner h1 {
  font-size: 35px;
  margin-left: 5px;
 }
}

.scroll {
  bottom: 130px;
  position: relative;
  text-align: center;
}
.scroll span {
  font-size: 40px;
  animation: scroll 2s infinite;
  position: relative;
  bottom: 30px;
  color: #494949;  
}

.scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 3px solid #646566;
  border-left: 3px solid #646566;
  content: "";
  height: 40px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}
 

 
@media screen and (min-width: 769px) and (max-width: 1280px) {
 
  .scroll {
    bottom: 50px;
  }
  .scroll span {
    font-size: 35px;
}
.scroll::before {
  border-bottom: 2px solid #646566;
  border-left: 2px solid #646566;
  height: 30px;
  width: 30px;
}
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .scroll {
    bottom: 50px;
  }

  .scroll span {
    font-size: 20px;
    bottom: 15px;
    color: #333;
  }
  .scroll::before {
    border-bottom: 2px solid #646566;
    border-left: 2px solid #646566;
    height: 20px;
    width: 20px;

  }
  
}
@media screen and (max-width: 480px) {
  

.scroll span {
  font-size: 25px;
  bottom: 15px;
  color: #333;
}
.scroll::before {
  border-bottom: 2px solid #646566;
  border-left: 2px solid #646566;
  height: 13px;
  width: 13px;

}
}


.vision .container {
    position: relative;
    margin-bottom: 100px;
    text-align: center;
    padding-bottom: 100px;
}



.vision .icon {
  position: absolute;
  left: 10%;
  transform: rotate(-13deg);
  opacity: 0.1;
  zoom: 1.7;
  
}
.vision .text {
    font-size: 30px;
    font-weight: 700px;
    line-height: 1.5;
    padding-top: 30px;
}

.vision .homeicon {
  position: absolute;
  right: 10%;
  padding-top: 10px;
  zoom:1.2;
  opacity: 0.8;
  z-index: 2;
}

.contact-button {
  position: relative;
	text-decoration: none;
	display: inline-block;
    background: transparent;
	border-radius: 25px;
	border: solid 1.5px #fff;
    outline: none;
   bottom: -45px;
   transition: all 0.2s ease;
   z-index: 3;
}
.contact-button:hover {
  border-color:transparent;	
}
.contact-button span {
  font-size: 25px;
  position: relative;
	z-index: 2;
	display: block;
  padding: 10px 30px;
	background:#6baaeb;
	border-radius: 25px;
	color:#fff;
  transition: all 0.3s ease;
}
.contact-button:before {
  content:"";
  position: absolute;
z-index: -1;
  top:4px;
  left:0;
  width: 100%;
  height: 100%;
border-radius: 25px;
  background-color: #333;
  opacity: 0.7;
}
.contact-button:hover span {
	background-color: #0e61b5;
	color: #fff;
	transform: translateY(4px);
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .vision .container{
    margin-top: 50px;
  }
  .vision .text {
   font-size: 27px;
   padding-top: 20px;
  }
  .vision .homeicon {
    zoom: 1.1;
    overflow: hidden;
  }
  .vision .icon {
    left: 2%;
    zoom: 1.4;
    top: 25%;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .vision .container {
    margin-top: 50px;
   margin-bottom: 120px;
  }

  .vision .text {
    font-size: 18px;
    padding-top: 70px;
  }
  .contact-button span {
    font-size: 15px;
  }
  .vision .icon {
    zoom: 1.2;
    left: 4%;
    width: 200px;
    top: 10%;
  }
  .vision .homeicon {
    zoom: 1.1;
    width: 150px;
    right: 6%;
  }
}
@media screen and (max-width: 480px) {
  .vision .container {
    margin-bottom: 40px;
  }
  .vision .text {
    font-size: 14px;
  } 
  .contact-button span {
    font-size: 13px;
  }
  .vision .icon {
    zoom: 0;
    top: 0;
    width: 180px;
    left: 3%;
    
  }
  .vision .homeicon {
    zoom: 0;
    width: 120px;
  }

}
.business {
    padding: 200px 15px 40px;
    background-color: #f5f7f9;
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
    
    

}

.business .heading {
    color: #333;
    font-size: 45px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 5%;
    padding-top: 50px ;
}


.business .row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 60px;
 
}

.business .col {
  width: 80%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  border: solid #6baaeb 2px;
  box-shadow: 0 2px 8px rgba(30,30,80,.3);
}

.col .title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  border-bottom: solid #6baaeb 2px;
  cursor: pointer;
  padding: 30px 0;
}

h2 {
  font-size: 25px;
  font-weight: 100;
  line-height: 1.5;
  padding: 40px;
}

h3 {
  font-size: 25px;
  font-weight: 100;
  line-height: 1.5;
  padding: 60px 40px;
}

.business .signature {
  width: 25%;
 transform: translateY(60px);
}

.business .meritpic {
  display: block;
  padding: 0 20px;
  padding-bottom: 100px;
}
h4 {
  font-size: 25px;
  font-weight: 100;
  line-height: 1.5;
  padding: 60px 40px;
}

.business .kaitoripic {
  display: block;
}
h5 {
  font-size: 25px;
  font-weight: 100;
  line-height: 1.5;
  padding: 60px 40px;
}


ul{
  margin:0;
  padding: 0;
  list-style: none;
}
.slider .slick-slide {
  transform: scale(0.8);
  transition: all .5s;
  opacity: 0.5;
}

.slider .slick-slide.slick-center{
  transform: scale(1);
  opacity: 1;
}
.slick-prev, 
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 3px solid #000000;
    border-right: 3px solid #000000;
    height: 15px;
    width: 15px;
}

.slick-prev {
   left: 1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right: 1.5%;
    transform: rotate(45deg);
}

.slick-dots {
    text-align:center;
  margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;
    height:8px;
    display:block;
    border-radius:50%;
    background:#ccc;
}

.slick-dots .slick-active button{
    background:#333;
}
a:hover,
a:active{
  text-decoration: none;
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .business .row {
    gap: 40px;
  }
  .business .col {
    width: 100%;  
  }
}

@media screen and (max-width: 768px) {
  .business {
    padding:100px 0 40px;
    background-color: #f5f7f9;
}

.business .heading {
    font-size: 24px;
    margin-bottom: 10%;
}

h2 {
    font-size: 15px;
    padding: 28px;
}

.business .row {
  flex-wrap: wrap;
  gap: 30px;
}

.business .col {
  margin: 0 4%;
  width: 100%;
  
}
.row .title {
  font-size: 20px;
  padding: 23px 0;

}
h3 {
  font-size: 15px;
  padding: 28px;

}
.business .signature {
  width: 40%;
  transform: translateY(30px);
}

.business .meritpic {
  padding-bottom: 40px;
}
h4 {
  font-size: 15px;
  padding: 28px;
}

h5 {
  font-size: 15px;
  padding: 28px;
}

}
.pic1 {
  margin-top: 20px;
}


.company {
  text-align: center;
 
}
.company .heading {
  padding-top: 150px;
  font-size: 55px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}

.company table {
	font-size: 20px;
	margin: 60px auto;

}
th,td {
	padding: 20px;
  font-family: 'Noto Serif JP', serif;
	font-weight: normal;
	text-align: left;
	border-bottom: 1px solid #646566;
}
td span {
	font-size: 90%;
}

@media screen and (max-width: 767px) {
  .company .container {
    width: 350px; 
  }
  th,td {
    font-size: 11px;
    padding: 15px
  }
  .company .heading {
    font-size: 30px;  
    padding-top: 90px;

  }
  .company h1{
    font-size: 15px;
  }
  .company table {
    margin: 40px auto;
  }
}
@media screen and (max-width: 480px) {
  .row .title {
    font-size: 20px;
  }
  h3 {
    font-size: 14px;
  }
  h4 {
    font-size: 14px;
  }
  h5 {
    font-size: 14px;
  }
}


.contact {
    margin-bottom: 180px;
    padding-top: 50px;
}

.contact .heading {
    font-size: 55px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 100px;
}
.contact h6 {
  text-align: center;
}

.contact .Form {
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    font-family: 'Noto Serif JP', serif;
	font-weight: normal;
  }
  @media screen and (max-width: 480px) {
    .Form {
      margin-top: 40px;
      
    }
    
  }
  .Form-Item {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  @media screen and (max-width: 480px) {
    .Form-Item {
      padding-left: 14px;
      padding-right: 14px;
      padding-top: 16px;
      padding-bottom: 16px;
      flex-wrap: wrap;
    }
  }
  .Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
    width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 22px;
  }
  @media screen and (max-width: 480px) {
    .Form-Item-Label {
      max-width: inherit;
      display: flex;
      align-items: center;
      font-size: 15px;
    }
  }
  .Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
  }
  @media screen and (max-width: 480px) {
    .Form-Item-Label.isMsg {
      margin-top: 0;
    }
  }
  
  .Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
  }
  @media screen and (max-width: 480px) {
    .Form-Item-Input {
      margin-left: 0;
      margin-top: 18px;
      height: 40px;
      flex: inherit;
      font-size: 15px;
    }
  }
  .Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
  }
  @media screen and (max-width: 480px) {
    .Form-Item-Textarea {
      margin-top: 18px;
      margin-left: 0;
      height: 200px;
      flex: inherit;
      font-size: 15px;
    }
  }
  .Form-Btn {
    border-radius: 6px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 280px;
    display: block;
    letter-spacing: 0.05em;
    background: #0e61b5;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
  }
  .kozin-check {
    font-size: 22px;
    padding: 50px 0 60px;  }

  @media screen and (max-width: 480px) {
    .Form-Btn {
      margin-top: 24px;
      padding-top: 8px;
      padding-bottom: 8px;
      width: 160px;
      font-size: 16px;
    }
  }

  
.kozin-check {
    text-align: center;
    margin: 10px;
  }
  input + label{
    text-align: center;
    width: 600px;
  }
  
  #interlock{
    pointer-events: none;
  }
 
 #interlock {
    pointer-events: auto;
  }
  @media screen and (max-width:767px)  { 
  input + label{
  width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .contact {
    padding-top: 0px;
  }
  .contact .container {
    width: 300px;
  }
  .contact .heading {
    font-size: 30px;   
  }
  .contact h6 {
    text-align: center;
    font-size: 15px;
  }
  .contact .Form{
    margin-top: 60px;
  }
  
  .contact .Form  p {
    font-size: 12px;
  }
  .kozin-check {
    font-size: 13px;
    padding: 30px 0 40px;
  }
}



footer {
    padding: 40px 50px;
    font-size: 20px;
    background-color: #ddd;
    text-align: center;

  }
  .footer-main {
    padding-bottom: 20px;
    margin-bottom: 30px;
    
    }
.footer-logo {
  margin-bottom: 40px;
  font-size: 32px;
}

.footer-main li {
 a{
    padding: 10px;
    display: block;
    color:#000000;
    font-weight: 300;
}
}
.copyright {
        margin-top: 20px;
        text-align: center;
        
        }
    
    @media screen and (max-width: 768px) {
      li {
        a {
          margin: 0;

      }
      }
      .footer-logo {
        font-size: 10px;
      }

    .footer-logo img {
      width: 80px;
      height: 80px
    }
      
      
      
      .copyright {
        font-size: 9px;
      }
    }
    @media screen and (max-width: 480px) {
      footer {
        padding: 15px 0 20px;
      }
      .footer-main {
        margin-bottom: 0;
      }    
    
      
      .footer-logo {
        margin: 15px 0;
        font-size: 22px;
      }

    .footer-logo img {
      width: 60px;
      height: 60px
    }
    .footer-main li {
      a{
         padding: 5px;
         display: block;
         color:#000000;
         font-size: 12px;
     }
    
      
    }
  }











