@charset "UTF-8";

/*
Theme Name: 株式会社SHIFT SECURITY
Version: 1.0
Author: 株式会社hypex
*/

html {
  background: #fff;
  font-size: 10px;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-size: 1.6rem;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  width: 1440px;
  margin: 0 auto;
  padding-left: 10.6rem;
  padding-right: 10.6rem;
}

@media screen and (max-width: 1440px) {
  .wrapper {
    width: 100%;
  }
}

* {
  letter-spacing: 0.08em;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 8rem;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}

img {
  max-width: 100%;
}

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

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.wrapper {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 10.6rem;
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 2rem;
  }
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  padding: 1rem 1.6rem 1rem 4rem;
  background: #133653;
  color: #fff;
  border-radius: 6rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  transition: background 0.3s ease;
}

@media screen and (max-width: 768px) {
  .link-button {
    font-size: 1.8rem;
    padding: 1rem 1.6rem 1rem 4rem;
  }
}

.link-button::after {
  content: "";
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: white url("./assets/img/link_right_arrow.svg") center/1.3rem 1.2rem no-repeat;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .link-button::after {
    width: 3rem;
    height: 3rem;
  }
}

.link-button.light {
  background: #fff;
  color: #133653;
}

.link-button.light::after {
  background: #133653 url("./assets/img/link_right_arrow_white.svg") center/1.3rem 1.2rem no-repeat;
}

.link-button:hover::after {
  animation: slideArrow 1s ease-in-out infinite;
}

@keyframes slideArrow {
  0% {
    background-position: -1.3rem 50%;
  }

  100% {
    background-position: calc(100% + 1.3rem) 50%;
  }
}

.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #bac1da;
  transition: all 0.3s ease;
}

.global-nav:has(.menu-button.open) {
  background: #f1f3f7;
}

.global-nav .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 8rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

@media screen and (max-width: 768px) {
  .global-nav .wrapper {
    height: 6rem;
    padding-left: 2.2rem;
    padding-right: 2.2rem;
  }
}

.global-nav .wrapper .logo {
  width: 15.8rem;
  height: 3.7rem;
}

@media screen and (max-width: 768px) {
  .global-nav .wrapper .logo {
    width: 11rem;
    height: 2.6rem;
  }
}

.global-nav .wrapper .logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.global-nav .wrapper .logo a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.global-nav .wrapper .links {
  display: flex;
  align-items: center;
  gap: 4rem;
}

@media screen and (max-width: 768px) {
  .global-nav .wrapper .links {
    display: none;
  }
}

.global-nav .wrapper .links .site-links {
  display: flex;
  gap: 2.8rem;
}

.global-nav .wrapper .links .site-links>li>a, .global-nav .wrapper .links .site-links>li>span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #243678;
  cursor: pointer;
}

.global-nav .wrapper .links .site-links>li:has(ul) {
  position: relative;
}

.global-nav .wrapper .links .site-links>li:has(ul)>a, .global-nav .wrapper .links .site-links>li:has(ul)>span {
  position: relative;
  z-index: 101;
}

.global-nav .wrapper .links .site-links>li:has(ul)>a::before, .global-nav .wrapper .links .site-links>li:has(ul)>span::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: #243678;
  border-radius: 50%;
}

.global-nav .wrapper .links .site-links>li .sub-links {
  position: absolute;
  top: 2.4rem;
  display: none;
  padding-top: 2.4rem;
}

.global-nav .wrapper .links .site-links>li .sub-links ul {
  width: 24rem;
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
}

.global-nav .wrapper .links .site-links>li .sub-links ul>li>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  font-weight: 500;
  line-height: 1;
  color: #1d1d1d;
}

.global-nav .wrapper .links .site-links>li .sub-links ul>li>a::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: #243678 url("./assets/img/link_right_arrow_white.svg") center/1.3rem 1.2rem no-repeat;
  border-radius: 50%;
}

.global-nav .wrapper .links .site-links>li .sub-links ul>li+li>a {
  border-top: 1px solid #d9d9d9;
}

.global-nav .wrapper .links .ctas {
  display: flex;
  gap: 0.8rem;
}

.global-nav .wrapper .links .ctas>li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  height: 5.5rem;
  border-radius: 8rem;
  color: #fff;
  padding: 0 3rem;
  font-weight: bold;
}

