@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #2C2E35;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
}
body:has(input#hamburger:checked) {
  overflow: hidden;
}
body:has(input#hamburger:checked) .hamburger_menu {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

picture,
img {
  display: inline-block;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

header {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 60px;
  max-width: 1296px;
  padding: 0 20px;
  background-color: white;
  border-radius: 5px;
  backdrop-filter: blur(7.5px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header {
    top: 21px;
    height: 41px;
    max-width: 730px;
    padding: 0 12px;
  }
}
header h1 a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  header h1 a {
    font-size: 14px;
  }
}
header h1 img {
  width: 53px;
  margin: 0 3px 0 0;
}
@media screen and (max-width: 1024px) {
  header h1 img {
    width: 37px;
    margin: 0;
  }
}
header h1 span {
  display: inline-block;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  header h1 span {
    font-size: 8px;
  }
}
header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  header nav {
    display: none;
  }
}
header nav a {
  font-size: 14px;
  font-weight: 500;
}
header nav a.header_entry {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 104px;
  height: 42px;
  background-color: #008EE6;
  border-radius: 9999px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  color: white;
}
header .hamburger_btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .hamburger_btn {
    width: 30px;
    height: 24px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    cursor: pointer;
  }
  header .hamburger_btn span {
    width: 28px;
    height: 1px;
    background-color: #595959;
    transition: 0.3s;
    flex-shrink: 0;
  }
  header .hamburger_btn:has(input:checked) {
    gap: 0;
  }
  header .hamburger_btn:has(input:checked) span:first-child {
    position: absolute;
    transform: rotate(45deg);
  }
  header .hamburger_btn:has(input:checked) span:nth-child(2) {
    opacity: 0;
  }
  header .hamburger_btn:has(input:checked) span:nth-child(3) {
    position: absolute;
    transform: rotate(-45deg);
  }
}

.hamburger_menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger_menu {
    display: block;
    width: 100%;
    height: 100vh;
    background-color: rgba(246, 246, 246, 0.6);
    backdrop-filter: blur(6px);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    transition: 0.3s;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
  }
}
.hamburger_menu nav {
  width: 95%;
  max-width: 730px;
  margin: 110px auto 0;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  gap: 36px;
}
.hamburger_menu nav a {
  font-weight: 700;
  line-height: 2;
}
.hamburger_menu nav a.hamburger_entry {
  width: 120px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  color: white;
  background-color: #008EE6;
  border-radius: 999px;
}

section {
  width: 100%;
}
section#mv, section#message, section#about, section#interview {
  background: linear-gradient(90deg, #1488CC 0%, #2B32B2 100%);
}
section .section_inner {
  position: relative;
  width: 80%;
  max-width: 1148px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  section .section_inner {
    width: 95%;
    max-width: 730px;
  }
}
section#mv .section_inner, section#message .section_inner, section#about .section_inner, section#strengths .section_inner, section#recruit .section_inner {
  width: 95%;
  max-width: 1296px;
}
@media screen and (max-width: 1024px) {
  section#mv .section_inner, section#message .section_inner, section#about .section_inner, section#strengths .section_inner, section#recruit .section_inner {
    max-width: 730px;
  }
}
section h2 {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 80px;
  color: #0165FF;
}
@media screen and (max-width: 1024px) {
  section h2 {
    font-size: 30px;
  }
}
section h2 span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #2C2E35;
}
@media screen and (max-width: 1024px) {
  section h2 span {
    font-weight: 400;
  }
}
section .section_summary {
  width: 100%;
  line-height: 35px;
  letter-spacing: 1.6px;
  margin: 8px 0 0;
}
@media screen and (max-width: 1024px) {
  section .section_summary {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 1.4px;
  }
}

