@charset "UTF-8";
/*　ハンバーガーボタン　*/
.hamburger {
  display: none;
  position: fixed;
  z-index: 3;
  right: 30px;
  top: 20px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

@media (max-width: 1300px) {
  .hamburger {
    display: block;
  }
}
@media (max-width: 700px) {
  .hamburger {
    top: 10px;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #DB7319;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 90%;
  border: 1px solid #ccc;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:first-of-type a {
  pointer-events: none;
  background: #F5F5F5;
  height: 70px;
  padding-top: 7px;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  text-decoration: none;
  height: 60px;
  line-height: 60px;
  border-bottom: 1px solid #ccc;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

header {
  height: 80px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: white;
  top: 0;
}
header .header__logo {
  width: 260px;
  height: 50px;
  margin-top: 17px;
}
header .header__logo a {
  width: 100%;
  height: 100%;
}
header .header__content {
  max-width: 1450px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 20px;
}
header .header__right {
  display: flex;
  align-items: center;
}
header .header__nav ul {
  display: flex;
  justify-content: center;
}
header .header__nav ul li {
  padding: 25px;
  position: relative;
}
header .header__nav ul li a {
  color: #3C7FB7;
  font-weight: bold;
}

@media (max-width: 700px) {
  header {
    height: 60px;
  }
  header .header__logo {
    width: 160px;
    height: 35px;
    margin-top: 15px;
  }
}
.globalMenuSp .jigyou-ham {
  height: auto;
}
.globalMenuSp .jigyou-ham span {
  padding: 20px;
  display: block;
  border-bottom: 1px solid #cccc;
}
.globalMenuSp .jigyou-ham .jigyou-ham__sub-menu {
  background: #ccc;
  z-index: 1;
  display: none;
}
.globalMenuSp .jigyou-ham .jigyou-ham__sub-menu li {
  padding: 0;
}
.globalMenuSp .jigyou-ham .jigyou-ham__sub-menu li a {
  padding: 20px;
  border-bottom: 1px solid white;
  height: auto;
}

.header__contact-btn {
  margin: 20px;
}
.header__contact-btn a {
  padding: 10px 20px;
  background: #DB7319;
  border-radius: 100px;
  color: white;
  margin: 0 auto;
  width: 160px;
  display: block;
  text-align: center;
}
.header__contact-btn a:hover {
  background: white;
  color: #DB7319;
  border: 1px solid #DB7319;
  transition: 0.3s;
}

.header__transform-tabs {
  display: flex;
  justify-content: center;
}
.header__transform-tabs .header__transform-tab__jp {
  font-size: 24px;
  font-weight: bold;
  padding: 5px;
  border-right: 3px solid black;
}
.header__transform-tabs .header__transform-tab__en {
  font-size: 24px;
  font-weight: bold;
  padding: 5px;
}

@media (max-width: 1300px) {
  header .header__content .header__right {
    display: none;
  }
}/*# sourceMappingURL=header.css.map */