.global-nav .wrapper .links .ctas>li.casual-interview a {
  background: #0054c2;
}

.global-nav .wrapper .links .ctas>li.casual-interview a::after {
  content: "";
  width: 3rem;
  height: 2.4rem;
  background: url("./assets/img/chat.svg") center/contain no-repeat;
}

.global-nav .wrapper .links .ctas>li.casual-interview a:hover {
  background: #276ac1;
}

.global-nav .wrapper .links .ctas>li.recruitment a {
  background: #243678;
}

.global-nav .wrapper .links .ctas>li.recruitment a::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("./assets/img/external_link.svg") center/contain no-repeat;
}

.global-nav .wrapper .links .ctas>li.recruitment a:hover {
  background: #415395;
}

.global-nav .wrapper .menu-button {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .global-nav .wrapper .menu-button {
    display: flex;
  }
}

.global-nav .wrapper .menu-button>div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2.2rem;
  height: 0.25rem;
  background: #133653;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}

.global-nav .wrapper .menu-button>div:nth-child(2) {
  transform: translateY(-0.6rem);
}

.global-nav .wrapper .menu-button>div:nth-child(3) {
  transform: translateY(0.6rem);
}

.global-nav .wrapper .menu-button.open>div:nth-child(1) {
  opacity: 0;
}

.global-nav .wrapper .menu-button.open>div:nth-child(2) {
  transform: translateY(0) rotate(45deg);
}

.global-nav .wrapper .menu-button.open>div:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.global-nav.transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.global-nav.transparent .menu-button>div {
  background: #fff;
}

.global-nav.transparent .menu-button.open>div {
  background: #133653;
}

#menu {
  position: fixed;
  top: 6rem;
  left: 0;
  width: 100%;
  height: calc(100% - 6rem);
  display: none;
  background: #f1f3f7;
  z-index: 100;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  #menu {
    display: block;
  }
}

#menu.open {
  transform: translateX(0);
  opacity: 1;
}

#menu .links {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 5.8rem 7rem 4rem;
  color: #133653;
  font-weight: 700;
  font-size: 1.5rem;
}

#menu .links>li>ul {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 2.4rem;
}

#menu .links>li>ul>li>a {
  color: rgba(19, 54, 83, 0.8);
}

#menu .links>li>ul>li>a::before {
  content: "ー　";
}

#menu .ctas {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

@media screen and (max-width: 768px) {
  #menu .ctas {
    margin: 0 auto 3rem;
    padding: 0 1.4rem;
    flex-direction: column;
  }
}

#menu .ctas>li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  height: 6.8rem;
  padding: 0 3.7rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3.4rem;
  border: 0.2rem solid #dedede;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.7rem;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  #menu .ctas>li a {
    padding: 0 3rem;
  }
}

#menu .ctas>li.casual-interview a {
  border-color: #0054c2;
  color: #0054c2;
}

#menu .ctas>li.casual-interview a::after {
  content: "";
  width: 3.7rem;
  height: 3rem;
  background: url("./assets/img/chat_blue.svg") center/contain no-repeat;
}

#menu .ctas>li.recruitment a {
  border-color: #243678;
  color: #243678;
}

#menu .ctas>li.recruitment a::after {
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  background: url("./assets/img/external_link_navy.svg") center/contain no-repeat;
}

.page-header {
  padding-top: 2rem;
}

@media screen and (max-width: 768px) {
  .page-header {
    padding-top: 3.2rem;
  }
}

.page-header .breadcrumb {
  max-width: 144rem;
  margin: 0 auto 6.4rem auto;
  padding: 0 4.2rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .page-header .breadcrumb {
    display: none;
  }
}

.page-header .breadcrumb .breadcrumb-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  color: #bac1da;
}

.page-header .breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}

.page-header .breadcrumb .breadcrumb-item:not(:last-child)::after {
  content: "";
  width: 1rem;
  height: 0.8rem;
  background: url("./assets/img/header_right_arrow.svg") center/contain no-repeat;
  margin: 0 0.5rem;
}

.page-header .breadcrumb .breadcrumb-item:nth-last-child(2)::after {
  content: "";
  width: 1rem;
  height: 0.8rem;
  background: url("./assets/img/header_last_right_arrow.svg") center/contain no-repeat;
  margin: 0 0.5rem;
}