@keyframes scroll_down {
  0% {
    top: -12px;
  }
  100% {
    top: 123px;
  }
}
@keyframes popup_sphere {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slide_in_copy {
  0% {
    width: 1px;
  }
  100% {
    width: 100%;
  }
}
@keyframes fade_in_sub_copy {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade_1,
.fade_2,
.fade_3 {
  opacity: 0;
  transform: translateY(15px);
  transition: 0.3s;
}
.fade_1.visible,
.fade_2.visible,
.fade_3.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade_2 {
  transition-delay: 0.15s;
}
@media screen and (max-width: 1024px) {
  .fade_2 {
    transition-delay: unset;
  }
}

.fade_3 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 1024px) {
  .fade_3 {
    transition-delay: unset;
  }
}

#mv {
  height: 100vh;
}
#mv .section_inner {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
}
@media screen and (max-width: 1024px) {
  #mv .section_inner {
    gap: 28px;
  }
}
#mv .section_inner img {
  width: 21.5%;
  flex-shrink: 0;
  transform: scale(0);
  animation: 1.5s 0.5s forwards popup_sphere;
}
@media screen and (max-width: 1024px) {
  #mv .section_inner img {
    min-width: 125px;
  }
}
#mv .section_inner .mv_texts p {
  font-size: clamp(48px, 4.8vw, 69px);
  font-weight: 500;
  color: white;
  transform: skewX(-20deg);
  width: 1px;
  white-space: nowrap;
  overflow: hidden;
  animation: 1.5s 2.5s forwards slide_in_copy ease-in-out;
}
@media screen and (max-width: 1024px) {
  #mv .section_inner .mv_texts p {
    font-size: 40px;
  }
}
#mv .section_inner .mv_texts p:nth-child(2) {
  animation-timing-function: ease-in-out;
  animation-delay: 4s;
}
#mv .section_inner .mv_texts span {
  display: block;
  color: white;
  margin: 10px 0 0;
  transform: skewX(-20deg);
  opacity: 0;
  animation: 1s 5.5s forwards fade_in_sub_copy;
}
@media screen and (max-width: 1024px) {
  #mv .section_inner .mv_texts span {
    margin: 8px 0 0;
    font-size: 12px;
    font-weight: 500;
  }
}
#mv .section_inner .scroll_down {
  position: absolute;
  bottom: 24px;
  left: 5.2%;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 20px;
}
#mv .section_inner .scroll_down hr {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  width: 2px;
  height: 135px;
  background-color: white;
  border: none;
  overflow: visible;
}
#mv .section_inner .scroll_down hr::after {
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  top: -12px;
  animation: 3s 6.5s infinite scroll_down ease-out;
}
#mv .section_inner .scroll_down p {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: white;
}

