  @charset "utf-8";

/* ↓↓↓ common ↓↓↓ */
:root {
  --font-noto: "Noto Sans JP", sans-serif;
  --font-zen: "Zen Kaku Gothic Antique", sans-serif;
}

body {
  font-style: normal;
  overflow-x: clip;
}

body.-noscroll {
  overflow: clip;
}

.-pc {
  display: block;
}

.-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .-pc {
    display: none;
  }
  
  .-sp {
    display: block;
  }
}

.-wb {
  display: inline-block;
}

.text {
  text-align: justify;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #1a1a1a;
}
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ header ↓↓↓ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 10;
}

@media screen and (max-width: 768px) {
  header {
    height: 56px;
  }
}

header .inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .site-group .logo {
  display: block;
  width: clamp(235px, 24.844vw, 318px);
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  header .site-group .logo {
    width: 224px;
    margin-left: 8px;
  }
}

header .global-list {
  display: flex;
  height: 100%;
}

header .global-list .item {
  position: relative;
  width: 12.5vw;
  height: 100%;
  height: 100%;
  overflow: hidden;
  transition: color 0.3s ease;
}

header .global-list .item:not(:last-of-type)::after {
  content: '';
  position: absolute;
  translate: -110% 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #004280;
  transition: translate 0.3s ease;
}

header .global-list .item:not(:last-of-type) {
  border-left: 1px solid #c0c8da;
}

@media screen and (min-width: 769px) {
  header .global-list .item:not(.-info):hover {
    color: #004280;
  }

  header .global-list .item:not(:last-of-type):hover::after {
    translate: 0 0;
  }
}

@media screen and (max-width: 768px) {
  header .global-list .item {
    width: 67px;
    margin-right: 69px;
  }
}

header .global-list .item a {
  display: grid;
  place-content: center;
  height: 100%;
  text-align: center;
  font-size: clamp(1.2rem, calc(14/1280*100vw), 1.4rem);
  font-weight: 700;
  line-height: 1.2;
}

header .global-list .item.-info {
  color: #fff;
  background-color: #143376;
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 769px) {
  header .global-list .item.-info:hover {
    background-color: #245c92;
  }
}

header .menu-btn {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 100%;
  background-color: #143376;
  display: none;
}

@media screen and (max-width: 768px) {
  header .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

header .menu-btn .bar-group {
  position: fixed;
  width: 68px;
  height: 56px;
  z-index: 10;
}

header .menu-btn .bar-group .bar {
  position: absolute;
  top: 21px;
  left: 27px;
  width: 16px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: rotate 0.3s ease;
}

header .menu-btn .bar-group .bar:last-of-type {
  top: 29px;
}

header.-active .menu-btn .bar-group .bar {
  translate: 0 4px;
  rotate: 23deg;
}

header.-active .menu-btn .bar-group .bar:last-of-type {
  translate: 0 -4px;
  rotate: -23deg;
}

header .overlay {
  position: absolute;
  translate: 50% -50%;
  scale: 0;
  border-radius: 50%;
  top: 0;
  right: 0;
  width: auto;
  height: 300vh;
  height: 300lvh;
  min-height: 2000px;
  aspect-ratio: 1/1;
  background: rgba(20,51,118,1);
  background: radial-gradient(circle, rgba(20,51,118,1) 0%, rgba(32,66,129,1) 20%, rgba(104,159,193,1) 54%);
  overflow: hidden;
}

header .overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/saiyou/ginou/career/west/img/common/noise.png);
  background-repeat: repeat;
}

header .content {
  position: absolute;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  top: 0;
  left: 0;
  color: #fff;
  padding: 95px 0 100px;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
}

header .content .menu-list {
  max-width: 200px;
  margin: 0 auto;
}

header .content .menu-list .item .page {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

header .content .menu-list .item .interview-list {
  margin-bottom: 20px;
}

header .content .menu-list .item .people {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  padding-left: 25px;
}

header .content .menu-list .item .people ::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 18px;
  height: 1px;
  background-color: #fff;
}

header .content .menu-list .item .people:not(:first-of-type) {
  margin-top: 10px;
}

header .content .corporate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid #fff;
  margin: 30px auto 0;
}

header .content .corporate-btn img {
  width: 15px;
  height: max-content;
  margin-left: 12px;
}
/* ↑↑↑ header ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ footer ↓↓↓ */
footer {
  position: relative;
  z-index: 1;
}

footer .band {
  position: relative;
  width: 100%;
  height: 570px;
  background: url(/saiyou/ginou/career/west/img/common/footer-band.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  footer .band {
    height: 66.135vw;
    background: url(/saiyou/ginou/career/west/img/common/footer-band_sp.jpg) no-repeat;
    background-size: cover;
  }
}

footer .band::before {
  content: '';
  position: absolute;
  translate: -50% -62%;
  top: 0;
  left: 50%;
  min-width: 0;
  width: min(855px, 66.798%);
  aspect-ratio: 855/120;
  background: url(/saiyou/ginou/career/west/img/common/footer-recruit.svg) no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
}

@media screen and (max-width: 768px) {
  footer .band::before {
    width: 78.4%;
  }
}

footer .band .copy {
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  width: min(777px, 60.704%);
}

@media screen and (max-width: 768px) {
  footer .band .copy {
    top: 38%;
    width: 59.2%;
  }
}

footer .container {
  position: relative;
  background-color: #fff;
}

footer .container .inner {
  padding: 160px 60px 80px;
}

@media screen and (max-width: 768px) {
  footer .container .inner {
    padding: 90px 30px 30px;
  }
} 

footer .container .recruit-btn {
  position: absolute;
  translate: -50% -50%;
  top: 0;
  left: 50%;
  width: min(898px, calc(100% - 60px));
  height: 200px;
  overflow: hidden;
  background-color: #143376;
}

@media screen and (max-width: 768px) {
  footer .container .recruit-btn {
    translate: calc(-50% - 5px) -62%;
    width: calc(100% - 55px);
    height: 143px;
    overflow: initial;
  }
}

footer .container .recruit-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(170deg, rgba(164,197,218,1) 0%, rgba(104,159,193,1) 13%, rgba(20,51,118,1) 100%);
  opacity: 0;
}

