@charset "UTF-8";
/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  margin-left: var(--space-large);
  margin-right: var(--space-small);
}
@media screen and (max-width: 1100px) {
  header {
    z-index: 1;
  }
}

.home header {
  padding: 80px 0;
  margin-left: 100px;
  margin-right: 0;
}

/*画面幅700px以下の追加指定*/
@media screen and (max-width: 700px) {
  /*トップページのヘッダーブロック*/
  .home header {
    margin-left: 0px;
  }
}
/*追加指定ここまで*/
/*ロゴ*/
#logo {
  margin: 0;
  padding: 0;
}
#logo img {
  display: inline-block;
  width: 300px;
}

/*トップページのロゴ*/
.home #logo {
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .home #logo {
    position: absolute;
    z-index: 100;
    left: 30px;
  }
}
@media screen and (max-width: 700px) {
  .home #logo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.home #logo .text {
  margin-bottom: 20px;
}
@media screen and (max-width: 700px) {
  .home #logo .text {
    text-align: center;
  }
}
.home #logo .text p {
  letter-spacing: 0.2px;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 1400px) {
  .home #logo .text p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1100px) {
  .home #logo .text p {
    text-shadow: 0 0 5px #01326d;
  }
}
@media screen and (max-width: 700px) {
  .home #logo .text p {
    font-size: 15px;
    filter: drop-shadow(0 0 5px #d4e8ff);
  }
}
@media screen and (max-width: 400px) {
  .home #logo .text p {
    font-size: 12ppx;
  }
}
.home #logo .text .big-title {
  font-size: 50px;
  line-height: 1.3;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
}
@media screen and (max-width: 1400px) {
  .home #logo .text .big-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 700px) {
  .home #logo .text .big-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 400px) {
  .home #logo .text .big-title {
    font-size: 27px;
  }
}
.home #logo .img-box {
  display: inline-block;
  position: relative;
  z-index: 0;
  width: 400px;
  padding: 10px;
}
@media screen and (max-width: 1400px) {
  .home #logo .img-box {
    width: 300px;
  }
}
@media screen and (max-width: 400px) {
  .home #logo .img-box {
    width: 250px;
  }
}
.home #logo .img-box img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 700px) {
  header .filter {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 90;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(1, 50, 109) 80%, rgba(1, 50, 109, 0));
    opacity: 0.3;
  }
}

/*ヘッダーのメニューボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#f-size {
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 0;
  position: absolute;
  right: 3%;
  top: 15px;
}
@media screen and (max-width: 1100px) {
  #f-size {
    display: none;
  }
}

a {
  text-decoration: none;
}

#f-size ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /*flexボックスを使う指定*/
  align-items: center;
  /*垂直揃えの指定。天地中央に配置されるように。*/
}
#f-size ul li a:hover {
  color: #01326d;
  transition: 0.45s;
}
#f-size li {
  cursor: pointer;
}

/*画面幅700px以下の追加指定*/
@media screen and (max-width: 700px) {
  #f-size {
    display: none;
    /*ボタンを非表示に*/
  }
}
/*追加指定ここまで*/
/*メニューを囲むブロック*/
/*マウスオン時にリンクテキストと同じような手のマークが出るように*/
/*「大型ドライバー募集中」ボタン
---------------------------------------------------------------------------*/
#side-btn {
  width: 100%;
  overflow: hidden;
}
#side-btn p {
  padding: 0;
  margin: 0;
}
#side-btn a {
  text-decoration: none;
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: fixed;
  left: 0px;
  top: 80px;
  background-color: #f39800;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  width: 80px;
  padding: 3rem 0;
  z-index: 500;
}
#side-btn i {
  transform: scale(2);
  padding-bottom: 0.5rem;
  display: inline-block;
}
#side-btn:hover i {
  animation: slide-in-out 1s ease forwards;
}

@keyframes slide-in-out {
  0% {
    transform: translateX(0) scale(2);
    opacity: 1;
  }
  40% {
    transform: translateX(120%) scale(2);
    opacity: 0;
  }
  41% {
    transform: translateX(-120%) scale(2);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(2);
    opacity: 1;
  }
}
@media screen and (max-width: 700px) {
  #side-btn {
    display: none;
  }
}
/*追加指定ここまで*/
/*メニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
  position: fixed;
  overflow: auto;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  padding: 100px 50px;
  transform: translateX(-100%);
  background: var(--primary-color);
  color: var(--primary-inverse-color);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  #menubar {
    width: 100%;
  }
}
#menubar nav > ul > li a {
  margin-bottom: 1rem;
}
#menubar nav li {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
#menubar nav a {
  position: relative;
  bottom: -2px;
}
#menubar nav a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  transform: scaleX(0);
  transform-origin: left top;
}
#menubar nav a:hover::before {
  transform: scaleX(1);
}
#menubar nav .no-action::before {
  display: none;
}
#menubar i {
  margin-right: 0.5em;
}
#menubar #toiawase {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 2rem;
  border: 2px solid #111;
  color: #111;
}
#menubar #toiawase h3 {
  margin-bottom: 0;
  border-bottom: 3px dotted #ccc;
  display: inline-block;
}
#menubar #toiawase .btn1 i {
  color: #fff;
}

#menubar.open {
  transform: translateX(0);
}

#menubar_hdr {
  position: fixed;
  z-index: 1000;
  cursor: pointer;
  left: 0px;
  top: 0px;
  padding: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: #111;
  transition: 0.2s;
}
@media screen and (max-width: 700px) {
  #menubar_hdr {
    width: 60px;
    height: 60px;
    padding: 15px;
  }
}
#menubar_hdr span {
  display: block;
  transition: 0.3s;
  border-top: 2.5px solid #fff;
}
#menubar_hdr.ham span:nth-of-type(1), #menubar_hdr.ham span:nth-of-type(3) {
  transform-origin: center center;
  width: 50px;
}
#menubar_hdr.ham span:nth-of-type(1) {
  transform: rotate(45deg) translate(4px, 10px);
}
#menubar_hdr.ham span:nth-of-type(3) {
  transform: rotate(-45deg) translate(4px, -10px);
}
@media screen and (max-width: 700px) {
  #menubar_hdr.ham span:nth-of-type(3) {
    transform: rotate(-45deg) translate(1px, -8px);
  }
}
#menubar_hdr.ham span:nth-of-type(2) {
  display: none;
}

header aside.mainimg-slick div img {
  width: 100%;
}/*# sourceMappingURL=header.css.map */