#message {
  padding: 147px 0;
}
#message h2 {
  color: white;
}
#message .section_inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 42px;
}
#message .section_inner p {
  color: white;
  line-height: 2.8;
  text-align: center;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 1024px) {
  #message .section_inner p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}

#about {
  padding: 86px 0 240px;
}
@media screen and (max-width: 1024px) {
  #about {
    padding: 90px 0;
  }
}
#about h2 {
  color: white;
}
#about h2 span {
  color: white;
}
#about .contents {
  width: 100%;
  margin: 44px 0 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #about .contents {
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
  }
}
#about .contents a {
  width: 41.2%;
}
#about .contents a img {
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  #about .contents a img {
    width: 100%;
  }
}
#about .contents article {
  width: 49.4%;
}
@media screen and (max-width: 1024px) {
  #about .contents article {
    width: 100%;
  }
}
#about .contents article h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  margin: 0 0 14px;
}
#about .contents article p {
  line-height: 2.5;
  letter-spacing: 1.6px;
  color: white;
}
@media screen and (max-width: 1024px) {
  #about .contents article p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}

#strengths {
  padding: 170px 0 110px;
  background-color: #FCFCFC;
  box-shadow: inset 0 4px 35px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  #strengths {
    padding: 70px 0 100px;
  }
}
#strengths h2 {
  color: #0165FF;
}
#strengths h2 span {
  color: #2C2E35;
}
#strengths .contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 78px 0 0;
}
@media screen and (max-width: 1024px) {
  #strengths .contents {
    flex-flow: column;
    margin: 48px 0 0;
  }
}
#strengths .contents article {
  width: 33.33%;
  padding: 0 5% 0 0;
  display: flex;
  flex-flow: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  #strengths .contents article {
    width: 100%;
    padding: 0 0 67px;
  }
}
#strengths .contents article:nth-child(2) {
  padding: 0 3.5%;
  border-left: 2px solid #EFEFEF;
  border-right: 2px solid #EFEFEF;
}
@media screen and (max-width: 1024px) {
  #strengths .contents article:nth-child(2) {
    padding: 50px 0 50px;
    border-left: none;
    border-right: none;
    border-top: 2px solid #EFEFEF;
    border-bottom: 2px solid #EFEFEF;
  }
}
#strengths .contents article:nth-child(3) {
  padding: 0 0 0 5%;
}
@media screen and (max-width: 1024px) {
  #strengths .contents article:nth-child(3) {
    padding: 50px 0 0;
  }
}
#strengths .contents article h3 {
  display: flex;
  align-items: center;
  gap: 46px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 2px;
  color: #2F81FE;
}
@media screen and (max-width: 1024px) {
  #strengths .contents article h3 {
    width: 100%;
    justify-content: center;
    gap: 0;
    position: relative;
  }
}
#strengths .contents article h3 span {
  display: inline-block;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 100px;
  color: #0165FF;
}
@media screen and (max-width: 1024px) {
  #strengths .contents article h3 span {
    position: absolute;
    left: 0;
    font-size: 90px;
  }
}
#strengths .contents article .image_wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55%;
  aspect-ratio: 1/1;
  overflow: visible;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #strengths .contents article .image_wrapper {
    width: 50%;
  }
}
#strengths .contents article .image_wrapper picture {
  position: absolute;
  width: 200%;
}
#strengths .contents article picture,
#strengths .contents article img {
  display: inline-block;
  width: 100%;
}
#strengths .contents article ul {
  width: 100%;
  padding: 0 0 0 28px;
  display: flex;
  flex-flow: column;
  gap: 20px;
}
#strengths .contents article ul li {
  position: relative;
  line-height: 1.8;
  letter-spacing: 1.6px;
  color: #383838;
}
#strengths .contents article ul li::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #383838;
  border-radius: 50%;
  top: 14px;
  left: -12px;
}

#vision {
  width: 100%;
  background-color: #F1F7FF;
  padding: 54px 0 27px;
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #vision {
    padding: 30px 0 44px;
  }
}
#vision picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
#vision picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0 0 150px 150px;
  filter: brightness(0.5);
}
@media screen and (max-width: 1024px) {
  #vision picture img {
    border-radius: 0 0 50px 50px;
  }
}
#vision h2 {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 74px;
  color: white;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #vision h2 {
    font-size: 20px;
  }
}
#vision h2 span {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 54px;
  color: white;
  display: inline;
}
@media screen and (max-width: 1024px) {
  #vision h2 span {
    font-size: 12px;
  }
}
#vision strong {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  color: white;
  z-index: 1;
  margin: 8px 0 0;
}
@media screen and (max-width: 1024px) {
  #vision strong {
    font-size: 14px;
    margin: 13px 0 0;
  }
}
#vision p {
  width: 48.5%;
  margin: 30px 0 0;
  line-height: 1.56;
  letter-spacing: 1.6px;
  color: white;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #vision p {
    display: none;
  }
}

section.sp_vision_description {
  display: none;
}
@media screen and (max-width: 1024px) {
  section.sp_vision_description {
    display: block;
    background-color: #F1F7FF;
    padding: 24px 0 0;
  }
  section.sp_vision_description p {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.01em;
  }
}

#job {
  padding: 164px 0 0;
  background-color: #F1F7FF;
}
@media screen and (max-width: 1024px) {
  #job {
    padding: 90px 0 0;
  }
}
#job .jobs {
  width: 100%;
  margin: 45px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 23px 0;
}
@media screen and (max-width: 1024px) {
  #job .jobs {
    flex-flow: column;
    justify-content: flex-start;
    gap: 18px;
  }
}
#job .jobs article {
  width: 32%;
  min-height: 200px;
  padding: 22px 20px;
  background-color: white;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  #job .jobs article {
    width: 100%;
  }
}
#job .jobs article h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #2F81FE;
}
#job .jobs article h3 img {
  width: 62px;
}
#job .jobs article p {
  width: 100%;
  margin: 14px 0 0;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.6px;
  color: #0165FF;
}

