#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}
#header p, #header a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
}
#header .left-content {
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  padding: 2rem 4rem 2rem 2rem;
  border-radius: 0 0 4rem 0;
  gap: 8rem;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 859px) {
  #header .left-content {
    padding: 1.5rem;
    border-radius: 0 0 2rem 0;
  }
}
@media screen and (max-width: 767px) {
  #header .left-content {
    position: relative;
    z-index: 999;
  }
}
#header .left-content h1, #header .left-content p {
  margin: 0;
  line-height: 0;
}
#header .left-content h1 img, #header .left-content p img {
  width: 10.7rem;
  height: 6.2rem;
}
@media screen and (max-width: 859px) {
  #header .left-content h1 img, #header .left-content p img {
    width: 7.4rem;
    height: 4.3rem;
  }
}
#header .left-content .menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 859px) {
  #header .left-content .menu-content {
    display: none;
  }
}
#header .left-content .menu-content .top-content ul {
  display: flex;
  gap: 2rem;
}
#header .left-content .menu-content .top-content ul a {
  width: 14rem;
  height: 4.4rem;
  border-radius: 4rem;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#header .left-content .menu-content .top-content ul a.btn-recruit {
  background-color: var(--color-purple);
}
#header .left-content .menu-content .top-content ul a.btn-web-application {
  background-color: var(--color-orange);
}
#header .left-content .menu-content .top-content ul a.btn-request {
  background-color: var(--color-light-blue);
}
#header .left-content .menu-content .bottom-content {
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--color-border-gray);
}
#header .left-content .menu-content .bottom-content ul {
  display: flex;
  gap: 4.5rem;
}
#header .left-content .menu-content .bottom-content ul a {
  color: var(--color-border-gray);
  font-size: 1.3rem;
  font-weight: 500;
}
#header .left-content .menu-content .bottom-content ul a:hover {
  color: var(--color-light-blue);
}
#header .right-content {
  display: flex;
  align-items: center;
  padding: 2rem;
}
@media screen and (max-width: 859px) {
  #header .right-content {
    padding: 0;
  }
}
#header .right-content .hamburger-menu-wrap {
  position: relative;
  z-index: 101;
}
#header .right-content .hamburger-btn {
  position: relative;
  z-index: 101;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
@media screen and (max-width: 859px) {
  #header .right-content .hamburger-btn {
    position: fixed;
    top: 2rem;
    right: 1rem;
  }
}
#header .right-content .hamburger-btn__circle {
  width: 7rem;
  height: 7rem;
  background-color: var(--color-border-gray);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
@media screen and (max-width: 767px) {
  #header .right-content .hamburger-btn__circle {
    width: 5rem;
    height: 5rem;
  }
}
#header .right-content .hamburger-btn__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
#header .right-content .hamburger-btn__line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#header .right-content .hamburger-btn__label {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-white);
  margin: 0.4rem 0 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #header .right-content .hamburger-btn__label {
    font-size: 1rem;
    margin: 0;
  }
}
#header .right-content .hamburger-btn.is-open .hamburger-btn__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
#header .right-content .hamburger-btn.is-open .hamburger-btn__line:nth-child(2) {
  opacity: 0;
}
#header .right-content .hamburger-btn.is-open .hamburger-btn__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
#header .right-content a.instagram-btn {
  position: fixed;
  top: 11rem;
  right: 2.9rem;
  z-index: 101;
}
@media screen and (max-width: 859px) {
  #header .right-content a.instagram-btn {
    top: 10rem;
    right: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  #header .right-content a.instagram-btn {
    position: fixed;
    top: 8rem;
    right: 1.5rem;
  }
  #header .right-content a.instagram-btn img {
    width: 4rem;
    height: 4rem;
  }
}
#header .right-content .hamburger-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  transform: translateY(100%);
  transition: all 0.3s ease;
  visibility: hidden;
  background-image: url(../img/common/menu_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #header .right-content .hamburger-nav {
    overflow: hidden;
    background-image: url(../img/common/menu_bg_sp.png);
  }
}
#header .right-content .hamburger-nav.is-open {
  transform: translateY(0);
  visibility: visible;
  z-index: 100;
}
#header .right-content .hamburger-nav .hamburger-nav-content {
  padding: 10rem 30rem 10rem 10rem;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  #header .right-content .hamburger-nav .hamburger-nav-content {
    height: 100%;
    padding: 10rem 15% 2rem;
    flex-direction: column;
    gap: 2.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
