@charset "UTF-8";

html,body{
    scroll-behavior: auto;
}

a{
  transition: all 1s ease;
  text-decoration: none;
  color: var(--bs-body-color);
}
a:hover{
  opacity:0.5;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  position: fixed;
  z-index: 100;
  width: 80%;
  margin: 15px auto 0;
  background-color: #0b0b0bc7;
  right: 0;
  left: 0;
  
  .header-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .js-header {
      margin-top: 0px;
  }
}

@media (min-width: 769px) {
  .header {
    padding: 0 15px;
  }
}
.header-logo {
  font-size: 2rem;
  position: relative;
  z-index: 100;
}
@media (min-width: 769px) {
  .header-logo {
    font-size: 2.6rem;
  }
}
.header-logo img {
  width: 35px;
}
@media (min-width: 769px) {
  .header-logo img {
    width: 35px;
  }
}
.header-logo a {
  display: flex;
  align-items: center;
}
.js-header .header-logo a {
  color: #FFFFFF !important;
}


@media (min-width: 769px) {
  .header-logo a:before {
      width: 30px;
      height: 27px;
      top: 8px;
      left: -5px;
    }
}

.header-logo a:hover {
  text-decoration: unset;
}
.header-hidden {
  display: none;
}
.header-open {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  cursor: pointer;
  background-image: url(/assets/svg/align-right.svg);
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .header-open {
    width: 40px;
    height: 40px;
    right: 20px;
    top: 13px;
  }
}
.header-content {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 100%;
  left: 0%;
  z-index: 100;
   background-image: linear-gradient(176deg, rgba(85, 85, 85, 1), rgba(0, 0, 0, 1));
  transition: 0.5s;
  text-align: center;
  padding-top: 20px;
  overflow-y: scroll;
}
.header-list {
  list-style: none;
  margin-top: 60px;
  padding-left: 0;
}
@media (min-width: 769px) {
  .header-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 120px auto;
  }
}
.header-item {
  color: #fff;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .header-item {
    width: 50%;
    margin-bottom: 60px;
  }
}
.header-item a {
  color: #fff;
}
.header-item a:hover {
  text-decoration: unset;
}
.header-item__en {
  display: block;
  font-size: 2.4rem;
}

.header.js-header {
  background-color: #ffffff;
  transition: 0.3s;
  border-bottom: 1px solid #d9d9d9;
  opacity: 0.9;
}

#header-input:checked ~ .header-open {
  background-image: url(/assets/svg/close-line.svg);
  margin-right: 30px;
  z-index: 110;
}

#header-input:checked ~ .header-content {
  bottom: 0;
}

section.completion{
    padding: 200px 10px;
    text-align: center;
    font-size: 1.1rem;

    .contact-link{
      background-color: #363636;
      padding: 15px 40px;
      border-radius: 20px;
      color: #FFFFFF;

      img{
          width:30px;
      }
    }
}

@media (min-width: 769px) {
  section.completion{
    padding: 200px;
  }
}

footer{
    background-color: #1c1c1c;
    padding: 5px 5px;
    color:#c5c5c5;
    box-sizing: border-box;

    .footer-menu{
      display: block;
      text-align: center;
      padding: 3rem !important;
      text-align: center;
    }

    .footer-menu .p-5{
      padding: 0rem !important;
    }

    .footer-menu a{
        color:#c5c5c5;
    }

    .footer-tit{
      font-size:5rem;
      line-height: 5rem;
      color: #363636;
      text-align: center;
    }

    .footer-company{
      text-align: center;
      margin-bottom: 30px;
    }
    .copyright{
      font-size: 0.8rem;
      text-align: center;
    }
}

@media (min-width: 769px) {
  footer{
    padding: 15px 40px;

    .footer-menu{
      display: flex;
      flex-direction: row-reverse;
      text-align: left;;
    }
    .footer-menu .p-5{
      padding: 3rem !important;
    }
    .footer-tit{
      font-size:12rem;
      line-height: 11rem;
      text-align: right;
    }
    .footer-company{
      text-align: left;;
    }
  }
}