#numbers {
  padding: 150px 0 160px;
  background-color: #F1F7FF;
}
@media screen and (max-width: 1024px) {
  #numbers {
    padding: 90px 0;
  }
}
#numbers .numbers_group {
  width: 82.8%;
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 3.5%;
}
@media screen and (max-width: 1024px) {
  #numbers .numbers_group {
    width: 100%;
    flex-flow: column;
    align-items: center;
    gap: 42px;
  }
}
#numbers .numbers_group h3 {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
  line-height: 1.5;
  margin: 0 0 30px;
}
@media screen and (max-width: 1024px) {
  #numbers .numbers_group h3 {
    gap: 6px;
    font-size: 20px;
  }
}
#numbers .numbers_group h3::before {
  display: inline-block;
  content: "";
  width: 7px;
  height: 37px;
  background-color: #2F81FE;
}
@media screen and (max-width: 1024px) {
  #numbers .numbers_group h3::before {
    width: 5px;
    height: 27px;
  }
}
#numbers .numbers_group article {
  width: 31%;
  min-height: 209px;
  background-color: white;
  border-radius: 10px;
  padding: 27px 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 1024px) {
  #numbers .numbers_group article {
    width: 82.8%;
  }
}
#numbers .numbers_group article h4 {
  width: 194px;
  height: 38px;
  background-color: #2F81FE;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}
#numbers .numbers_group article .single {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
}
#numbers .numbers_group article .single img {
  width: 15%;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  #numbers .numbers_group article .single img {
    max-height: 47px;
    object-fit: contain;
  }
}
#numbers .numbers_group article .single p {
  font-size: 60px;
  font-weight: 700;
  color: #2F81FE;
  flex-shrink: 0;
  line-height: 1;
}
#numbers .numbers_group article .single p span {
  font-size: 30px;
  font-weight: 700;
  color: #2F81FE;
}
#numbers .numbers_group article .double {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#numbers .numbers_group article .double p {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px 0;
  flex-wrap: wrap;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: #2F81FE;
}
#numbers .numbers_group article .double p span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #2F81FE;
}
#numbers .numbers_group article .double p small {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #2F81FE;
}

#interview {
  width: 100%;
  padding: 136px 0 127px;
}
@media screen and (max-width: 1024px) {
  #interview {
    padding: 80px 0;
  }
}
#interview h2 {
  color: white;
}
#interview h2 span {
  color: white;
}
#interview .section_summary {
  color: white;
}
#interview .answers {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 45px;
  margin: 57px 0 0;
}
@media screen and (max-width: 1024px) {
  #interview .answers {
    gap: 20px;
  }
}
#interview .answers article {
  position: sticky;
  top: 100px;
  width: 100%;
  padding: 33px 58px;
  flex-shrink: 0;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  #interview .answers article {
    padding: 32px 10px;
  }
}
#interview .answers article:nth-child(2) {
  top: 186px;
}
#interview .answers article:nth-child(3) {
  top: 272px;
}
#interview .answers article .heading {
  display: flex;
  align-items: center;
  gap: 37px;
}
@media screen and (max-width: 1024px) {
  #interview .answers article .heading {
    justify-content: center;
    gap: 27px;
  }
}
#interview .answers article .heading img {
  width: 105px;
}
#interview .answers article .heading h3 {
  font-size: 24px;
  font-weight: 600;
}
#interview .answers article .heading h3 span {
  display: block;
  font-size: 14px;
}
#interview .answers article .heading h3 span:first-child {
  margin: 10px 0 0;
}
#interview .answers article p {
  width: 100%;
  margin: 20px 0 0;
  line-height: 27px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1024px) {
  #interview .answers article p {
    font-size: 14px;
    line-height: 25px;
  }
}