#header .right-content .hamburger-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 25rem;
}
@media screen and (max-width: 859px) {
  #header .right-content .hamburger-nav ul {
    min-width: 15rem;
  }
}
@media screen and (max-width: 767px) {
  #header .right-content .hamburger-nav ul {
    min-width: 100%;
  }
}
#header .right-content .hamburger-nav a {
  color: var(--color-border-gray);
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
}
#header .right-content .hamburger-nav a::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  top: 50%;
  left: -3rem;
  transform: translateY(-50%);
  background-color: #B2BAFA;
}
#header .right-content .hamburger-nav a::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.8rem;
  top: 50%;
  left: -2.5rem;
  transform: translateY(-50%);
  background-image: url(../img/common/icon_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#header .right-content .hamburger-nav a:hover {
  color: #B2BAFA;
}
#header .right-content .hamburger-nav ul.secondary-menu {
  margin: 2.5rem 0 0;
  padding: 0 0 0 2rem;
}
#header .right-content .hamburger-nav ul.secondary-menu .accordion-parent-link {
  display: none;
}
#header .right-content .hamburger-nav ul.secondary-menu a::before {
  content: none;
}
#header .right-content .hamburger-nav ul.secondary-menu a::after {
  background-image: url(../img/common/icon_arrow_gray.svg);
  left: -2rem;
}
#header .right-content .hamburger-nav .link-content {
  position: absolute;
  background-color: var(--color-white);
  top: 0;
  right: 0;
  width: 26rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1240px) {
  #header .right-content .hamburger-nav .link-content {
    position: fixed;
    top: initial;
    bottom: 0;
    width: 100%;
    height: 10rem;
  }
}
@media screen and (max-width: 767px) {
  #header .right-content .hamburger-nav .link-content {
    position: fixed;
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 102;
  }
}
#header .right-content .hamburger-nav .link-content ul {
  max-width: initial;
  min-width: initial;
  padding: 2rem 5%;
}
@media screen and (max-width: 1240px) {
  #header .right-content .hamburger-nav .link-content ul {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  #header .right-content .hamburger-nav .link-content ul {
    flex-direction: column;
  }
}
#header .right-content .hamburger-nav .link-content a {
  text-align: center;
  padding: 0;
  width: 21rem;
  height: 7rem;
  border-radius: 4rem;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #header .right-content .hamburger-nav .link-content a {
    width: 35rem;
    height: 6rem;
  }
}
#header .right-content .hamburger-nav .link-content a::before {
  content: none;
}
#header .right-content .hamburger-nav .link-content a::after {
  width: 2rem;
  height: 2rem;
  left: initial;
  right: 1rem;
}
#header .right-content .hamburger-nav .link-content a.btn-recruit {
  background-color: var(--color-purple);
}
#header .right-content .hamburger-nav .link-content a.btn-recruit::after {
  background-image: url(../img/common/icon_arrow_purple.svg);
}
#header .right-content .hamburger-nav .link-content a.btn-web-application {
  background-color: var(--color-orange);
}
#header .right-content .hamburger-nav .link-content a.btn-web-application::after {
  background-image: url(../img/common/icon_arrow_orange.svg);
}
#header .right-content .hamburger-nav .link-content a.btn-request {
  background-color: var(--color-light-blue);
}
#header .right-content .hamburger-nav .link-content a.btn-request::after {
  background-image: url(../img/common/icon_arrow_light-blue.svg);
}
#header.is-menu-open .left-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 859px) {
  #header.is-menu-open .left-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 1240px) {
  #header .right-content .hamburger-nav li.has-accordion > a {
    display: block;
    padding-right: 2rem;
    cursor: pointer;
  }
  #header .right-content .hamburger-nav li.has-accordion > a::after {
    width: 0.8rem;
    height: 0.8rem;
    left: -2.4rem;
    background-image: url(../img/common/icon_plus.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
  }
  #header .right-content .hamburger-nav li.has-accordion > .secondary-menu {
    display: none;
    margin: 0;
    overflow: hidden;
  }
  #header .right-content .hamburger-nav li.has-accordion > .secondary-menu .accordion-parent-link {
    display: list-item;
  }
  #header .right-content .hamburger-nav li.has-accordion.is-open > .secondary-menu {
    display: flex;
    margin-top: 1.5rem;
  }
  #header .right-content .hamburger-nav li.has-accordion.is-open > a::after {
    transform: translateY(-50%) rotate(45deg);
  }
}
.sp-bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.sp-bottom-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sp-bottom-menu ul li {
  width: 33.3333333333%;
}
.sp-bottom-menu ul li a {
  color: var(--color-white);
  display: flex;
  align-items: center;
  width: 100%;
  height: 6rem;
  font-size: 1.2rem;
  padding: 0 0 0 3vw;
  position: relative;
}
.sp-bottom-menu ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3vw;
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sp-bottom-menu ul li a.btn-web-application {
  background-color: var(--color-orange);
}
.sp-bottom-menu ul li a.btn-web-application::before {
  background-image: url(../img/common/icon_arrow_orange.svg);
}
.sp-bottom-menu ul li a.btn-request {
  background-color: var(--color-light-blue);
}
.sp-bottom-menu ul li a.btn-request::before {
  background-image: url(../img/common/icon_arrow_light-blue.svg);
}
.sp-bottom-menu ul li a.btn-access {
  background-color: var(--color-purple);
}
.sp-bottom-menu ul li a.btn-access::before {
  background-image: url(../img/common/icon_arrow_purple.svg);
}

.top-back {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 998;
}
.top-back img {
  width: 4rem;
  height: 4rem;
}/*# sourceMappingURL=header.css.map */