@charset "UTF-8";
/* ============================================ */
/* header
/* ============================================ */
#header {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 45px;
  z-index: 99;
}
#header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  filter: brightness(1.25);
}
#header .site-name {
  position: relative;
  display: flex;
  align-items: flex-end;
}
#header .site-name .logo {
  width: 275px;
}
#header .site-name .recruit {
  position: relative;
  display: flex;
  align-items: center;
  top: -3px;
  white-space: nowrap;
}
#header .site-name .recruit::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5em;
  background: var(--color-black);
  margin: 0 1em 0 1.5em;
  transform: rotate(35deg);
}

@media screen and (max-width: 1024px) {
  #header {
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  #header .site-name .logo {
    width: 260px;
  }
  #header .site-name .recruit {
    top: -2px;
  }
  #header .site-name .recruit::before {
    margin: 0 1em 0 1.5em;
  }
}
@media screen and (max-width: 600px) {
  #header {
    height: 65px;
    padding: 0 15px;
  }
  #header .site-name .logo {
    width: 220px;
  }
  #header .site-name .recruit {
    top: -1px;
  }
}
@media screen and (max-width: 360px) {
  #header .site-name .logo {
    width: 200px;
  }
  #header .site-name .recruit {
    font-size: 12px;
    font-size: 0.75rem;
  }
  #header .site-name .recruit::before {
    margin: 0 1em;
  }
}
/* ===== entry-nav ===== */
#entry-nav {
  position: fixed;
  right: 100px;
  top: 10px;
  z-index: 99;
}

@media screen and (max-width: 1024px) {
  #entry-nav {
    right: 80px;
  }
}
@media screen and (max-width: 768px) {
  #entry-nav {
    top: auto;
    right: 20px;
    bottom: 10px;
    width: calc(100% - 100px);
    min-width: auto;
    max-width: none;
  }
}
/* ===== toggle-btn ===== */
#toggle-btn {
  position: fixed;
  right: 30px;
  top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 45px;
  z-index: 100;
}
#toggle-btn .toggle-icon {
  position: relative;
  display: block;
  width: 35px;
  height: 20px;
}
#toggle-btn .toggle-icon .line {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  transform: translate(-50%, 0);
  transition: 0.5s;
}
#toggle-btn .toggle-icon .line:nth-of-type(1) {
  top: 0;
}
#toggle-btn .toggle-icon .line:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
#toggle-btn .toggle-icon .line:nth-of-type(3) {
  top: calc(100% - 2px);
}
#toggle-btn .toggle-text {
  position: relative;
  display: block;
  width: 100%;
  height: 12px;
  overflow: hidden;
}
#toggle-btn .toggle-text::before, #toggle-btn .toggle-text::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.5s;
}
#toggle-btn .toggle-text::before {
  background-image: url(../img/common/toggle-btn_menu.svg);
  left: 0;
}
#toggle-btn .toggle-text::after {
  background-image: url(../img/common/toggle-btn_close.svg);
  left: -100%;
}
#toggle-btn.is-open .toggle-icon .line:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
}
#toggle-btn.is-open .toggle-icon .line:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%) scale(0, 1);
}
#toggle-btn.is-open .toggle-icon .line:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}
#toggle-btn.is-open .toggle-text::before {
  left: 100%;
}
#toggle-btn.is-open .toggle-text::after {
  left: 0;
}