#education {
  width: 100%;
  padding: 193px 0 0;
  background-color: #FCFCFC;
}
@media screen and (max-width: 1024px) {
  #education {
    padding: 90px 0 0;
  }
}
#education .educations {
  width: 100%;
  margin: 28px 0 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #education .educations {
    margin: 62px 0 0;
    flex-flow: column;
    align-items: center;
    gap: 42px;
  }
}
#education .educations img {
  width: 28.43%;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  #education .educations img {
    width: 100%;
    max-width: 390px;
  }
}
#education .educations img:nth-child(1) {
  margin: 10% 0 0;
}
#education .educations img:nth-child(2) {
  margin: 5% 0 0;
}

#benefits {
  padding: 144px 0 0;
  background-color: #FCFCFC;
}
@media screen and (max-width: 1024px) {
  #benefits {
    padding: 70px 0 0;
  }
}
#benefits .benefits_contents {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 2%;
  margin: 46px 0 0;
}
@media screen and (max-width: 1024px) {
  #benefits .benefits_contents {
    flex-flow: column;
    gap: 42px;
  }
}
#benefits .benefits_contents article {
  width: 32%;
  min-height: 270px;
  padding: 28px 14px;
  background-color: #F1F7FF;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  #benefits .benefits_contents article {
    width: 100%;
  }
}
#benefits .benefits_contents article h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 2px;
  color: #2F81FE;
}
#benefits .benefits_contents article p {
  width: 100%;
  margin: 10px 0 0;
  line-height: 29px;
  letter-spacing: 1.6px;
}

#career {
  padding: 250px 0 160px;
  background-color: #FCFCFC;
}
@media screen and (max-width: 1024px) {
  #career {
    padding: 90px 0;
  }
}
#career .tabs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 64px 0 0;
}
@media screen and (max-width: 1024px) {
  #career .tabs {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
}
#career .tabs label {
  display: inline-block;
  width: 32%;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #career .tabs label {
    width: 100%;
    max-width: 390px;
  }
}
#career .tabs label img {
  width: 100%;
}
#career .contents {
  position: relative;
  width: 93.75%;
  margin: 72px auto 0;
}
#career .contents article {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 76px;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  #career .contents article {
    gap: 40px;
  }
}
#career .contents article:has(input:checked) {
  position: relative;
  opacity: 1;
  visibility: visible;
}
#career .contents article .heading {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  gap: 72px;
}
@media screen and (max-width: 1024px) {
  #career .contents article .heading {
    flex-flow: column;
    gap: 24px;
  }
}
#career .contents article .heading .profile {
  display: flex;
  align-items: center;
  gap: 32px;
}
#career .contents article .heading .profile img {
  width: 105px;
}
#career .contents article .heading .profile p {
  font-size: 20px;
}
#career .contents article .heading .profile p span {
  display: block;
  font-size: 14px;
}
#career .contents article .heading .profile p span:first-child {
  margin: 8px 0 0;
}
#career .contents article .heading h3 {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
#career .contents article .step_image {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #career .contents article .step_image:not(.sp) {
    display: none;
  }
}
#career .contents article .step_image.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  #career .contents article .step_image.sp {
    display: block;
    max-width: 390px;
  }
}

#recruit {
  padding: 128px 0 116px;
  background-color: #0165FF;
}
@media screen and (max-width: 1024px) {
  #recruit {
    padding: 90px 0;
  }
}
#recruit h2,
#recruit h2 span,
#recruit .section_summary {
  color: white;
}
#recruit .steps_image {
  width: 97%;
  margin: 56px auto 75px;
}
@media screen and (max-width: 1024px) {
  #recruit .steps_image:not(.sp) {
    display: none;
  }
}
#recruit .steps_image.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  #recruit .steps_image.sp {
    width: 75%;
    display: block;
    max-width: 300px;
  }
}
#recruit .requirements {
  width: 100%;
  padding: 105px 5%;
  background-color: white;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements {
    padding: 58px 2.5%;
  }
}
#recruit .requirements .tabs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#recruit .requirements .tabs label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49.5%;
  height: 68px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  color: #D2D7DC;
  background-color: rgba(210, 215, 220, 0.2);
  flex-shrink: 0;
  border-bottom: 1px solid #D2D7DC;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements .tabs label {
    width: 50%;
  }
}
#recruit .requirements .tabs label:has(input:checked) {
  background-color: white;
  color: #0165FF;
  border-top: 5px solid #0165FF;
  border-left: 1px solid #D2D7DC;
  border-right: 1px solid #D2D7DC;
  border-bottom: none;
}
#recruit .requirements .contents {
  position: relative;
  width: 100%;
  margin: 20px 0 0;
}
#recruit .requirements .contents dl {
  width: 100%;
  display: flex;
  flex-flow: column;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