.page-header .breadcrumb .breadcrumb-item a {
  color: #bac1da;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-header .breadcrumb .breadcrumb-item a:hover {
  color: #243678;
  text-decoration: underline;
}

.page-header .breadcrumb .breadcrumb-item.current {
  color: #243678;
  font-weight: 500;
}

.page-title {
  font-family: "Shippori Mincho B1", serif;
  margin: 0;
  padding-bottom: 5.6rem;
  font-size: 4rem;
  font-weight: 600;
  color: #243678;
  line-height: 1.5;
  position: relative;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .page-title {
    padding-bottom: 3.2rem;
    font-size: 3rem;
  }
}

.page-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #bac1da;
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 13.4rem;
  height: 1px;
  background: #243678;
}

@media screen and (max-width: 768px) {
  .page-title::after {
    width: 4rem;
  }
}

section .section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-size: 2.4rem;
  font-weight: 600;
  color: #133653;
  line-height: 1.7;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  section .section-title {
    gap: 1rem;
    margin-bottom: 4rem;
    font-size: 2rem;
  }
}

section .section-title::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: linear-gradient(to right, #83a4d4, #b6fbff);
  border-radius: 0.1rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  section .section-title::before {
    width: 1.2rem;
    height: 1.2rem;
  }
}

section .section-title::after {
  content: attr(data-ja);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  section .section-title::after {
    font-size: 2rem;
  }
}

section .section-title-vertical {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.8rem 1rem;
  align-items: center;
  color: #133653;
  line-height: 1.7;
  font-weight: 500;
}

