@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::selection {
  background: rgb(0, 123, 255, 0.3);
}

.content {
  max-width: 1250px;
  margin: auto;
  padding: 0 30px;
}

.navibar {
  position: fixed;
  width: 100%;
  z-index: 99999;
  padding: 25px 0;
  transition: all 0.3s ease;
  background-image: linear-gradient(0deg, rgba(233, 233, 233, 0), rgba(0, 0, 0, 0.3));
}

.navibar.sticky {
  background: rgba(3, 70, 130, 0.8);
  padding: 10px 0;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

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

.navibar .logo a {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.navibar .menu-list {
  display: inline-flex;
  font-family: 'Noto Sans JP', sans-serif, "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "繝偵Λ繧ｮ繝手ｧ偵ざ ProN W3", "SourceHanCodeJP-Regular", "Noto Sans JP", Meiryo, sans-serif;
}

.menu-list li {
  list-style: none;
}

.menu-list li a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  /* margin-left: 50px; */
  width: fit-content;
  display: inline-block;
  padding: 0 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0px 0px 5px black;
}

.menu-list li.recruit {
  color: #999;
  font-size: 16px;
  font-weight: 500;
  width: fit-content;
  padding: 0 10px;
  text-decoration: none;
}

.menu-list li a:hover {
  color: #ffa200;
}

.banner {
  background: url("../banner.jpg") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about {
  padding: 30px 0;
}

.about .title {
  font-size: 38px;
  font-weight: 700;
}

.about p {
  padding-top: 20px;
  text-align: justify;
}

.icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.menu-list .cancel-btn {
  position: absolute;
  right: 30px;
  top: 20px;
}

@media (max-width: 1230px) {
  .content {
    padding: 0 60px;
  }
}

/* @media (max-width: 1212px) {
  .menu-list li.recruit {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin-left: 20px !important;
    text-decoration: none;
  }
} */

@media (max-width: 1100px) {
  .content {
    padding: 0 40px;
  }
}

@media (max-width: 900px) {
  .content {
    padding: 0 30px;
  }
}

@media (max-width: 999px) {
  body.disabled {
    overflow: hidden;
  }

  .icon {
    display: block;
  }

  .icon.hide {
    display: none;
  }

  .navibar .menu-list {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background: #000;
    transition: all 0.3s ease;
  }

  .navibar.show .menu-list {
    left: 0%;
  }

  .navibar .menu-list li {
    margin-top: 45px;
  }

  .navibar .menu-list li a {
    font-size: 23px;
    margin-left: -100%;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .navibar .menu-list li.recruit {
    color: #999;
    font-size: 23px;
    text-align: center;
    width: 100%;
  }

  .navibar.show .menu-list li a {
    margin-left: 0px;
  }
}

@media (max-width: 380px) {
  .navibar .logo a {
    font-size: 27px;
  }
}