#recruit .requirements .contents dl .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements .contents dl .row {
    flex-flow: column;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px solid #D2D7DC;
  }
}
#recruit .requirements .contents dl .row dt {
  width: 17.8%;
  padding: 24px 0;
  border-bottom: 1px solid #D2D7DC;
  font-size: 14px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #0165FF;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements .contents dl .row dt {
    width: 100%;
    padding: 0;
    border: none;
  }
}
#recruit .requirements .contents dl .row dd {
  width: 79%;
  padding: 24px 0;
  border-bottom: 1px solid #D2D7DC;
  line-height: 1.8;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements .contents dl .row dd {
    width: 100%;
    padding: 0;
    border: none;
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}
#recruit .requirements:has(input#recruit_graduate:checked) #graduate_requirements {
  position: relative;
  opacity: 1;
  visibility: visible;
}
#recruit .requirements:has(input#recruit_career:checked) #career_requirements {
  position: relative;
  opacity: 1;
  visibility: visible;
}
#recruit .requirements .entry_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 80px 0 0;
}
#recruit .requirements .entry_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 567px;
  height: 86px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  background-color: #0165FF;
  border-radius: 999px;
  cursor: pointer;
}
#recruit .requirements .entry_btn a:active {
  transform: scale(0.95);
}
#recruit .requirements .entry_form {
  width: 90%;
  max-width: 864px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}
