@keyframes fadein_out {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  30% {
    visibility: visible;
    opacity: 1;
  }
  70% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes fadein {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
@keyframes scaling {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
}

body {
  transition: 0.3s;
}

body:has(.hamburger_menu.open) {
  overflow: hidden !important;
}

h1,
h2,
h3,
p,
a,
img,
span,
article {
  position: relative;
  z-index: 2;
}

section {
  position: relative;
}

ul,
ol {
  list-style: none;
}

a {
  display: inline-block;
  color: #313131;
  text-decoration: none;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

img {
  display: inline-block;
}

.opening_animation_wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
}
.opening_animation_wrapper img {
  position: absolute;
  width: 80%;
  max-width: 400px;
  visibility: hidden;
  opacity: 0;
  transition: all 2s;
}

header {
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 74px;
  background-color: white;
  z-index: 999;
}
@media screen and (max-width: 1023px) {
  header {
    height: 62px;
    padding: 0 0 0 4.5%;
  }
}
header img {
  width: 320px;
  margin-right: 24px;
}
@media screen and (max-width: 1023px) {
  header img {
    width: 160px;
  }
}
header .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  header .nav {
    display: none;
  }
}
header .entry_btn {
  height: 30px;
  padding: 0 19px;
  background-color: #E70012;
  border-radius: 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .sp_nav {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .sp_nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
  }
}
header .sp_nav .sp_nav_menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .sp_nav .sp_nav_menu .sp_entry_btn {
  width: 90px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E70012;
}
header .sp_nav .sp_nav_menu .sp_entry_btn span {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
}
header .sp_nav .hamburger_menu {
  display: flex;
  flex-flow: column;
  gap: 36px;
  position: fixed;
  width: 300px;
  height: 100svh;
  background: white;
  top: 0;
  right: -300px;
  z-index: 1000;
  padding: 128px 0 0 36px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
header .sp_nav .hamburger_menu a {
  font-size: 20px;
  width: 100%;
  padding: 0 0 8px;
  border-bottom: 1px solid #313131;
}
header .sp_nav .hamburger_menu.open {
  right: 0;
  opacity: 1;
  visibility: visible;
}
header .sp_nav .hamburger_menu.open + .hamburger_overlay {
  opacity: 1;
  visibility: visible;
}
header .sp_nav .hamburger_overlay {
  position: fixed;
  width: calc(100vw - 300px);
  height: 100svh;
  top: 0;
  left: 0;
  background: rgba(49, 49, 49, 0.7529411765);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
header .sp_nav .hamburger_area {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .sp_nav .hamburger_area {
    display: inline;
    position: relative;
    width: 62px;
    height: 62px;
    cursor: pointer;
    z-index: 1001;
    background: #000000;
  }
}
header .sp_nav .hamburger_area .hamburger_button {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
}
header .sp_nav .hamburger_area .hamburger_button span {
  position: absolute;
  display: inline-block;
  width: 14.5px;
  height: 0;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  border-radius: 20px;
  left: 24px;
  transition: all 0.3s;
  pointer-events: none;
}
header .sp_nav .hamburger_area .hamburger_button span:nth-child(1) {
  top: 25px;
}
header .sp_nav .hamburger_area .hamburger_button span:nth-child(2) {
  top: 30px;
}
header .sp_nav .hamburger_area .hamburger_button span:nth-child(3) {
  top: 35px;
}
header .sp_nav .hamburger_area .hamburger_button.open span:nth-child(1) {
  top: 30px;
  transform: rotate(45deg);
}
header .sp_nav .hamburger_area .hamburger_button.open span:nth-child(2) {
  opacity: 0;
}
header .sp_nav .hamburger_area .hamburger_button.open span:nth-child(3) {
  top: 30px;
  transform: rotate(-45deg);
}

footer {
  width: 100%;
  padding: 50px 0;
  background-color: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
}
@media screen and (max-width: 1023px) {
  footer {
    padding: 20px 0 30px 0;
  }
}
@media screen and (max-width: 1023px) {
  footer .footer_contents {
    display: none;
  }
}
footer .footer_contents nav {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
footer .footer_contents nav img {
  width: 240px;
}
footer .footer_contents p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
}
footer .footer_contents p span {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 14px;
}
footer .footer_contents address {
  text-decoration: none;
  font-style: normal;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  margin: 8px 0 0;
}
footer .footer_contents address a {
  color: #313131;
  font-family: Futura, serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  font-size: 18px;
}
footer .footer_contents address span {
  color: #313131;
  font-family: Futura, serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  font-size: 18px;
}
footer .footer_contents address div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
footer .footer_contents address img {
  width: 20px;
}
footer .sp_footer {
  display: none;
}
@media screen and (max-width: 1023px) {
  footer .sp_footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }
}
footer .sp_footer .sp_footer_contents {
  width: 100%;
}
footer .sp_footer .sp_footer_contents .sp_footer_nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .sp_footer .sp_footer_contents .sp_footer_nav a {
  width: 100%;
  height: 30px;
  padding: 0 15px;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
}
footer .sp_footer .sp_footer_contents .sp_footer_nav span {
  height: 30px;
  position: relative;
  display: inline-block;
  padding: 10px;
}
footer .sp_footer .sp_footer_contents .sp_footer_nav span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: solid 2px #E70012;
  border-right: solid 2px #E70012;
  position: absolute;
  left: 13px;
  top: 11px;
  transform: rotate(45deg);
}
footer .sp_footer .sp_footer_contents nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .sp_footer .sp_footer_contents nav img {
  width: 300px;
  margin-bottom: 10px;
}
footer .sp_footer .sp_footer_contents p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
  font-size: 14px;
  line-height: 1.4;
}
footer .sp_footer .sp_footer_contents div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px 0;
}
footer .sp_footer .sp_footer_contents img {
  width: 20px;
}
footer .sp_footer .sp_footer_contents a {
  color: #313131;
  font-family: Futura, serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  font-size: 16px;
}
footer .sp_footer .sp_footer_contents span {
  color: #313131;
  font-family: Futura, serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  font-size: 16px;
}

