@charset "utf-8";
.header {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
}

.header__wrapper {
  width: 100%;
  height: 100%;
  padding: 27px 0 0 49px;
}

.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__left {
  width: 100%;
  max-width: 382px;
}
.header__right {
  width: 100%;
  max-width: 900px;
  padding-top: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header__other-logo {
}

.header__logoLink {
}

.header__logoLink a {
  display: block;
}
.header__nav01 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.header__nav-list01 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.header__nav-listItem01 {
  position: relative;
  transition: all 0.3s;
}
.header__nav-listLink01 {
  display: block;
  padding: 5px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333;
}
.header__nav-listLink01.type02 {
  width: 143px;
  margin-left: 14px;
  background: #002169;
  border: 2px solid #002169;
  border-radius: 999px;
  color: #fff;
  transition: 0.3s;
  text-align: center;
}
.header__nav-listLink01.type02:hover {
  background: #fff;
  color: #002169;
}
.dropdown__lists {
  display: none; /*デフォルトでは非表示の状態にしておく*/
  width: 170px;
  padding: 7px 5px 7px 12px;
  border-radius: 7px;
  background: #f1f1f1;
  position: absolute;
  top: 100%;
  left: 0;
}
.header__nav-listItem01:hover .dropdown__lists {
  display: block; /*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
  transition: all 0.3s;
  position: relative;
}
.dropdown__link {
  display: block;
  padding: 3px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333;
  position: relative;
}
.dropdown__link::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
.sns {
  margin-left: 44px;
}
.sns02 {
  margin-left: 0;
}

.sns__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
.sns02 .sns__list {
  gap: 23px;
}
.header__navWrap {
  width: 100%;
  max-width: 430px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #002169;
  z-index: 2;
  overflow: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  transform: translateX(100%);
  transition: 0.2s;
}
.header__navWrap::-webkit-scrollbar {
  display: none;
}
.header__navWrap.panelactive {
  transform: translateX(0);
}

.header__nav-inner {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.header__nav02 {
  padding-top: 44px;
}
.header__nav-list02 {
  margin-bottom: 20px;
}
.header__nav-listItem02 {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.header__nav-listItem02.b-t-none {
  border-top: none;
}
.header__nav-listLink02 {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__nav-listLink02-en {
  display: inline-block;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}
.child__link {
  display: block;
  padding-left: 25px;
  margin-left: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
}
.child__link::before {
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}

.ham {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  background-color: #002169;
  position: fixed;
  top: 0;
  right: 0;
  border-radius: 0 0 0 25px;
}

.ham__lineWrapper {
  width: 35px;
  height: 18px;
  position: relative;
}

.ham__lineWrapper span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: 0.3s;
}

.ham__lineWrapper span:nth-child(1) {
  position: absolute;
  top: 0%;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.ham__lineWrapper span:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

/* .ham__lineWrapper span:nth-child(3) {
  position: absolute;
  bottom: 35%;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
} */
.ham__menu {
  display: inline-block;
  margin-top: 24px;
  font-size: 9px;
}

.ham.open .ham__lineWrapper {
  width: 35px;
  height: 35px;
}

.ham.open .ham__lineWrapper span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
}

.ham.open .ham__lineWrapper span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
}
/* 
.ham.open .ham__lineWrapper span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
} */
.ham.open .ham__menu {
  color: #fff;
}

/* 右に追従ナビ */
.side-nav01,
.side-nav02 {
  position: fixed;
  right: 0;
  z-index: 10;
}

.side-nav01 {
  top: 219px;
}
.side-nav02 {
  top: 389px;
}

.side-nav__btn {
  width: 60px;
  height: 150px;
  background: #98a6b5;
  border-radius: 6px 0 0 6px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.side-nav__link {
  width: 100%;
  height: 100%;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  letter-spacing: 0.05em;
  color: #fff;
}
.side-nav__btn:hover {
  width: 70px;
}

/* 採用情報だけのスタイル */
.side-nav-recruit01 .side-nav__btn {
  background: #186392;
}
.side-nav-recruit02 .side-nav__btn {
  background: linear-gradient(
    130deg,
    #ffd600 0%,
    #ff7a00 22.17%,
    #ff0069 49.26%,
    #d300c5 75.37%,
    #7638fa 100%
  );
}
.side-nav-recruit02 .side-nav__icon {
  display: block;
  width: 16px;
  margin: 0 auto 10px;
}
.side-nav-recruit02 .side-nav__icon .img {
  display: block;
}
.side-nav-recruit01 .side-nav__link {
  /* サファリで伸ばし棒が効かないため変更 */
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
}

@media screen and (max-width: 1380px) {
  .header__wrapper {
    padding: 27px 0 0 14px;
  }
  .header__left {
    max-width: 330px;
  }
  .header__right {
    max-width: 813px;
  }
  .header__nav-listLink01 {
    padding: 5px 11px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav01 {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .header__right {
    width: auto;
    max-width: none;
  }
  .header__left {
    width: 74%;
  }
  .header__navWrap {
    max-width: none;
  }

  .ham {
    width: 70px;
    height: 70px;
  }
  .ham__lineWrapper {
    width: 27px;
    height: 15px;
  }
  .ham.open .ham__lineWrapper {
    width: 27px;
    height: 27px;
  }
  /* 右に追従ナビ */
  .side-nav01,
  .side-nav02 {
    display: inline-block; /* 横に並べる */
    width: 49%; /* 2つなら50%ずつ */
    bottom: 0;
    top: auto;
    z-index: 3;
  }

  /* 横並びにするための親ラッパー */
  .side-nav01 {
    right: auto;
    left: 0;
  }
  .side-nav02 {
    right: 0;
  }

  .side-nav__btn {
    width: 100%;
    height: 43px;
    border-radius: 6px 6px 0 0;
  }

  .side-nav__link {
    writing-mode: horizontal-tb;
    flex-direction: row;
    font-size: 14px;
  }

  .side-nav__btn:hover {
    width: 100%;
  }
  /* 採用情報だけのスタイル */
  .side-nav-recruit02 .side-nav__icon {
    margin: 0;
    margin-right: 10px;
  }
}