@media screen and (min-width: 769px) {
  footer .container .recruit-btn::before {
    transition: opacity 0.3s ease;
  }

  footer .container .recruit-btn:hover::before {
    opacity: 1;
  }
}

footer .container .recruit-btn .wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 75px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  footer .container .recruit-btn .wrap {
    padding: 0 25px;
  }
}

footer .container .recruit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/saiyou/ginou/career/west/img/common/noise.png);
  background-repeat: repeat;
}

footer .container .recruit-btn .page-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .container .recruit-btn .page-group .jp {
  position: relative;
  display: inline-block;
  font-family: var(--font-zen);
  font-size: 1.6rem;
  font-weight: 700;
  padding-left: 18px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  footer .container .recruit-btn .page-group .jp {
    font-size: 1.4rem;
    padding-left: 12px;
  }
}

footer .container .recruit-btn .page-group .jp::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -8px;
  transform-origin: right;
  rotate: -60deg;
  width: 18px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
}

@media screen and (max-width: 768px) {
  footer .container .recruit-btn .page-group .jp::before {
    width: 16px;
    height: 2px;
  }
}

footer .container .recruit-btn .page-group .en {
  width: auto;
  height: 25px;
}

@media screen and (max-width: 768px) {
  footer .container .recruit-btn .page-group .en {
    height: 20px;
  }
}

footer .container .recruit-btn .angle {
  position: relative;
  width: 130px;
  height: 130px;
  display: grid;
  place-content: center;
}

@media screen and (max-width: 768px) {
  footer .container .recruit-btn .angle {
    position: absolute;
    translate: 0 -50%;
    width: 90px;
    height: 90px;
    top: 50%;
    right: -15px;
  }
}

footer .container .recruit-btn .angle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/saiyou/ginou/career/west/img/common/circle-more-view.svg) no-repeat;
  background-size: cover;
  animation: circle 18s linear 0s infinite;
}

@media screen and (max-width: 768px) {
  footer .container .recruit-btn .angle::before {
    background: url(/saiyou/ginou/career/west/img/common/circle-more-view_sp.svg) no-repeat;
    background-size: cover;
  }
}

@keyframes circle {
  0% {
    rotate: 0deg;
  }

  100% {
    rotate: -360deg;
  }
}

footer .container .recruit-btn .angle img {
  width: 18px;
}

footer .container .content {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  footer .container .content {
    display: block;
  }
  
}

footer .container .site-block .logo {
  display: block;
  width: 318px;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  footer .container .site-block .logo {
    width: 255px;
    margin: 0 auto 30px;
  }
}

footer .container .site-block .corporate-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #003d80;
  border: 1px solid #003d80;
  background-color: #fff;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 769px) {
  footer .container .site-block .corporate-btn:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  footer .container .site-block .corporate-btn {
    width: 270px;
    height: 36px;
    margin: 0 auto;
  }
} 

footer .container .site-block .corporate-btn img {
  width: 15px;
  height: max-content;
  margin-left: 16px;
}

@media screen and (max-width: 768px) {
  footer .container .site-block .corporate-btn img {
    margin-left: 5px;
  }
  
}

@media screen and (max-width: 768px) {
  footer .container nav {
    display: none;
  }
} 

footer .container nav .list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px min(130px, 10.15623vw);
  margin-left: 100px;
}

footer .container nav .list .item,
footer .container nav .list .page {
  display: block;
}

footer .container nav .list .page {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 769px) {
  footer .container nav .list a.page:hover {
    opacity: 0.7;
  }
}

footer .container nav .list .interview-list .people {
  position: relative;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 12px;
}

footer .container nav .list .interview-list .people::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 1px;
  background-color: #000;
}

footer .container nav .list .interview-list .people:not(:first-of-type) {
  margin-top: 10px;
}

footer .copyright {
  text-align: right;
  padding: 8px 30px;
  background-color: #000;
}

@media screen and (max-width: 768px) {
  footer .copyright {
    text-align: center;
    padding: 8px 20px;
  }
}

footer .copyright small {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 768px) {
  footer .copyright small {
    font-size: 1.1rem;
  }
}

/* ↑↑↑ footer ↑↑↑ */

.gotop-btn {
  position: fixed;
  width: 26px;
  bottom: 50px;
  right: 22px;
  z-index: 10;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .gotop-btn {
    width: 12px;
    bottom: 50px;
    right: 6px;
  }
}

.-fadeUp {
  translate: 0 50px;
  opacity: 0;
}