.bubbles_wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  z-index: 1;
}
.bubble.red {
  background-color: #E70012;
  animation: scaling 1.8s ease-in-out infinite alternate-reverse;
}
.bubble.blue {
  background-color: #0168B7;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

main {
  margin: 58px 0 0;
  overflow: hidden;
}

.top_main_visual {
  width: 100%;
  position: relative;
  padding: 0 !important;
  margin: 62px 0 0;
  background-image: url("../images/top/top_mv_bg.png");
  background-repeat: no-repeat;
  background-position: left bottom 50px;
  background-size: 100%;
}
@media screen and (max-width: 1023px) {
  .top_main_visual {
    margin: 23vw 0 0;
  }
}
.top_main_visual .mv_contents_container {
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, transparent 100%, white 0%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_main_visual .mv_contents_container {
    padding: 0;
  }
}
@keyframes fadeout_bg_mask {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.top_main_visual .mv_contents_container::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  transform: scaleX(1);
  transform-origin: right top;
  animation: fadeout_bg_mask 3s ease-in forwards;
}
@keyframes text_scroll {
  0% {
    transform: translateX(100vw);
  }
  50% {
    transform: translateX(-200vw);
    opacity: 1;
  }
  50.1% {
    transform: translateX(-200vw);
    opacity: 0;
  }
  50.2% {
    transform: translateX(100vw);
    opacity: 0;
  }
  50.3% {
    transform: translateX(100vw);
    opacity: 1;
  }
  100% {
    transform: translateX(-200vw);
  }
}
.top_main_visual .mv_contents_container::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 200vw;
  aspect-ratio: 22.07/1;
  background-image: url("../images/top/top_mv_kte.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(100vw);
  bottom: -9vw;
  z-index: 2;
  animation: text_scroll 30s infinite linear;
}
.top_main_visual .slogan_img {
  width: 33.1%;
}
@media screen and (max-width: 1023px) {
  .top_main_visual .slogan_img {
    display: none;
  }
}
.top_main_visual .sp_slogan_img {
  display: none;
}
@media screen and (max-width: 1023px) {
  .top_main_visual .sp_slogan_img {
    display: inline-block;
    position: absolute;
    width: 81.23%;
    top: -25.726%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.top_main_visual .swiper {
  width: 62.775%;
}
@media screen and (max-width: 1023px) {
  .top_main_visual .swiper {
    width: 89.822%;
  }
}
.top_main_visual .swiper-wrapper {
  width: 100%;
}
.top_main_visual .swiper-slide {
  transform: scale(0.7);
  transform-origin: left;
  transition: transform 1s, transform-origin 1s;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.top_main_visual .swiper-slide.swiper-slide-active {
  transform-origin: center;
  transform: scale(1);
  width: 33.8%;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .top_main_visual .swiper-slide.swiper-slide-active {
    width: auto;
  }
}
.top_main_visual .swiper-slide.swiper-slide-prev {
  transform-origin: left;
  transform: scale(0.7) translateX(70%);
}
.top_main_visual .swiper-slide.swiper-slide-next {
  transform-origin: right;
  transform: scale(0.7) translateX(-70%);
}
.top_main_visual .swiper-slide img {
  display: inline-block;
  width: 100%;
  height: auto;
}
.top_main_visual .fv_slogan {
  position: absolute;
  width: 57%;
  left: 8.4%;
  bottom: 11.4%;
  z-index: 2;
}

.top_sections_container {
  margin: 200px 0 0;
}
@media screen and (max-width: 1023px) {
  .top_sections_container {
    margin-top: 10px;
  }
}
.top_sections_container section:nth-child(odd) {
  background-color: white;
}
.top_sections_container section:nth-child(odd) .top_section_content_texts {
  background-color: white;
  border-radius: 20px;
}
.top_sections_container section:nth-child(even) {
  background-color: #F5F5F5;
}
.top_sections_container section:nth-child(even) .top_section_content_texts {
  background-color: #F5F5F5;
  border-radius: 20px;
}
.top_sections_container section {
  position: relative;
  padding: 120px 0;
}
@media screen and (max-width: 1023px) {
  .top_sections_container section {
    padding: 60px 0;
  }
}
.top_sections_container section h2 {
  margin: 0 0 24px 12%;
  color: #313131;
  font-family: Futura, serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .top_sections_container section h2 {
    margin: 0 0 0 5.6%;
    font-size: 36px;
    line-height: 60px;
  }
}
.top_sections_container section .subtitle {
  margin: 0 0 50px 12%;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .top_sections_container section .subtitle {
    margin: 0 0 38px 5.6%;
    font-size: 12px;
    line-height: 20px;
  }
}
.top_sections_container section article {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5.3%;
}
.top_sections_container section article .top_section_content_texts {
  width: 35.1%;
  max-width: 650px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .top_sections_container section article .top_section_content_texts {
    width: 89.9%;
  }
}
.top_sections_container section article .top_section_content_texts h3 {
  margin: 0 0 56px;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
}
@media screen and (max-width: 1023px) {
  .top_sections_container section article .top_section_content_texts h3 {
    margin: 35px 0 35px;
    font-size: 16px;
    line-height: 24px;
  }
}
.top_sections_container section article .top_section_content_texts p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
}
@media screen and (max-width: 1023px) {
  .top_sections_container section article .top_section_content_texts p {
    font-size: 12px;
    line-height: 20px;
  }
}
.top_sections_container section article .top_section_content_texts p span {
  line-height: 0.5;
}
@media screen and (max-width: 1023px) {
  .top_sections_container section article {
    flex-direction: column;
  }
}
.top_sections_container section .link_area {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.top_sections_container section .link_area a {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  width: fit-content;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  padding: 0 0 16px;
  border-bottom: 1px solid #313131;
}
@media screen and (max-width: 767px) {
  .top_sections_container section .link_area a {
    font-size: 12px;
    line-height: 16px;
  }
}
.top_sections_container .top_about_us .link_area {
  width: 89%;
  margin: 24px 0 0;
}
.top_sections_container .top_about_us article img {
  width: 48.6%;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_about_us article img {
    width: 96%;
    margin-left: -4%;
  }
}
.top_sections_container .top_project article {
  padding: 0 11.8%;
  justify-content: space-between;
  gap: 3.7%;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_project article {
    flex-direction: column-reverse;
    padding: 0 5%;
  }
}
.top_sections_container .top_project article .top_section_content_texts {
  width: 45.5%;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_project article .top_section_content_texts {
    width: 100%;
  }
}
.top_sections_container .top_project article .top_section_content_texts small {
  display: inline-block;
  line-height: 1.5;
}
.top_sections_container .top_project .link_area {
  width: 100%;
  margin: 57px 0 0;
}
.top_sections_container .top_project .top_project_images {
  width: 50.81%;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_project .top_project_images {
    width: 100%;
  }
}
.top_sections_container .top_project .top_project_images img:nth-child(1) {
  width: 76%;
  margin: -11.02% 0 0;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_project .top_project_images img:nth-child(1) {
    margin: 0;
  }
}
.top_sections_container .top_project .top_project_images img:nth-child(2) {
  width: 58.76%;
  margin: -6.93% 0 0;
  float: right;
}
.top_sections_container .top_culture_talk article,
.top_sections_container .top_job_persons article {
  padding: 0 11.8%;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_culture_talk article,
  .top_sections_container .top_job_persons article {
    padding: 0 5%;
  }
}
.top_sections_container .top_culture_talk article .section_image,
.top_sections_container .top_job_persons article .section_image {
  width: 49.36%;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_culture_talk article .section_image,
  .top_sections_container .top_job_persons article .section_image {
    width: 74.074%;
    aspect-ratio: 1/1.2;
    object-fit: cover;
    border-radius: 20px;
  }
}
.top_sections_container .top_culture_talk article .top_section_content_texts,
.top_sections_container .top_job_persons article .top_section_content_texts {
  width: 46%;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_culture_talk article .top_section_content_texts,
  .top_sections_container .top_job_persons article .top_section_content_texts {
    width: 100%;
  }
}
.top_sections_container .top_culture_talk article .top_section_content_texts .link_area,
.top_sections_container .top_job_persons article .top_section_content_texts .link_area {
  margin: 70px 0 0;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_job_persons article {
    flex-direction: column-reverse;
  }
  .top_sections_container .top_job_persons article .section_image {
    position: relative;
    width: 112.6%;
    border-radius: 20px;
    aspect-ratio: 1.439/1;
    object-fit: cover;
    left: 4.8%;
  }
}
.top_sections_container .top_recruitment {
  padding: 225px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_recruitment {
    padding: 42px 0 93px;
  }
}
.top_sections_container .top_recruitment h2 {
  margin: 0 0 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_sections_container .top_recruitment h2 {
    line-height: 60px;
    margin: 0;
  }
}
.top_sections_container .top_recruitment .subtitle {
  margin: 0;
  text-align: center;
}
.top_sections_container .top_recruitment article {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  margin: 56px 0 0;
  width: 512px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_recruitment article {
    margin: 56px auto 0;
    width: 89.9%;
    text-align: start;
  }
}
.top_sections_container .top_recruitment article p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
  line-height: 40px;
}
@media screen and (max-width: 1023px) {
  .top_sections_container .top_recruitment article p {
    font-size: 12px;
    line-height: 20px;
  }
}
.top_sections_container .top_recruitment article a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 64px;
  border-radius: 32px;
  background-color: #313131;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: white;
}
@media screen and (max-width: 767px) {
  .top_sections_container .top_recruitment article a {
    font-size: 12px;
    line-height: 16px;
  }
}

.pages_sections {
  margin: 62px 0 0;
}
.pages_sections section {
  width: 100%;
  padding: 120px 10.715% 134px;
}
@media screen and (max-width: 1023px) {
  .pages_sections section {
    padding: 5%;
  }
}
.pages_sections .pages_mv_section {
  padding: 120px 10.715% 0;
}
@media screen and (max-width: 1023px) {
  .pages_sections .pages_mv_section {
    padding: 5%;
  }
  .pages_sections .pages_mv_section .pages_mv_texts {
    font-size: 32px;
    line-height: 60px;
  }
  .pages_sections .pages_mv_section .pages_mv_texts + img {
    width: 100%;
    aspect-ratio: 1.725/1;
    object-fit: cover;
  }
}
.pages_sections .pages_mv_section h1 {
  color: #313131;
  font-family: Futura, serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  font-size: 50px;
}
.pages_sections .pages_mv_section h1 span {
  display: block;
  margin: 15px 0 0;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.pages_sections .pages_mv_section .pages_mv_texts {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 24px;
}
.pages_sections .pages_mv_section .pages_mv_texts nav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 48px;
}
@media screen and (max-width: 1023px) {
  .pages_sections .pages_mv_section .pages_mv_texts nav {
    display: none;
  }
}
.pages_sections .pages_mv_section .pages_mv_texts nav a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 13px;
  padding: 0 0 16px;
  border-bottom: 1px solid #313131;
}
.pages_sections .pages_mv_section .pages_mv_texts nav a img {
  width: 20px;
}
.pages_sections .pages_mv_section img {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .pages_sections .pages_mv_section img {
    display: inline-block;
    margin-bottom: 42px;
  }
}

.about_us_philosophy article {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .about_us_philosophy article {
    flex-direction: column;
  }
}
.about_us_philosophy article h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 40px;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .about_us_philosophy article h2 {
    margin-bottom: 44px;
    font-size: 24px;
    line-height: 16px;
  }
}
.about_us_philosophy .about_us_philosophy_texts {
  width: 46.55%;
  max-width: 682px;
  background-color: white;
}
@media screen and (max-width: 1023px) {
  .about_us_philosophy .about_us_philosophy_texts {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .about_us_philosophy .about_us_philosophy_texts {
    width: 100%;
  }
}
.about_us_philosophy .about_us_philosophy_texts h3 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 25px;
  line-height: 40px;
  margin: 0 0 27px;
}
@media screen and (max-width: 1023px) {
  .about_us_philosophy .about_us_philosophy_texts h3 {
    font-size: 16px;
    line-height: 24px;
  }
}
.about_us_philosophy .about_us_philosophy_texts p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
  font-size: 20px;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .about_us_philosophy .about_us_philosophy_texts p {
    font-size: 12px;
    line-height: 20px;
  }
}