#recruit .requirements .entry_form:has(input#entry_form_opener:checked) {
  max-height: 6000px;
  opacity: 1;
  visibility: visible;
  padding: 170px 0 95px;
}
#recruit .requirements .entry_form h3 {
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 80px;
  color: #0165FF;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements .entry_form h3 {
    font-size: 40px;
  }
}
#recruit .requirements .entry_form h3 span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0165FF;
}
#recruit .requirements .entry_form .form_steps {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 62px;
  margin: 60px 0 36px;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements .entry_form .form_steps {
    margin: 48px 0 36px;
  }
}
@media screen and (max-width: 768px) {
  #recruit .requirements .entry_form .form_steps {
    gap: 48px;
  }
}
#recruit .requirements .entry_form .form_steps .step {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 8px;
}
#recruit .requirements .entry_form .form_steps .step p {
  position: relative;
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F6F6F6;
  border-radius: 50%;
  font-size: 20px;
  color: #595959;
}
@media screen and (max-width: 768px) {
  #recruit .requirements .entry_form .form_steps .step p {
    width: 48px;
    height: 48px;
  }
}
#recruit .requirements .entry_form .form_steps .step p::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 62px;
  height: 2px;
  background-color: #F6F6F6;
  right: -62px;
}
@media screen and (max-width: 768px) {
  #recruit .requirements .entry_form .form_steps .step p::after {
    width: 48px;
    right: -48px;
  }
}
#recruit .requirements .entry_form .form_steps .step:last-child p::after {
  display: none;
}
#recruit .requirements .entry_form .form_steps .step span {
  color: #D0D1D3;
}
#recruit .requirements .entry_form .form_steps .step.active p {
  background-color: #0165FF;
  color: white;
}
#recruit .requirements .entry_form .form_steps .step.active span {
  color: #595959;
}
#recruit .requirements .entry_form .info {
  text-align: center;
  line-height: 30px;
  letter-spacing: 0.03em;
  color: #595959;
}
#recruit .requirements .entry_form form {
  width: 100%;
  margin: 56px 0 0;
  display: flex;
  flex-flow: column;
  gap: 25px;
}
#recruit .requirements .entry_form form .row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 18px;
}
#recruit .requirements .entry_form form .row p {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #595959;
}
#recruit .requirements .entry_form form .row p::after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "任意";
  width: 50px;
  height: 30px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  background-color: #CFCFD1;
}
#recruit .requirements .entry_form form .row p.required::after {
  content: "必須";
  background-color: #B1372B;
  color: white;
}
#recruit .requirements .entry_form form label:has(input[type=radio]),
#recruit .requirements .entry_form form label:has(input[type=checkbox]) {
  height: 62px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #595959;
  border-radius: 8px;
  border: 1px solid #CCCED0;
  cursor: pointer;
  flex-shrink: 0;
}
#recruit .requirements .entry_form form label:has(input[type=radio])::before,
#recruit .requirements .entry_form form label:has(input[type=checkbox])::before {
  display: inline-block;
  content: "";
  width: 17px;
  height: 17px;
  border: 1px solid #8F9DAB;
  border-radius: 50%;
  background-color: white;
  transition: 0.3s;
}
#recruit .requirements .entry_form form label:has(input[type=radio]):has(input:checked)::before,
#recruit .requirements .entry_form form label:has(input[type=checkbox]):has(input:checked)::before {
  outline: 3px solid #CCCED0;
  outline-offset: -3px;
  background-color: #0165FF;
}
#recruit .requirements .entry_form form input[type=text],
#recruit .requirements .entry_form form input[type=email],
#recruit .requirements .entry_form form input[type=tel] {
  width: 100%;
  height: 62px;
  color: #595959;
  border-radius: 8px;
  border: 1px solid #CCCED0;
  font-size: 16px;
  padding: 0 12px;
}
#recruit .requirements .entry_form form .other_inputs {
  width: 100%;
  display: flex;
}
#recruit .requirements .entry_form form .other_inputs label {
  border-radius: 8px 0 0 8px !important;
}
#recruit .requirements .entry_form form .other_inputs input[type=text] {
  border-radius: 0 8px 8px 0 !important;
}
#recruit .requirements .entry_form form .select_wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-weight: 500;
  color: #595959;
}
#recruit .requirements .entry_form form select {
  width: 136px;
  height: 62px;
  color: #595959;
  border-radius: 8px;
  border: 1px solid #CCCED0;
  font-size: 16px;
  padding: 0 12px;
}
#recruit .requirements .entry_form form select[name=birthday_year], #recruit .requirements .entry_form form select[name=graduate_year], #recruit .requirements .entry_form form select[name=previous_company_start_year], #recruit .requirements .entry_form form select[name=previous_company_end_year] {
  width: 248px;
}
#recruit .requirements .entry_form form .job_history {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1px;
  color: #595959;
  flex-shrink: 0;
  white-space: nowrap;
}
#recruit .requirements .entry_form form .job_history::before, #recruit .requirements .entry_form form .job_history::after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #595959;
}
#recruit .requirements .entry_form form .inner_row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 23px;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements .entry_form form .inner_row {
    flex-wrap: wrap;
  }
}
#recruit .requirements .entry_form form .inner_row span {
  font-size: 20px;
  font-weight: 500;
  color: #595959;
  margin: 0 0 0 27px;
}
#recruit .requirements .entry_form form textarea {
  width: 100%;
  height: 285px;
  color: #595959;
  border-radius: 8px;
  border: 1px solid #CCCED0;
  font-size: 16px;
  padding: 8px 12px;
}
#recruit .requirements .entry_form form label:has(input[type=file]) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 185px;
  height: 62px;
  border-radius: 8px;
  border: 1px solid #595959;
  background: #E7E7E7;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 20px;
  font-weight: 500;
  color: #595959;
  cursor: pointer;
  transition: 0.3s;
}
#recruit .requirements .entry_form form label:has(input[type=file]):active {
  transform: translateY(3px);
  box-shadow: none;
}
#recruit .requirements .entry_form form .file_name {
  font-size: 20px;
  font-weight: 500;
  color: #595959;
}
#recruit .requirements .entry_form form .privacy_policy {
  width: 100%;
  margin: 80px 0 0;
  padding: 52px 2.5%;
  border-radius: 8px;
  border: 1px solid #CCCED0;
}
#recruit .requirements .entry_form form .privacy_policy h4 {
  width: 100%;
  padding: 0 0 30px;
  font-size: 20px;
  font-weight: 700;
  color: #595959;
  border-bottom: 1px solid #CCCED0;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements .entry_form form .privacy_policy h4 {
    text-align: center;
  }
}
#recruit .requirements .entry_form form .privacy_policy p {
  margin: 30px 0 0;
  color: #595959;
  line-height: 1.9;
  letter-spacing: 0.96px;
}
#recruit .requirements .entry_form form .agree_check {
  width: 100%;
  display: flex;
  justify-content: center;
}
#recruit .requirements .entry_form form .submit_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 80px 0 0;
}
#recruit .requirements .entry_form form .submit_btn input[type=submit] {
  width: 567px;
  height: 86px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: white;
  background-color: #0165FF;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}