section .section-title-vertical::before {
  order: 1;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: linear-gradient(to right, #83a4d4, #b6fbff);
  border-radius: 0.1rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  section .section-title-vertical::before {
    width: 1.2rem;
    height: 1.2rem;
  }
}

section .section-title-vertical::after {
  content: attr(data-en);
  order: 2;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

section .section-title-vertical>span {
  order: 3;
  grid-column: span 2;
}

.global-footer .ctas {
  padding: 11.2rem 0;
  background: url("./assets/img/footer_ctas_bg.jpg") center/cover no-repeat;
}

@media screen and (max-width: 768px) {
  .global-footer .ctas {
    background: url("./assets/img/footer_ctas_bg_sp.jpg") center/cover no-repeat;
    padding: 20rem 0 4.2rem;
  }
}

.global-footer .ctas ul {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.global-footer .ctas ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 54.5rem;
  max-width: 100%;
  height: 12.4rem;
  padding: 0 4rem;
  border-radius: 0.5rem;
  box-shadow: 4px 4px 10px 0px rgba(84, 84, 84, 0.1490196078);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 2.4rem;
  transition: background 0.3s ease;
}

@media screen and (max-width: 768px) {
  .global-footer .ctas ul li a {
    font-size: 1.8rem;
    padding: 0 1.2rem 0 2.2rem;
    height: 9.8rem;
  }
}

.global-footer .ctas ul li a::after {
  content: "";
  width: 3.6rem;
  height: 3.6rem;
}

.global-footer .ctas ul li.casual-interview a {
  background: rgba(255, 255, 255, 0.75);
  color: #133653;
}

.global-footer .ctas ul li.casual-interview a:hover {
  background: rgba(255, 255, 255, 0.9);
}

.global-footer .ctas ul li.casual-interview a::after {
  background: url("./assets/img/arrow_right_solid.svg") center/contain no-repeat;
}

.global-footer .ctas ul li.recruitment a {
  background: rgba(36, 54, 120, 0.75);
  color: #ffffff;
}

.global-footer .ctas ul li.recruitment a:hover {
  background: rgba(36, 54, 120, 0.9);
}

.global-footer .ctas ul li.recruitment a::after {
  background: url("./assets/img/arrow_right_solid_white.svg") center/contain no-repeat;
}

.global-footer .links {
  padding: 6.4rem 0;
  background: linear-gradient(214.05deg, #23425b -12.38%, #2d433e 7.77%, #123652 32.11%, #23425b 57.91%, #223e3f 81%);
}

@media screen and (max-width: 768px) {
  .global-footer .links {
    padding: 7.2rem 0 5.6rem;
  }
}

.global-footer .links .wrapper {
  display: grid;
  grid-template-columns: 1fr 41rem;
  gap: 8.4rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .global-footer .links .wrapper {
    grid-template-columns: 100%;
    gap: 4.2rem;
  }
}

.global-footer .links .site-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 3.2rem 6.8rem;
  width: 35rem;
  height: 17.8rem;
}

@media screen and (max-width: 768px) {
  .global-footer .links .site-links {
    height: auto;
    padding-left: 4.8rem;
    gap: 2.4rem;
  }
}

.global-footer .links .site-links>li>a, .global-footer .links .site-links>li>span {
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.global-footer .links .site-links>li>ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.global-footer .links .site-links>li>ul>li>a {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.global-footer .links .cta-links {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: column;
  gap: 1.8rem;
  max-width: 41rem;
}

.global-footer .links .cta-links>li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 9.8rem;
  padding: 0 3.6rem;
  border-radius: 0.3rem;
  font-size: 1.8rem;
  font-weight: 600;
  box-shadow: 4px 4px 10px 0px rgba(84, 84, 84, 0.1490196078);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  background: url("./assets/img/footer_site_links_interview.jpg") center/cover no-repeat;
}

@media screen and (max-width: 768px) {
  .global-footer .links .cta-links>li a {
    padding: 0 1.8rem 0 2.6rem;
    font-size: 1.6rem;
  }
}

.global-footer .links .cta-links>li a::after {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background: url("./assets/img/arrow_right_solid_white.svg") center/contain no-repeat;
  flex-shrink: 0;
}

.global-footer .links .cta-links>li.casual-interview a {
  background-image: url("./assets/img/footer_site_links_interview.jpg");
}

.global-footer .links .cta-links>li.recruitment a {
  background-image: url("./assets/img/footer_site_links_recruitment.jpg");
}

.global-footer .company {
  padding: 3.8rem 0;
}

@media screen and (max-width: 768px) {
  .global-footer .company {
    padding: 3.2rem 0 1.6rem;
  }
}

.global-footer .company .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .global-footer .company .wrapper {
    flex-direction: column;
    gap: 6.4rem;
  }
}

.global-footer .company .wrapper .info {
  display: flex;
  align-items: center;
  gap: 3.6rem;
}

@media screen and (max-width: 768px) {
  .global-footer .company .wrapper .info {
    flex-direction: column;
    align-items: start;
    gap: 3.2rem;
  }
}

.global-footer .company .wrapper .info .logo {
  width: 18.3rem;
  height: 4.3rem;
}

.global-footer .company .wrapper .info .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.global-footer .company .wrapper .info .address-and-site {
  color: #434343;
}

.global-footer .company .wrapper .info .address-and-site .address {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .global-footer .company .wrapper .info .address-and-site .address {
    margin-bottom: 3.2rem;
  }
}

.global-footer .company .wrapper .info .address-and-site .site {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .global-footer .company .wrapper .info .address-and-site .site {
    line-height: 1.7;
  }
}

.global-footer .company .wrapper .info .address-and-site .site::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background: url("./assets/img/external_link_gray.svg") center/contain no-repeat;
}

.global-footer .company .wrapper .copyright {
  align-self: end;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .global-footer .company .wrapper .copyright {
    align-self: center;
  }
}

.global-footer .company .wrapper .copyright p {
  letter-spacing: 0;
}

.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background-color: #f1f3f7;
  backdrop-filter: blur(10px);
  border-top: 0.1rem solid #dedede;
}

@media screen and (min-width: 769px) {
  .floating-cta {
    display: none;
  }
}

.floating-cta .wrapper {
  padding: 0;
  height: 7rem;
}

.floating-cta .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  height: 100%;
  margin: 0 auto;
}

.floating-cta .links>li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  height: 4.8rem;
  padding: 1.2rem 1.6rem;
  border-radius: 8rem;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  letter-spacing: 0.08em;
}

.floating-cta .links>li.casual-interview a {
  border-color: #0054c2;
  color: #fbfdff;
  background-color: #0054c2;
}

.floating-cta .links>li.casual-interview a::after {
  content: "";
  width: 2rem;
  height: 1.6rem;
  background: url("./assets/img/chat.svg") center/contain no-repeat;
}

.floating-cta .links>li.recruitment a {
  border-color: #243678;
  color: #fbfdff;
  background-color: #243678;
}

.floating-cta .links>li.recruitment a::after {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background: url("./assets/img/external_link.svg") center/contain no-repeat;
}

/*# sourceMappingURL=style.css.map */