@media screen and (max-width: 1024px) {
  #toggle-btn {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  #toggle-btn {
    right: auto;
    top: auto;
    left: 20px;
    bottom: 10px;
  }
}
/* ===== g-nav ===== */
#g-nav {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8%;
  width: 100%;
  height: 100dvh;
  height: 100%;
  padding: 0 5% 100px;
  background: var(--color-white);
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 99;
}
#g-nav.is-open {
  visibility: visible;
  opacity: 1;
}
#g-nav .g-nav-bg {
  position: absolute;
  left: 2%;
  bottom: 30%;
  width: 75%;
}
#g-nav .logo365 {
  position: relative;
  width: 480px;
}
#g-nav .link-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 50px;
  grid-auto-flow: row;
  grid-template-areas: "about-us environment" "job-people information";
  flex-shrink: 0;
}
#g-nav .link-list .category-box {
  padding: 0 0 0 70px;
}
#g-nav .link-list .category-box.about-us {
  grid-area: about-us;
}
#g-nav .link-list .category-box.job-people {
  grid-area: job-people;
}
#g-nav .link-list .category-box.information {
  grid-area: information;
}
#g-nav .link-list .category-box.environment {
  grid-area: environment;
}
#g-nav .link-list .category-name {
  position: relative;
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 0.5em;
}
#g-nav .link-list .category-name::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 50%;
  display: inline-block;
  width: 55px;
  height: 24px;
  background: var(--color-grad-blue);
  border-radius: 12px;
  transform: translate(0, -50%);
}
#g-nav .link-list .sub-category-name {
  display: block;
  fill: var(--color-blue);
  line-height: normal;
  margin: 0 0 10px;
}
#g-nav .link-list .sub-category-name.topics {
  width: 65px;
}
#g-nav .link-list .sub-category-name.project-story {
  width: 149px;
}
#g-nav .link-list .sub-category-name.interview {
  width: 106px;
}
#g-nav .link-list .sub-category-name.cross-talk {
  width: 111px;
}
#g-nav .link-list .item {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 0.5em;
}
#g-nav .link-list .hover-underline::before {
  transform: scale(1, 1);
}
#g-nav .site-name {
  position: fixed;
  left: 2%;
  bottom: 30px;
  display: flex;
}
#g-nav .site-name .logo {
  width: 275px;
}
#g-nav .site-name .recruit {
  position: relative;
  display: flex;
  align-items: flex-end;
  top: -3px;
  white-space: nowrap;
}
#g-nav .site-name .recruit::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5em;
  background: var(--color-black);
  margin: 0 1em 0 1.5em;
  transform: rotate(35deg);
}
#g-nav .btn-wrap {
  position: fixed;
  right: 5%;
  bottom: 25px;
  display: flex;
  gap: 25px;
  width: 580px;
}
#g-nav .entry {
  max-width: none;
}

/* メニュー展開時にページ本体を固定 */
body.is-open {
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 1400px) {
  #g-nav {
    gap: 5%;
  }
  #g-nav .link-list {
    gap: 30px;
  }
  #g-nav .link-list .item {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  #g-nav .btn-wrap {
    right: 2%;
    gap: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #g-nav {
    flex-direction: column;
    justify-content: flex-start;
    gap: 60px;
    padding: 100px 10%;
  }
  #g-nav .g-nav-bg {
    left: 5%;
    bottom: 100%;
    width: 640px;
    transform: translate(0, 35%);
  }
  #g-nav .logo365 {
    width: 80%;
    max-width: 360px;
  }
  #g-nav .link-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  #g-nav .link-list .category-name {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #g-nav .link-list .item {
    font-size: 16px;
    font-size: 1rem;
  }
  #g-nav .site-name {
    display: none;
  }
  #g-nav .btn-wrap {
    position: relative;
    inset: 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #g-nav {
    padding: 80px 10% 100px;
  }
  #g-nav .g-nav-bg {
    width: 460px;
    transform: translate(0, 45%);
  }
  #g-nav .link-list .category-name {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #g-nav .link-list .item {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 600px) {
  #g-nav .link-list .category-box {
    padding: 0 0 0 50px;
  }
  #g-nav .link-list .category-name {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  #g-nav .link-list .category-name::before {
    content: "";
    left: -50px;
    width: 35px;
    height: 20px;
    border-radius: 10px;
  }
  #g-nav .link-list .item {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

/*# sourceMappingURL=header.css.map */