#recruit .requirements .entry_form form .submit_btn input[type=submit]:active {
  transform: scale(0.96);
}
#recruit .requirements .entry_form form .submit_btn input[type=submit]:disabled {
  background-color: #CCCED0;
  cursor: not-allowed;
}
#recruit .requirements .entry_form form .submit_btn input[type=submit]:disabled:active {
  transform: unset;
}
#recruit .requirements .entry_form form .confirm_row {
  width: 100%;
  display: flex;
  padding: 30px 0;
  gap: 100px;
  border-bottom: 1px solid #595959;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements .entry_form form .confirm_row {
    flex-flow: column;
    gap: 12px;
  }
}
#recruit .requirements .entry_form form .confirm_row p {
  width: 380px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #595959;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements .entry_form form .confirm_row p {
    width: 100%;
    font-size: 16px;
  }
}
#recruit .requirements .entry_form form .confirm_row p::after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "任意";
  width: 50px;
  height: 30px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  background-color: #CFCFD1;
  border-radius: 2px;
}
@media screen and (max-width: 1024px) {
  #recruit .requirements .entry_form form .confirm_row p::after {
    width: 40px;
    height: 24px;
  }
}
#recruit .requirements .entry_form form .confirm_row p.required::after {
  content: "必須";
  background-color: #B1372B;
  color: white;
}

footer {
  width: 100%;
  padding: 72px 72px 0;
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 72px 0 0;
  }
}
footer .footer_inner {
  width: 95%;
  max-width: 1296px;
  padding: 130px 5% 0;
  margin: 0 auto;
  border-radius: 50px 50px 0 0;
  background: #F6F6F6;
}
@media screen and (max-width: 1024px) {
  footer .footer_inner {
    width: 100%;
    padding: 75px 5% 0;
  }
}
footer .footer_inner aside {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer_inner aside:first-child {
  align-items: flex-start;
  padding: 0 0 85px;
  border-bottom: 1px solid #D8D9DB;
}
@media screen and (max-width: 1024px) {
  footer .footer_inner aside:first-child {
    padding: 0 0 54px;
    flex-flow: column;
    align-items: center;
    gap: 72px;
  }
}
footer .footer_inner aside:last-child {
  align-items: center;
  padding: 40px 0;
}
@media screen and (max-width: 1024px) {
  footer .footer_inner aside:last-child {
    flex-flow: column-reverse;
    padding: 40px 0 20px;
    gap: 26px;
  }
}
footer .footer_inner aside img {
  width: 245px;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  footer .footer_inner aside img.for_pc {
    display: none;
  }
}
footer .footer_inner aside img.for_sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  footer .footer_inner aside img.for_sp {
    display: block;
  }
}
footer .footer_inner aside nav {
  width: 253px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 27px 0;
}
@media screen and (max-width: 1024px) {
  footer .footer_inner aside nav {
    width: 265px;
  }
}
footer .footer_inner aside nav a {
  width: 50%;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
}
footer .footer_inner aside nav a:nth-child(even) {
  text-align: right;
}
footer .footer_inner aside small {
  font-size: 12px;
  font-weight: 700;
  color: #DBDBDB;
  letter-spacing: 1.2px;
}
footer .footer_inner aside .corporate_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 305px;
  height: 48px;
  border: 3px solid #EAEAEA;
  border-radius: 999px;
  color: #BFBFBF;
  letter-spacing: 1.6px;
}

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