.about_us_numbers {
  background-color: #F5F5F5;
}
.about_us_numbers h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 40px;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers h2 {
    font-size: 24px;
    line-height: 16px;
    margin-top: 52px;
  }
}
.about_us_numbers .about_us_numbers_data {
  position: relative;
  width: 320px;
  height: 140px;
  margin: 40px auto 0;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  display: flex;
  justify-content: center;
  align-content: center;
}
.about_us_numbers .about_us_numbers_data h3 {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 140px;
  line-height: 1;
  color: #FFFFFF;
  z-index: 1;
}
.about_us_numbers .about_us_numbers_data img {
  position: absolute;
  top: 70px;
  left: 70px;
  width: 23px;
  height: 23px;
}
.about_us_numbers .about_us_numbers_data h4 {
  position: absolute;
  top: 50px;
  left: 100px;
  font-size: 30px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_data h4 {
    font-size: 24px;
  }
}
.about_us_numbers .about_us_numbers_voice {
  position: relative;
  width: 400px;
  height: 140px;
  margin: 60px auto 0;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  display: flex;
  justify-content: center;
  align-content: center;
}
.about_us_numbers .about_us_numbers_voice h3 {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 120px;
  line-height: 1;
  color: #FFFFFF;
  z-index: 1;
}
.about_us_numbers .about_us_numbers_voice img {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 23px;
  height: 23px;
}
.about_us_numbers .about_us_numbers_voice h4 {
  position: absolute;
  top: 40px;
  left: 90px;
  font-size: 30px;
  z-index: 100;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_voice h4 {
    font-size: 24px;
  }
}
.about_us_numbers .about_us_numbers_contents_container {
  margin: 20px 0 0;
  width: 100%;
  display: grid;
  grid-template-columns: 0.5fr 0.5fr 0.5fr 0.5fr 0.5fr 0.5fr;
  gap: 2.6733vw;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container {
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    margin: 48px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container {
    grid-template-columns: 1fr;
  }
}
.about_us_numbers .about_us_numbers_contents_container .grid_item {
  position: relative;
  object-fit: fill;
}
.about_us_numbers .about_us_numbers_contents_container .grid_item img {
  width: 100%;
}
.about_us_numbers .about_us_numbers_contents_container .grid_item p {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  width: 60%;
  position: absolute;
  top: 65%;
  left: 22.8%;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  line-height: unset;
  font-size: 1.35vw;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .grid_item p {
    font-size: 5vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container .grid_item span, .about_us_numbers .about_us_numbers_contents_container .grid_item b {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 5vw;
  color: transparent;
}
.about_us_numbers .about_us_numbers_contents_container .grid_item span.blue, .about_us_numbers .about_us_numbers_contents_container .grid_item b.blue {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #0168B7;
}
.about_us_numbers .about_us_numbers_contents_container .grid_item span.red, .about_us_numbers .about_us_numbers_contents_container .grid_item b.red {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #E70012;
}
.about_us_numbers .about_us_numbers_contents_container .grid_item span.black, .about_us_numbers .about_us_numbers_contents_container .grid_item b.black {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #313131;
}
.about_us_numbers .about_us_numbers_contents_container .grid_item b {
  margin: 0 -8px;
}
.about_us_numbers .about_us_numbers_contents_container #years {
  grid-row: 1/3;
  grid-column: 1/3;
}
.about_us_numbers .about_us_numbers_contents_container #years p {
  top: 65%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #years p {
    top: 63%;
  }
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #years {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #years span {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #years {
    grid-row: 1/2;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #years span {
    font-size: 20vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #members {
  grid-row: 1/3;
  grid-column: 3/5;
}
.about_us_numbers .about_us_numbers_contents_container #members p {
  top: 65%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #members p {
    top: 63%;
  }
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #members {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #members span {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #members {
    grid-row: 2/3;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #members span {
    font-size: 20vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #newbies {
  grid-row: 1/3;
  grid-column: 5/7;
}
.about_us_numbers .about_us_numbers_contents_container #newbies p {
  top: 65%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #newbies p {
    top: 60%;
  }
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #newbies {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #newbies span {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #newbies {
    grid-row: 3/4;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #newbies span {
    font-size: 20vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #age {
  grid-row: 3/5;
  grid-column: 1/3;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #age {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #age span {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #age {
    grid-row: 4/5;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #age span {
    font-size: 20vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #age p {
  position: absolute;
  top: 67%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #age p {
    top: 63%;
  }
}
.about_us_numbers .about_us_numbers_contents_container #bases {
  grid-row: 3/5;
  grid-column: 3/5;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #bases {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #bases span {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #bases {
    grid-row: 5/6;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #bases span {
    font-size: 20vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #bases P {
  position: absolute;
  top: 69%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #bases P {
    top: 66%;
  }
}
.about_us_numbers .about_us_numbers_contents_container #industry {
  grid-row: 0/2;
  grid-column: 1/4;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #industry {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #industry {
    grid-row: 1/2;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #industry span {
    font-size: 12vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #job_type {
  grid-row: 0/2;
  grid-column: 4/7;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #job_type {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #job_type {
    grid-row: 2/3;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #job_type span {
    font-size: 12vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #atmosphere {
  grid-row: 2/4;
  grid-column: 1/4;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #atmosphere {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #atmosphere {
    grid-row: 3/4;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #atmosphere span {
    font-size: 12vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #communication {
  grid-row: 2/4;
  grid-column: 4/7;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #communication {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #communication {
    grid-row: 5/6;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #communication span {
    font-size: 12vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #culture_grow {
  grid-row: 4/8;
  grid-column: 1/7;
}
.about_us_numbers .about_us_numbers_contents_container #culture_grow span {
  -webkit-text-stroke-width: 1.5px;
}
.about_us_numbers .about_us_numbers_contents_container #culture_grow b {
  -webkit-text-stroke-width: 1.5px;
}
.about_us_numbers .about_us_numbers_contents_container #culture_grow #culture_grow_sp_img {
  display: none;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #culture_grow {
    grid-row: 3/4;
    grid-column: 1/3;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #culture_grow {
    grid-row: 6/7;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #culture_grow #culture_grow_img {
    display: none;
  }
  .about_us_numbers .about_us_numbers_contents_container #culture_grow #culture_grow_sp_img {
    display: inline-block;
  }
}
.about_us_numbers .about_us_numbers_contents_container #newbies_established {
  grid-row: 3/7;
  grid-column: 5/7;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #newbies_established {
    grid-row: 3/5;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #newbies_established span {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #newbies_established {
    grid-row: 6/7;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #newbies_established span {
    font-size: 16vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #newbies_established p {
  width: 60%;
  position: absolute;
  top: 33%;
  left: 22.5%;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #newbies_established p {
    top: 34%;
  }
}
.about_us_numbers .about_us_numbers_contents_container #ages_rate {
  position: relative;
  grid-row: 5/7;
  grid-column: 1/5;
}
.about_us_numbers .about_us_numbers_contents_container #ages_rate #ages_rate_sp_img {
  display: none;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate {
    grid-row: 5/6;
    grid-column: 1/3;
  }
  .about_us_numbers .about_us_numbers_contents_container #ages_rate #ages_rate_img {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate {
    grid-row: 7/8;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #ages_rate #ages_rate_sp_img {
    display: inline-block;
  }
}
.about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper {
  position: absolute;
  width: 20%;
  height: 98%;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper {
    right: 6%;
  }
}
.about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p {
  font-size: 16px;
  line-height: 22px;
  left: 10%;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p {
    font-size: 2vw;
    line-height: unset;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p {
    font-size: 5vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper span {
  font-size: 2.5vw;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper span {
    font-size: 10vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(1) {
  top: 27%;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(1) {
    top: 29%;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(1) {
    top: 59.5%;
  }
}
.about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(2) {
  top: 45%;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(2) {
    top: 47%;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(2) {
    top: 70%;
  }
}
.about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(3) {
  top: 63%;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(3) {
    top: 65%;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(3) {
    top: 80.6%;
  }
}
.about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(4) {
  top: 81%;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(4) {
    top: 83%;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #ages_rate .ages_wrapper p:nth-child(4) {
    top: 91%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .job-wrapper {
  position: absolute;
  top: 0;
  right: 7%;
  width: 35%;
  height: 100%;
}
.about_us_numbers .about_us_numbers_contents_container .job-wrapper p:nth-child(1) {
  top: 37%;
}
.about_us_numbers .about_us_numbers_contents_container .job-wrapper p:nth-child(2) {
  top: 72%;
}
.about_us_numbers .about_us_numbers_contents_container .industry_wrapper_left {
  position: absolute;
  top: 0;
  left: 7%;
  height: 100%;
  width: 30%;
}
.about_us_numbers .about_us_numbers_contents_container .industry_wrapper_left p {
  top: 67%;
}
.about_us_numbers .about_us_numbers_contents_container .industry_wrapper_right {
  position: absolute;
  height: 100%;
  width: 30%;
  top: 0;
  right: 7%;
}
.about_us_numbers .about_us_numbers_contents_container .industry_wrapper_right p {
  top: 33%;
}
.about_us_numbers .about_us_numbers_contents_container .communication_wrapper_right {
  position: absolute;
  height: 100%;
  width: 33%;
  top: 0;
  right: 6%;
}
.about_us_numbers .about_us_numbers_contents_container .communication_wrapper_right P {
  top: 34%;
}
.about_us_numbers .about_us_numbers_contents_container .communication_wrapper_left {
  position: absolute;
  height: 100%;
  width: 33%;
  top: 0;
  left: 8%;
}
.about_us_numbers .about_us_numbers_contents_container .communication_wrapper_left p {
  top: 75%;
}
.about_us_numbers .about_us_numbers_contents_container .communication_wrapper_center {
  position: absolute;
  top: 0;
  width: 22%;
  left: 41.5%;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container .communication_wrapper_center {
    left: 43%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .communication_wrapper_center p {
  top: 60.5%;
  font-size: 1vw;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .communication_wrapper_center p {
    font-size: 5vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container .communication_wrapper_center b {
  font-size: 2vw;
}
.about_us_numbers .about_us_numbers_contents_container .communication_wrapper_center span {
  font-size: 2vw;
}
.about_us_numbers .about_us_numbers_contents_container .number_wrapper_center {
  position: absolute;
  top: 0;
  width: 22%;
  left: 38%;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container .number_wrapper_center {
    left: 40%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .number_wrapper_center p {
  top: 60.5%;
  font-size: 1vw;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .number_wrapper_center p {
    font-size: 5vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container .number_wrapper_center b {
  font-size: 2vw;
}
.about_us_numbers .about_us_numbers_contents_container .number_wrapper_center span {
  font-size: 2vw;
}
.about_us_numbers .about_us_numbers_contents_container .number_wrapper_left {
  position: absolute;
  height: 100%;
  width: 30%;
  top: 0;
  left: 7%;
}
.about_us_numbers .about_us_numbers_contents_container .number_wrapper_left p {
  top: 75%;
}
.about_us_numbers .about_us_numbers_contents_container .number_wrapper_right {
  position: absolute;
  height: 100%;
  width: 33%;
  top: 0;
  right: 7%;
}
.about_us_numbers .about_us_numbers_contents_container .number_wrapper_right P {
  top: 34%;
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right {
  position: absolute;
  width: 15%;
  top: 0;
  right: 0;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right {
    right: -2%;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right {
    right: 3%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p {
  font-size: 1.2vw;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p {
    font-size: 3vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right span {
  font-size: 2.5vw;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right span {
    font-size: 7vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right b {
  font-size: 2.5vw;
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(1) {
  top: 20%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(1) {
    top: 64.2%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(2) {
  top: 30%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(2) {
    top: 68.7%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(3) {
  top: 40%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(3) {
    top: 73.3%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(4) {
  top: 50%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(4) {
    top: 77.8%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(5) {
  top: 60%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(5) {
    top: 82.5%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(6) {
  top: 70%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(6) {
    top: 87%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(7) {
  top: 80%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_right p:nth-child(7) {
    top: 92.2%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left {
  position: absolute;
  width: 15%;
  left: 35%;
  top: 0;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left {
    right: 6%;
    left: unset;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p {
  font-size: 1.2vw;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p {
    font-size: 3vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left span {
  font-size: 2.5vw;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left span {
    font-size: 7vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left b {
  font-size: 2.5vw;
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(1) {
  top: 20%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(1) {
    top: 11.8%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(2) {
  top: 28.3%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(2) {
    top: 16.2%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(3) {
  top: 37%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(3) {
    top: 21.5%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(4) {
  top: 45.6%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(4) {
    top: 26.6%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(5) {
  top: 54%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(5) {
    top: 30.8%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(6) {
  top: 62.7%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(6) {
    top: 34.9%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(7) {
  top: 71.4%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(7) {
    top: 40.3%;
  }
}
.about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(8) {
  top: 80.4%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container .culture_wrapper_left p:nth-child(8) {
    top: 45.5%;
  }
}
.about_us_numbers .about_us_numbers_contents_container #sales {
  grid-column: 1/3;
  grid-row: 7/9;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #sales {
    grid-row: 4/5;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #sales span {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #sales {
    grid-row: 8/9;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #sales span {
    font-size: 20vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #sales p {
  position: absolute;
  top: 67%;
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #sales p {
    top: 63%;
  }
}
.about_us_numbers .about_us_numbers_contents_container #gender_rate {
  grid-column: 3/5;
  grid-row: 7/11;
}
.about_us_numbers .about_us_numbers_contents_container #gender_rate #gender_text1 {
  display: none;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #gender_rate #gender_text1 {
    display: inline-block;
    position: absolute;
    top: 70%;
    right: 5%;
    width: 20%;
    left: auto;
  }
}
.about_us_numbers .about_us_numbers_contents_container #gender_rate #gender_text2 {
  display: none;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #gender_rate #gender_text2 {
    display: inline-block;
    position: absolute;
    top: 70%;
    left: 6%;
    width: 20%;
  }
}
.about_us_numbers .about_us_numbers_contents_container #gender_rate #gender_rate_sp_img {
  display: none;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #gender_rate #gender_rate_sp_img {
    display: inline-block;
  }
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #gender_rate #gender_rate_img {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #gender_rate {
    grid-row: 6/7;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #gender_rate {
    grid-row: 10/11;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #gender_rate span {
    font-size: 10vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #gender_rate .gender-wrapper {
  position: absolute;
  top: 0;
  left: 29%;
  width: 48%;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #gender_rate .gender-wrapper {
    display: none;
  }
}
.about_us_numbers .about_us_numbers_contents_container #gender_rate .gender-wrapper p:nth-child(1) {
  top: 23.5%;
}
.about_us_numbers .about_us_numbers_contents_container #gender_rate .gender-wrapper p:nth-child(2) {
  top: 82.5%;
}
.about_us_numbers .about_us_numbers_contents_container #overtime_avg {
  grid-column: 5/7;
  grid-row: 7/9;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #overtime_avg {
    grid-row: 7/8;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #overtime_avg span {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #overtime_avg {
    grid-row: 11/12;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #overtime_avg span {
    font-size: 20vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #overtime_avg p {
  position: absolute;
  top: 65%;
}
.about_us_numbers .about_us_numbers_contents_container #holidays {
  grid-column: 1/3;
  grid-row: 9/11;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #holidays {
    grid-row: 6/7;
    grid-column: 1/2;
  }
}
.about_us_numbers .about_us_numbers_contents_container #holidays p {
  top: 63%;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #holidays span {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #holidays {
    grid-row: 9/10;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #holidays span {
    font-size: 20vw;
  }
  .about_us_numbers .about_us_numbers_contents_container #holidays p {
    top: 63%;
  }
}
.about_us_numbers .about_us_numbers_contents_container #paid_holidays_rate {
  grid-column: 5/7;
  grid-row: 9/11;
}
@media screen and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #paid_holidays_rate {
    grid-row: 7/8;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .about_us_numbers .about_us_numbers_contents_container #paid_holidays_rate span {
    font-size: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .about_us_numbers .about_us_numbers_contents_container #paid_holidays_rate {
    grid-row: 12/13;
    grid-column: 1/2;
  }
  .about_us_numbers .about_us_numbers_contents_container #paid_holidays_rate span {
    font-size: 20vw;
  }
}
.about_us_numbers .about_us_numbers_contents_container #paid_holidays_rate p {
  top: 63%;
}

.about_us_detail h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 40px;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .about_us_detail h2 {
    font-size: 24px;
    line-height: 16px;
    margin: 65px 0 47px 0;
  }
}
.about_us_detail .about_us_detail_list {
  width: 80.36%;
  margin: 85px auto 0;
}
@media screen and (max-width: 1023px) {
  .about_us_detail .about_us_detail_list {
    width: 100%;
    margin: 0 0 54px 0;
  }
}
.about_us_detail .about_us_detail_list li {
  display: flex;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid #313131;
}
@media screen and (max-width: 1023px) {
  .about_us_detail .about_us_detail_list li {
    justify-content: space-between;
    padding: 8px 0;
  }
}
.about_us_detail .about_us_detail_list li h3 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  width: 24.43%;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .about_us_detail .about_us_detail_list li h3 {
    font-size: 10px;
    line-height: 16px;
    width: 20%;
    font-weight: 700;
  }
}
.about_us_detail .about_us_detail_list li p {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .about_us_detail .about_us_detail_list li p {
    font-size: 10px;
    line-height: 16px;
    width: 60%;
    font-weight: 700;
  }
}

#sp_project_img_1 {
  display: none;
}
@media screen and (max-width: 1023px) {
  #sp_project_img_1 {
    width: 100vw;
    display: inline-block;
  }
}

#sp_project_img_2 {
  display: none;
}
@media screen and (max-width: 1023px) {
  #sp_project_img_2 {
    width: 100vw;
    display: inline-block;
  }
}

.project_detail h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 42px;
}
@media screen and (max-width: 1023px) {
  .project_detail h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
.project_detail .project_detail_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 72px 0;
  border-bottom: 1px solid #D1D0D0;
}
@media screen and (max-width: 1023px) {
  .project_detail .project_detail_content {
    flex-direction: column;
    padding: 54px 0;
  }
}
.project_detail .project_detail_content:nth-last-child(1) {
  border-bottom: none;
  padding: 72px 0 0;
}
@media screen and (max-width: 1023px) {
  .project_detail .project_detail_content:nth-last-child(1) {
    padding: 48px 0;
  }
}
.project_detail .project_detail_content img {
  width: 41.45%;
}
@media screen and (max-width: 1023px) {
  .project_detail .project_detail_content img {
    width: 100%;
  }
}
.project_detail .project_detail_content .project_detail_texts {
  width: 55%;
}
@media screen and (max-width: 1023px) {
  .project_detail .project_detail_content .project_detail_texts {
    width: 100%;
  }
}
.project_detail .project_detail_content .project_detail_texts h3 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  line-height: 40px;
}
@media screen and (max-width: 1023px) {
  .project_detail .project_detail_content .project_detail_texts h3 {
    font-size: 20px;
    margin-top: 52px;
  }
}
.project_detail .project_detail_content .project_detail_texts p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
  margin: 20px 0 0;
}
@media screen and (max-width: 1023px) {
  .project_detail .project_detail_content .project_detail_texts p {
    font-size: 16px;
    line-height: 24px;
  }
}

.project_interview {
  background-color: #F5F5F5;
  margin: 0 0 147px;
}
@media screen and (max-width: 1023px) {
  .project_interview {
    margin: 0;
  }
}
.project_interview h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 42px;
}
@media screen and (max-width: 1023px) {
  .project_interview h2 {
    margin-top: 60px;
    margin-bottom: 31px;
    font-size: 30px;
  }
}
.project_interview .project_interview_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project_interview .project_interview_content:nth-last-child(1) {
  margin: 120px 0 0;
}
@media screen and (max-width: 1023px) {
  .project_interview .project_interview_content:nth-last-child(1) {
    margin-top: 28px;
  }
}
.project_interview .project_interview_content .project_interview_texts {
  width: 45%;
  max-width: 675px;
}
@media screen and (max-width: 1023px) {
  .project_interview .project_interview_content .project_interview_texts {
    width: 100%;
  }
}
.project_interview .project_interview_content .project_interview_texts h3 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  line-height: 40px;
}
@media screen and (max-width: 1023px) {
  .project_interview .project_interview_content .project_interview_texts h3 {
    margin-bottom: 22px;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
  }
}
.project_interview .project_interview_content .project_interview_texts h4 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 32px;
  line-height: 40px;
  margin: 20px 0 0;
}
@media screen and (max-width: 1023px) {
  .project_interview .project_interview_content .project_interview_texts h4 {
    font-size: 20px;
    line-height: 25px;
  }
}
.project_interview .project_interview_content .project_interview_texts h4 span {
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  .project_interview .project_interview_content .project_interview_texts h4 span {
    font-size: 16px;
    line-height: 25px;
  }
}
.project_interview .project_interview_content .project_interview_texts p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
  margin: 20px 0 0;
}
@media screen and (max-width: 1023px) {
  .project_interview .project_interview_content .project_interview_texts p {
    font-size: 12px;
    line-height: 20px;
  }
}
.project_interview .project_interview_content img {
  width: 50%;
  max-width: 733px;
}
@media screen and (max-width: 1023px) {
  .project_interview .project_interview_content img {
    display: none;
    max-width: none;
    margin-left: -7%;
  }
}

.talk_summary h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 42px;
}
@media screen and (max-width: 1023px) {
  .talk_summary h2 {
    font-size: 30px;
    line-height: 16px;
    font-weight: 700;
  }
}
.talk_summary p {
  width: 81%;
  margin: 0 auto;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 24px;
  line-height: 40px;
}
@media screen and (max-width: 1023px) {
  .talk_summary p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 68px 0;
    width: 100%;
  }
}

.talk_voice h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 42px;
}
@media screen and (max-width: 1023px) {
  .talk_voice h2 {
    font-size: 30px;
    line-height: 16px;
    font-weight: 700;
  }
}
.talk_voice .voice_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 80px;
}
@media screen and (max-width: 1023px) {
  .talk_voice .voice_content {
    display: inline-block;
    margin-bottom: 41px;
  }
}
@media screen and (max-width: 1023px) {
  .talk_voice .voice_content .pc_talk_image {
    display: none;
  }
}
.talk_voice .voice_content .sp_talk_image {
  display: none;
}
@media screen and (max-width: 1023px) {
  .talk_voice .voice_content .sp_talk_image {
    display: inline-block;
    width: 80%;
    margin-bottom: 41px;
  }
}
@media screen and (max-width: 1023px) {
  .talk_voice .voice_content .sp_talk_img {
    width: 60%;
    height: 60%;
  }
}
@media screen and (max-width: 1023px) {
  .talk_voice .voice_content .sp_talk_display_area {
    display: flex;
    justify-content: flex-end;
  }
}
.talk_voice .voice_content .voice_texts {
  width: 49.55%;
  display: flex;
  flex-flow: column;
  gap: 36px;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .talk_voice .voice_content .voice_texts {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .talk_voice .voice_content .voice_texts .reverse {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.talk_voice .voice_content .voice_texts p {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  gap: 44px;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .talk_voice .voice_content .voice_texts p {
    font-size: 12px;
    line-height: 20px;
  }
}
.talk_voice .voice_content .voice_texts p img {
  width: 100px;
}
@media screen and (max-width: 1023px) {
  .talk_voice .voice_content .voice_texts p img {
    width: 60px;
  }
}
.talk_voice .voice_content img {
  width: 45%;
  max-width: 500px;
}

@media screen and (max-width: 1023px) {
  .job_flow {
    margin-bottom: 120px;
  }
}
.job_flow h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 42px;
}
@media screen and (max-width: 1023px) {
  .job_flow h2 {
    font-size: 30px;
    margin-top: 30px;
    font-weight: 700;
  }
}
.job_flow .job_flow_contents {
  width: 100%;
  margin: 70px 0 0;
  display: flex;
  flex-flow: column;
  gap: 80px;
}
@media screen and (max-width: 1023px) {
  .job_flow .job_flow_contents {
    margin-top: 40px;
  }
}
.job_flow .job_flow_contents article {
  width: 100%;
  border: 2px solid #313131;
  padding: 38px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .job_flow .job_flow_contents article {
    flex-direction: column;
    padding: 3.3%;
  }
}
.job_flow .job_flow_contents article img {
  width: 32.8%;
}
@media screen and (max-width: 1023px) {
  .job_flow .job_flow_contents article img:not(.job_btn) {
    width: 100%;
    object-fit: contain;
  }
}
.job_flow .job_flow_contents article .job_flow_content_text {
  width: 63.34%;
}
@media screen and (max-width: 1023px) {
  .job_flow .job_flow_contents article .job_flow_content_text {
    width: 100%;
  }
}
.job_flow .job_flow_contents article .job_flow_content_text h3 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
  .job_flow .job_flow_contents article .job_flow_content_text h3 {
    line-height: 1.2;
    margin: 25px 0 5px 0;
    font-size: 20px;
    font-weight: 700;
  }
}
.job_flow .job_flow_contents article .job_flow_content_text ul {
  list-style: outside;
  padding: 0 0 0 20px;
}
.job_flow .job_flow_contents article .job_flow_content_text ul li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
  font-size: 20px;
  line-height: 2;
  margin: 16px 0 0;
}
@media screen and (max-width: 1023px) {
  .job_flow .job_flow_contents article .job_flow_content_text ul li {
    margin: 0;
    font-size: 12px;
  }
}
.job_flow .job_flow_contents article .job_flow_content_text a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 53px;
  float: right;
  margin: 20px 0 0;
}
.job_flow .job_flow_contents article .job_flow_content_text a img {
  width: 24px;
}

.pages_sections.page_persons .pages_mv_texts {
  margin-bottom: 60px;
}
.pages_sections.page_persons .pages_mv_texts + .pc_mv {
  display: inline-block;
}
.pages_sections.page_persons .pages_mv_texts + .pc_mv + .sp_mv {
  display: none;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .pages_mv_texts {
    margin-bottom: 22px;
  }
  .pages_sections.page_persons .pages_mv_texts + .pc_mv {
    display: none;
  }
  .pages_sections.page_persons .pages_mv_texts + .pc_mv + .sp_mv {
    display: inline-block;
  }
}
.pages_sections.page_persons h1 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 40px;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons h1 {
    font-size: 35px;
    line-height: 60px;
  }
}
.pages_sections.page_persons .person_heading article {
  width: 912px;
  margin: 0 auto;
}
.pages_sections.page_persons .person_heading article h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  line-height: 43px;
}
.pages_sections.page_persons .person_heading article p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
  font-size: 20px;
  line-height: 40px;
  margin: 22px 0 0;
}
.pages_sections.page_persons .person_interview {
  margin: 160px 0 0;
  padding: 0 0 100px;
  display: flex;
  flex-flow: column;
  gap: 100px;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_interview {
    gap: 0;
    padding: 0 0 40px;
    margin: 0;
  }
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_interview #person_interview_article1 {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_interview #person_interview_article3 {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
}
.pages_sections.page_persons .person_interview #interview_img1 {
  display: none;
}
.pages_sections.page_persons .person_interview #interview_img2 {
  display: none;
}
.pages_sections.page_persons .person_interview article {
  width: 100%;
  display: flex;
  gap: 6.18%;
}
.pages_sections.page_persons .person_interview article #interview_img_box2 {
  display: none;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_interview article #interview_img_box2 {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
  }
}
.pages_sections.page_persons .person_interview article #interview_img_box1 {
  display: none;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_interview article #interview_img_box1 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
}
.pages_sections.page_persons .person_interview article .person_interview_texts {
  width: 41.32%;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_interview article .person_interview_texts {
    width: 100%;
    padding: 5%;
  }
}
.pages_sections.page_persons .person_interview article .person_interview_texts div {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pages_sections.page_persons .person_interview article .person_interview_texts div hr {
  width: 130px;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_interview article .person_interview_texts div hr {
    width: 80px;
  }
}
.pages_sections.page_persons .person_interview article .person_interview_texts div p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
  font-size: 20px;
  font-weight: 500;
}
.pages_sections.page_persons .person_interview article .person_interview_texts h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  line-height: 43px;
  margin: 14px 0 22px;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_interview article .person_interview_texts h2 {
    margin: 4px 0 13px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
  }
}
.pages_sections.page_persons .person_interview article .person_interview_texts p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5;
  line-height: 40px;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_interview article .person_interview_texts p {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
  }
}
.pages_sections.page_persons .person_interview article:nth-child(even) {
  justify-content: center;
  padding: 0 17.7%;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_interview article:nth-child(even) {
    padding: 0;
  }
}
.pages_sections.page_persons .person_interview article:nth-child(even) .person_interview_texts {
  width: 100%;
}
.pages_sections.page_persons .person_interview article:nth-child(1), .pages_sections.page_persons .person_interview article:nth-child(5) {
  justify-content: flex-start;
}
.pages_sections.page_persons .person_interview article:nth-child(3) {
  justify-content: flex-end;
}
.pages_sections.page_persons .person_interview article img {
  width: 46.94%;
  object-fit: contain;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_interview article img {
    width: 80%;
  }
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_flow {
    margin-bottom: 130px;
  }
}
.pages_sections.page_persons .person_flow h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 46px;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_flow h2 {
    font-size: 35px;
    line-height: 16px;
    margin-bottom: 70px;
  }
}
.pages_sections.page_persons .person_flow .person_flow_wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_flow .person_flow_wrapper {
    flex-direction: column;
  }
}
.pages_sections.page_persons .person_flow .person_flow_wrapper img {
  width: 41.09%;
  object-fit: fill;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_flow .person_flow_wrapper img {
    width: 100vw;
    display: inline-block;
    margin-left: -6%;
    margin-bottom: 32px;
  }
}
.pages_sections.page_persons .person_flow .person_flow_wrapper .person_flow_schedule {
  width: 53%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_flow .person_flow_wrapper .person_flow_schedule {
    width: 100%;
    gap: 15px;
    padding: 2%;
  }
}
.pages_sections.page_persons .person_flow .person_flow_wrapper .person_flow_schedule p {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 54px;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_flow .person_flow_wrapper .person_flow_schedule p {
    font-size: 20px;
    line-height: 24px;
    gap: 34px;
  }
}
.pages_sections.page_persons .person_flow .person_flow_wrapper .person_flow_schedule p span {
  width: 160px;
  height: 47px;
  background-color: #0168B7;
  color: white;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .pages_sections.page_persons .person_flow .person_flow_wrapper .person_flow_schedule p span {
    font-size: 16px;
    line-height: 16px;
    width: 90px;
    height: 26px;
  }
}

.recruit_sections section:nth-child(odd) {
  background-color: #F5F5F5;
}
.recruit_sections .pages_mv_section {
  background-color: white !important;
}
@media screen and (max-width: 1023px) {
  .recruit_sections .pages_mv_section {
    margin: 0 0 60px !important;
  }
  .recruit_sections .pages_mv_section h1 {
    font-size: 35px;
    font-weight: 500;
    line-height: 35px;
  }
  .recruit_sections .pages_mv_section span {
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    margin: 13px 0 0;
  }
  .recruit_sections .pages_mv_section img {
    margin: 0;
    width: 100%;
    aspect-ratio: 1.725/1;
    object-fit: cover;
  }
}
.recruit_sections h2 {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  font-size: 40px;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .recruit_sections h2 {
    font-size: 30px;
    line-height: 16px;
    margin-left: 5.024%;
  }
}
.recruit_sections .recruit_statue article {
  width: 100%;
}
.recruit_sections .recruit_statue article img {
  width: 100%;
  margin: 30px 0 0;
}
.recruit_sections .recruit_statue article ol {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 90px;
}
.recruit_sections .recruit_statue article ol li {
  width: 306px;
  border-bottom: 3px solid #313131;
  display: flex;
  align-items: center;
  gap: 60px;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 30px;
  padding: 0 10px 38px;
}
.recruit_sections .recruit_statue article ol li span {
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .recruit_sections .recruit_statue {
    padding: 87px 0 60px;
    background: linear-gradient(#F5F5F5 80%, white 100%);
  }
  .recruit_sections .recruit_statue article {
    width: 100%;
  }
  .recruit_sections .recruit_statue article ol {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 40px;
  }
  .recruit_sections .recruit_statue article ol li {
    width: 222px;
    gap: 65px;
    font-size: 20px;
    line-height: 16px;
    padding: 0 10px 24.02px;
  }
}
.recruit_sections .recruit_detail article {
  width: 87.55%;
  margin: 48px auto 0;
}
.recruit_sections .recruit_detail article div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 13.08%;
  padding: 60px 0;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  border-bottom: 1px solid #8B8B8B;
}
.recruit_sections .recruit_detail article div dt {
  min-width: 80px;
}
.recruit_sections .recruit_detail article div dd {
  line-height: 30px;
}
.recruit_sections .recruit_detail article .recruit_detail_terms p {
  display: flex;
  flex-flow: column;
}
.recruit_sections .recruit_detail article .recruit_detail_terms p:nth-child(1) {
  margin: 0 0 27px;
}
.recruit_sections .recruit_detail article .recruit_detail_terms p span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  border-radius: 20px;
  border: 1px solid #0168B7;
  width: fit-content;
  margin: 0 0 0 -15px;
}
@media screen and (max-width: 1023px) {
  .recruit_sections .recruit_detail article .recruit_detail_terms p span {
    margin: 0;
  }
}
.recruit_sections .recruit_detail article .recruit_detail_pay span {
  font-size: 10px;
}
@media screen and (max-width: 1023px) {
  .recruit_sections .recruit_detail {
    padding: 39px 0 61px;
  }
  .recruit_sections .recruit_detail article {
    width: 83.819%;
    margin: 61px auto 0;
    border: 1px solid #000;
  }
  .recruit_sections .recruit_detail article div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
    padding: 26px 0 21px;
    margin: 0 20px;
    font-size: 16px;
    font-weight: 700;
  }
}
.recruit_sections .recruit_flow p {
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  line-height: 40px;
  margin: 20px 0 0;
}
.recruit_sections .recruit_flow .flow_contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0 0;
}
.recruit_sections .recruit_flow .flow_contents p {
  width: 13.64%;
  aspect-ratio: 2.14/1;
  background-color: #0168B7;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: white;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin: 0;
  padding: 10px 0;
}
.recruit_sections .recruit_flow .flow_contents p span {
  font-size: 15px;
}
.recruit_sections .recruit_flow .flow_contents img {
  width: 3.36%;
}
.recruit_sections .recruit_flow .recruit_flow_caution {
  font-size: 15px;
}
@media screen and (max-width: 1023px) {
  .recruit_sections .recruit_flow {
    padding: 63px 0;
  }
  .recruit_sections .recruit_flow p {
    margin: 30px 5.024% 0;
    line-height: 32px;
  }
  .recruit_sections .recruit_flow .flow_contents {
    width: 64.456%;
    margin: 50px auto 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
  }
  .recruit_sections .recruit_flow .flow_contents p {
    width: 100%;
    aspect-ratio: 3.375/1;
  }
  .recruit_sections .recruit_flow .flow_contents img {
    width: 12.5%;
    transform: rotate(90deg);
  }
  .recruit_sections .recruit_flow .recruit_flow_caution {
    font-size: 10px;
    line-height: 16px;
    font-weight: 700;
    margin: 0 17.772%;
    padding: 0;
  }
}
.recruit_sections .recruit_how_entry article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 52px 0 0;
}
.recruit_sections .recruit_how_entry article a {
  width: 32.91%;
  border: 2px solid #009DE8;
}
.recruit_sections .recruit_how_entry article a img {
  width: 100%;
}
.recruit_sections .recruit_how_entry article p {
  width: 60%;
  color: #313131;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  line-height: 30px;
}
@media screen and (max-width: 1023px) {
  .recruit_sections .recruit_how_entry {
    margin: 60px 0 0;
  }
  .recruit_sections .recruit_how_entry article {
    width: 88.859%;
    margin: 20px auto 34px;
    flex-flow: column;
  }
  .recruit_sections .recruit_how_entry article a {
    width: 100%;
    border: none;
  }
  .recruit_sections .recruit_how_entry article p {
    width: 83.283%;
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
  }
}

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