@charset "UTF-8";
/*===================================
    Variables
===================================*/
:root {
  --color_blue: #0066FF;
  --color_blue_light: #3183ff;
  --color_black: #000000;
  --color_black_light: #3d3d3d;
  --color_emerald: #00EAC4;
  --color_light_blue: #E5F3FF;
  --color_interview_yellow: #FFF36F;
  --color_interview_green: #45FF89;
  --color_interview_blue: #00F6FF;
  --color_white: #FFFFFF;
  --color_gray: #999999;
}

/*-----------------------------------
    Font
-----------------------------------*/
/*-----------------------------------
    3D Obje Float Anime
-----------------------------------*/
@-webkit-keyframes float_anime_01 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes float_anime_01 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@-webkit-keyframes float_anime_02 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
@keyframes float_anime_02 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
/*-----------------------------------
    Mobile Width
-----------------------------------*/
/*===================================
    Mixin
===================================*/
/*-----------------------------------
    Common
-----------------------------------*/
/*-----------------------------------
    Btn
-----------------------------------*/
/*-----------------------------------
    下層ページタイトル
-----------------------------------*/
/*-----------------------------------
    社員紹介ページ
-----------------------------------*/
/*-----------------------------------
    事業紹介ページ
-----------------------------------*/
/*===================================
    Common 
===================================*/
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  position: relative;
}

body.inner_page_news {
  background-color: var(--color_light_blue);
  background-image: url(../images/news/corner_bg.png);
  background-size: 889px 582px;
  background-position: right top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  body.inner_page_news {
    background-size: 350px 229px;
  }
}

body.inner_page_interview {
  background-color: var(--color_light_blue);
  background-image: url(../images/interview/corner_bg.png);
  background-size: 889px 582px;
  background-position: right top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  body.inner_page_interview {
    background-size: 350px 229px;
  }
}

body.inner_page_work {
  background-color: var(--color_light_blue);
  background-image: url(../images/work/corner_bg.png);
  background-size: 889px 582px;
  background-position: right top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  body.inner_page_work {
    background-size: 350px 229px;
  }
}

body.inner_page_recruitment {
  background-color: var(--color_light_blue);
  background-image: url(../images/recruitment/corner_bg.png);
  background-size: 889px 582px;
  background-position: right top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  body.inner_page_recruitment {
    background-size: 350px 229px;
  }
}

body.inner_page {
  background-color: var(--color_light_blue);
}

ul {
  list-style: none;
}

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

img {
  vertical-align: bottom;
}

.br_pc_non {
  display: none;
}

.br_sp_non {
  display: block;
}

@media screen and (max-width: 768px) {
  .br_pc_non {
    display: block;
  }
  .br_sp_non {
    display: none;
  }
}
/*-----------------------------------
    Sub Page - Loading
-----------------------------------*/
/* Loading Block */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color_light_blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 11000;
  transition: all 1s;
}

.orbit-spinner,
.orbit-spinner * {
  box-sizing: border-box;
}

.orbit-spinner {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  perspective: 800px;
}

.orbit-spinner .orbit {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.orbit-spinner .orbit:nth-child(1) {
  left: 0%;
  top: 0%;
  -webkit-animation: orbit-spinner-orbit-one-animation 1200ms linear infinite;
          animation: orbit-spinner-orbit-one-animation 1200ms linear infinite;
  border-bottom: 3px solid var(--color_blue);
}

.orbit-spinner .orbit:nth-child(2) {
  right: 0%;
  top: 0%;
  -webkit-animation: orbit-spinner-orbit-two-animation 1200ms linear infinite;
          animation: orbit-spinner-orbit-two-animation 1200ms linear infinite;
  border-right: 3px solid var(--color_blue);
}

.orbit-spinner .orbit:nth-child(3) {
  right: 0%;
  bottom: 0%;
  -webkit-animation: orbit-spinner-orbit-three-animation 1200ms linear infinite;
          animation: orbit-spinner-orbit-three-animation 1200ms linear infinite;
  border-top: 3px solid var(--color_blue);
}

@-webkit-keyframes orbit-spinner-orbit-one-animation {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes orbit-spinner-orbit-one-animation {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-webkit-keyframes orbit-spinner-orbit-two-animation {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes orbit-spinner-orbit-two-animation {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-webkit-keyframes orbit-spinner-orbit-three-animation {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@keyframes orbit-spinner-orbit-three-animation {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
/* Hide Loading Block */
.loaded {
  opacity: 0;
  visibility: hidden;
}

/*-----------------------------------
    Sub Page - Corner 3D Object
-----------------------------------*/
.corner_3d_obj_news {
  position: absolute;
  top: 130px;
  right: 500px;
  width: 170px;
  transform: rotate(20deg);
  -webkit-animation: float_anime_news 2s ease-in-out infinite;
          animation: float_anime_news 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .corner_3d_obj_news {
    top: 70px;
    right: 150px;
    width: 60px;
  }
}
@-webkit-keyframes float_anime_news {
  0%, 100% {
    transform: translateY(0) rotate(20deg);
  }
  50% {
    transform: translateY(-20px) rotate(20deg);
    @media screen and (max-width: 768px) {
      .corner_3d_obj_news {
        transform: translateY(-10px) rotate(20deg);
      }
    }
  }
}
@keyframes float_anime_news {
  0%, 100% {
    transform: translateY(0) rotate(20deg);
  }
  50% {
    transform: translateY(-20px) rotate(20deg);
    @media screen and (max-width: 768px) {
      .corner_3d_obj_news {
        transform: translateY(-10px) rotate(20deg);
      }
    }
  }
}
.corner_3d_obj_news img {
  width: 100%;
}

.corner_3d_obj_work {
  position: absolute;
  top: 100px;
  right: 450px;
  width: 150px;
  transform: rotate(20deg);
  -webkit-animation: float_anime_work 2s ease-in-out infinite;
          animation: float_anime_work 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .corner_3d_obj_work {
    top: 60px;
    right: 170px;
    width: 80px;
  }
}
@-webkit-keyframes float_anime_work {
  0%, 100% {
    transform: translateY(0) rotate(20deg);
  }
  50% {
    transform: translateY(-20px) rotate(20deg);
    @media screen and (max-width: 768px) {
      .corner_3d_obj_work {
        transform: translateY(-10px) rotate(20deg);
      }
    }
  }
}
@keyframes float_anime_work {
  0%, 100% {
    transform: translateY(0) rotate(20deg);
  }
  50% {
    transform: translateY(-20px) rotate(20deg);
    @media screen and (max-width: 768px) {
      .corner_3d_obj_work {
        transform: translateY(-10px) rotate(20deg);
      }
    }
  }
}
.corner_3d_obj_work img {
  width: 100%;
}

.corner_3d_obj_recruitment {
  position: absolute;
  top: 120px;
  right: 400px;
  width: 130px;
  transform: rotate(20deg);
  -webkit-animation: float_anime_recruitment 2s ease-in-out infinite;
          animation: float_anime_recruitment 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .corner_3d_obj_recruitment {
    top: 40px;
    right: 150px;
    width: 80px;
  }
}
@-webkit-keyframes float_anime_recruitment {
  0%, 100% {
    transform: translateY(0) rotate(20deg);
  }
  50% {
    transform: translateY(-20px) rotate(20deg);
    @media screen and (max-width: 768px) {
      .corner_3d_obj_recruitment {
        transform: translateY(-10px) rotate(20deg);
      }
    }
  }
}
@keyframes float_anime_recruitment {
  0%, 100% {
    transform: translateY(0) rotate(20deg);
  }
  50% {
    transform: translateY(-20px) rotate(20deg);
    @media screen and (max-width: 768px) {
      .corner_3d_obj_recruitment {
        transform: translateY(-10px) rotate(20deg);
      }
    }
  }
}
.corner_3d_obj_recruitment img {
  width: 100%;
}

/*===================================
    Header
===================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  header {
    height: 80px;
    padding: 0;
  }
}

.fix_hdr {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hdr_logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .hdr_logo {
    margin-top: 20px;
    margin-left: 5%;
  }
}
.hdr_logo a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 1.4rem;
  line-height: 1;
}
.hdr_logo a span {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}
.hdr_logo a::before {
  content: "";
  display: block;
  width: 74px;
  height: 66px;
  background: url(../images/common/logo_black@2x.png) no-repeat center;
  background-size: 74px 66px;
}
@media screen and (max-width: 768px) {
  .hdr_logo a {
    gap: 10px;
    font-size: 1.1rem;
  }
  .hdr_logo a span {
    font-size: 0.8rem;
    margin-top: 5px;
  }
  .hdr_logo a::before {
    width: 50px;
    height: 44px;
    background-size: 50px 44px;
  }
}

.hdr_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .hdr_nav {
    width: 85%;
    margin: 0 auto;
  }
}

.hdr_nav_ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-weight: bold;
}
.hdr_nav_ul li {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}
.hdr_nav_ul li:hover {
  color: var(--color_black_light);
}
.hdr_nav_ul li .hdr_nav_dropdown_ul {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  position: absolute;
  top: 30px;
  left: -75px;
  width: 200px;
  background-color: var(--color_blue);
  border-radius: 5px;
}
.hdr_nav_ul li .hdr_nav_dropdown_ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.hdr_nav_ul li .hdr_nav_dropdown_ul li:last-child {
  border-bottom: none;
}
.hdr_nav_ul li .hdr_nav_dropdown_ul li a {
  color: var(--color_white);
  transition: all 0.2s;
  display: block;
  padding: 10px 20px;
}
.hdr_nav_ul li .hdr_nav_dropdown_ul li a:hover {
  opacity: 0.8;
}
.hdr_nav_ul li:hover .hdr_nav_dropdown_ul {
  visibility: visible;
  opacity: 1;
}

.hdr_nav_btn {
  width: 150px;
  height: 45px;
  background-color: #0066FF;
  border-radius: 5px;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 45px;
  transition: all 0.2s;
  position: relative;
}
.hdr_nav_btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 20px;
}
.hdr_nav_btn:hover {
  background-color: #004CFF;
}
.hdr_nav_btn::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
}

/*-----------------------------------
    Header SP
-----------------------------------*/
/*---------- gnav_btn ----------*/
.gnav_btn {
  display: none;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 15px;
  right: 5%;
  z-index: 100;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .gnav_btn {
    display: block;
  }
}

.gnav_btn.is-open {
  right: 3%;
}

.gnav_btn::before,
.gnav_btn::after {
  display: block;
  content: "";
  height: 2px;
  background-color: #000;
  position: absolute;
  transition: all 0.4s;
}

.gnav_btn::before {
  width: 50px;
  top: 18px;
}

.gnav_btn::after {
  width: 30px;
  bottom: 18px;
  left: 20px;
}

.gnav_btn.is-open::before {
  transform: translateY(6px) rotate(-45deg);
}

.gnav_btn.is-open::after {
  transform: translateY(-6px) rotate(45deg);
  width: 50px;
  left: 0;
}

/*---------- header SP ----------*/
header.is-open {
  height: 100dvh;
  display: block;
}

/*---------- hdr_nav ----------*/
@media screen and (max-width: 768px) {
  .hdr_nav {
    display: none;
  }
}
.hdr_nav.is-open {
  display: block;
  margin-top: 30px;
}

.hdr_nav_ul.is-open {
  display: block;
  margin-bottom: 30px;
}
.hdr_nav_ul.is-open li {
  border-bottom: 1px solid var(--color_gray);
  padding: 0 0 10px 10px;
  margin-bottom: 10px;
}
.hdr_nav_ul.is-open li:last-child {
  margin-bottom: 0;
}
.hdr_nav_ul.is-open li a {
  display: block;
  width: 100%;
  position: relative;
}
.hdr_nav_ul.is-open li a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--color_blue);
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}
.hdr_nav_ul.is-open li .hdr_nav_dropdown_ul {
  visibility: visible;
  opacity: 1;
  position: relative;
  top: auto;
  left: 0;
  width: 100%;
  background-color: transparent;
  border-radius: 0;
  padding-left: 30px;
  margin-top: 5px;
}
.hdr_nav_ul.is-open li .hdr_nav_dropdown_ul li {
  border-bottom: none;
  padding: 0;
  margin-bottom: 5px;
}
.hdr_nav_ul.is-open li .hdr_nav_dropdown_ul li:last-child {
  margin-bottom: 0;
}
.hdr_nav_ul.is-open li .hdr_nav_dropdown_ul li a {
  color: var(--color_black);
  padding: 0;
}
.hdr_nav_ul.is-open li .hdr_nav_dropdown_ul li a:hover {
  opacity: 1;
}

.hdr_nav_btn.is-open {
  width: 100%;
  height: 60px;
  line-height: 60px;
}

body.noscroll {
  height: 100%;
  overflow: hidden;
}

.gnav_bg {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  width: 100%;
  height: 100dvh;
  background-color: var(--color_light_blue);
  transition-property: opacity, visibility;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
}
.gnav_bg.is-open {
  opacity: 1;
  visibility: visible;
}

/*===================================
    Footer
===================================*/
/*-----------------------------------
    新卒採用 ｜ 募集要項
-----------------------------------*/
.ftr_recruit_entry_wrap {
  position: relative;
  z-index: 2;
}

.ftr_recruit_wrap {
  background-color: var(--color_blue);
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .ftr_recruit_wrap {
    padding: 40px 0 50px;
  }
}

.ftr_recruit_inner {
  width: 585px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .ftr_recruit_inner {
    width: 85%;
  }
}

.ftr_recruit_title {
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .ftr_recruit_title {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.ftr_recruit_title span {
  color: var(--color_emerald);
}

.ftr_recruit_btn {
  position: relative;
  width: 100%;
  color: #fff;
  padding-bottom: 5px;
}
.ftr_recruit_btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color_emerald);
  transform-origin: right center;
}
.ftr_recruit_btn:hover::before {
  -webkit-animation: ftr_recruit_underline 0.5s ease;
          animation: ftr_recruit_underline 0.5s ease;
}
.ftr_recruit_btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ftr_recruit_btn a p:first-child {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ftr_recruit_btn a p:first-child {
    font-size: 2rem;
  }
}
.ftr_recruit_btn a p:last-child {
  position: relative;
  font-weight: bold;
  padding-right: 25px;
}
.ftr_recruit_btn a p:last-child::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--color_emerald);
}

@-webkit-keyframes ftr_recruit_underline {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  51% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

@keyframes ftr_recruit_underline {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  51% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
/*-----------------------------------
    ENTRY
-----------------------------------*/
.ftr_entry_wrap {
  position: relative;
  height: 600px;
}
@media screen and (max-width: 768px) {
  .ftr_entry_wrap {
    height: 300px;
  }
}
.ftr_entry_wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}

.ftr_entry_btn {
  width: 720px;
  height: 180px;
  background-color: #000;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .ftr_entry_btn {
    width: 85%;
    height: 180px;
  }
}
.ftr_entry_btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 110px 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ftr_entry_btn a {
    display: block;
    padding: 20px 30px;
  }
}
.ftr_entry_btn a p:first-child {
  font-family: "Jost", sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  overflow: hidden;
  text-shadow: 0 -1em 0 var(--color_emerald), 0 0 0 var(--color_emerald);
  transition: text-shadow 0.3s;
}
@media screen and (max-width: 768px) {
  .ftr_entry_btn a p:first-child {
    font-size: 4rem;
    margin-bottom: 10px;
  }
}
.ftr_entry_btn a:hover p:first-child {
  text-shadow: 0 0 0 var(--color_emerald), 0 1em 0 var(--color_emerald);
}
.ftr_entry_btn a p:last-child {
  color: #fff;
}
.ftr_entry_btn a::after {
  content: "";
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 768px) {
  .ftr_entry_btn a::after {
    right: 30px;
    border-width: 8px 0 8px 10px;
  }
}

/*-----------------------------------
    Footer
-----------------------------------*/
footer {
  color: #fff;
  background-color: #000;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer {
    display: block;
    padding: 10px 20px 30px;
  }
}

.ftr_logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .ftr_logo {
    gap: 10px;
    margin: 0 auto;
  }
}
.ftr_logo p:first-child {
  position: relative;
  top: -5px;
}
.ftr_logo p:last-child {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .ftr_logo p:last-child {
    font-size: 1.1rem;
  }
}

.ftr_corp_btn {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .ftr_corp_btn {
    text-align: center;
  }
}
.ftr_corp_btn a {
  text-decoration: underline;
  text-underline-offset: 7px;
  transition: all 0.2s;
}
.ftr_corp_btn a:hover {
  color: #ccc;
}

/*===================================
    Home
===================================*/
/*-----------------------------------
    Loader
-----------------------------------*/
.loader_wrapp {
  position: fixed;
  z-index: 11000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background-color: var(--color_light_blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader_inner {
  overflow: hidden;
}

.loader_logo {
  text-align: center;
  margin-bottom: 20px;
}

.loader_line {
  width: 200px;
  height: 3px;
  position: relative;
  margin-bottom: 5px;
}

.loader_line_base {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color_white);
}

.loader_line_count {
  position: absolute;
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--color_blue);
}

.loader_txt {
  text-align: center;
}

/*-----------------------------------
    Main
-----------------------------------*/
.main_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
}

.main_mov {
  width: 100%;
  height: 100%;
}
.main_mov video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_mov .main_mov_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .main_mov .main_mov_pc {
    display: none;
  }
}
.main_mov .main_mov_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .main_mov .main_mov_sp {
    display: block;
  }
}

/*---------- Main News ----------*/
.main_news_wrap {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  width: 365px;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .main_news_wrap {
    bottom: 20px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 90%;
  }
}

.main_news_h2 {
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  margin-bottom: 5px;
}

.main_news_item a {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.main_news_img {
  width: 100px;
  display: flex;
  gap: 10px;
}
.main_news_img img {
  border-radius: 5px;
  width: 100px;
}
.main_news_img::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  border-left: 1px dashed #999;
}

.main_news_text .main_news_date {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #999;
  margin-bottom: 5px;
}
.main_news_text .main_news_title {
  font-size: 1.4rem;
  line-height: 1.4;
}

/*---------- Main MV Text ----------*/
.main_mv_txt_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-flow: column;
  align-items: center;
  row-gap: 60px;
  transform-origin: center center;
}
@media screen and (max-width: 1710px) {
  .main_mv_txt_wrap {
    transform: translateX(-50%) translateY(-50%) scale(0.8);
  }
}
@media screen and (max-width: 1470px) {
  .main_mv_txt_wrap {
    transform: translateX(-50%) translateY(-50%) scale(0.7);
  }
}
@media screen and (max-width: 768px) {
  .main_mv_txt_wrap {
    transform: translateX(-50%) translateY(-50%) scale(0.27);
  }
}
.main_mv_txt_wrap .main_mv_txt_01 {
  display: flex;
  align-items: baseline;
  gap: 40px;
}
.main_mv_txt_wrap .main_mv_txt_01 span {
  display: block;
}
.main_mv_txt_wrap .main_mv_txt_02 {
  display: flex;
  align-items: baseline;
  gap: 40px;
}
.main_mv_txt_wrap .main_mv_txt_02 span {
  display: block;
}

/*-----------------------------------
    Message
-----------------------------------*/
.top_message_wrap {
  margin-top: 100vh;
  position: relative;
  z-index: 2;
  width: 100%;
  position: relative;
}

.top_message_3d_01 {
  position: absolute;
  top: 20px;
  right: 10%;
  z-index: 1;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .top_message_3d_01 {
    top: -10px;
    right: 5%;
    width: 80px;
  }
  .top_message_3d_01 img {
    width: 100%;
  }
}

.top_message_wrap svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top_message_inner {
  position: relative;
  min-height: 1850px;
  background: linear-gradient(40deg, #004CFF 0%, #004CFF 10%, #5094EF 20%, #AED0F4 30%, #DBE8F3 40%, #DBE8F3 100%);
  /* 縦線：::before で描画し、下→上に向かって薄く消えるマスクをかける */
}
@media screen and (max-width: 768px) {
  .top_message_inner {
    min-height: 1550px;
  }
}
.top_message_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0, transparent calc(20% - 0.5px), rgba(34, 34, 34, 0.3) calc(20% - 0.5px), rgba(34, 34, 34, 0.3) calc(20% + 0.5px), transparent calc(20% + 0.5px), transparent calc(40% - 0.5px), rgba(34, 34, 34, 0.3) calc(40% - 0.5px), rgba(34, 34, 34, 0.3) calc(40% + 0.5px), transparent calc(40% + 0.5px), transparent calc(60% - 0.5px), rgba(34, 34, 34, 0.3) calc(60% - 0.5px), rgba(34, 34, 34, 0.3) calc(60% + 0.5px), transparent calc(60% + 0.5px), transparent calc(80% - 0.5px), rgba(34, 34, 34, 0.3) calc(80% - 0.5px), rgba(34, 34, 34, 0.3) calc(80% + 0.5px), transparent calc(80% + 0.5px), transparent 100%);
  /* 下＝表示・上＝非表示で、上に向かって薄く消える */
  mask-image: linear-gradient(to top, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .top_message_inner::before {
    /* モバイル時は縦ラインを少し薄く */
    background: linear-gradient(90deg, transparent 0, transparent calc(20% - 0.5px), rgba(34, 34, 34, 0.18) calc(20% - 0.5px), rgba(34, 34, 34, 0.18) calc(20% + 0.5px), transparent calc(20% + 0.5px), transparent calc(40% - 0.5px), rgba(34, 34, 34, 0.18) calc(40% - 0.5px), rgba(34, 34, 34, 0.18) calc(40% + 0.5px), transparent calc(40% + 0.5px), transparent calc(60% - 0.5px), rgba(34, 34, 34, 0.18) calc(60% - 0.5px), rgba(34, 34, 34, 0.18) calc(60% + 0.5px), transparent calc(60% + 0.5px), transparent calc(80% - 0.5px), rgba(34, 34, 34, 0.18) calc(80% - 0.5px), rgba(34, 34, 34, 0.18) calc(80% + 0.5px), transparent calc(80% + 0.5px), transparent 100%);
  }
}

.h2_01 {
  font-family: "Jost", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10%;
}
@media screen and (max-width: 768px) {
  .h2_01 {
    font-size: 3rem;
    gap: 5px;
    margin-left: 5%;
  }
}
.h2_01::before {
  content: "";
  display: block;
  background: url(../images/index/message_icon@2x.png) no-repeat center;
  background-size: 85px 89px;
  width: 85px;
  height: 89px;
}
@media screen and (max-width: 768px) {
  .h2_01::before {
    width: 60px;
    height: 63px;
    background-size: 60px 63px;
  }
}
.h2_01 div span {
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .h2_01 div span {
    font-size: 1.4rem;
    margin-top: 5px;
  }
}

.top_message_text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.2;
  color: var(--color_blue);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-80%);
}
@media screen and (max-width: 768px) {
  .top_message_text {
    position: relative;
    top: 350px;
    left: auto;
    transform: none;
    width: 80%;
    margin: 0 auto;
  }
}
.top_message_text span {
  display: block;
  --reveal: 0%;
  color: transparent;
  background: linear-gradient(90deg, var(--color_blue) 0%, var(--color_blue) var(--reveal), #ccc var(--reveal), #ccc 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.top_message_img_01 {
  position: absolute;
  top: 20%;
  left: 5%;
}
@media screen and (max-width: 1470px) {
  .top_message_img_01 {
    left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .top_message_img_01 {
    width: 40%;
    top: 100px;
  }
  .top_message_img_01 img {
    width: 100%;
  }
}

.top_message_img_02 {
  position: absolute;
  top: 45%;
  left: 10%;
}
@media screen and (max-width: 1470px) {
  .top_message_img_02 {
    left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .top_message_img_02 {
    width: 30%;
    top: 170px;
    left: auto;
    right: 5%;
  }
  .top_message_img_02 img {
    width: 100%;
  }
}

.top_message_img_03 {
  position: absolute;
  top: 5%;
  right: 5%;
}
@media screen and (max-width: 1470px) {
  .top_message_img_03 {
    right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .top_message_img_03 {
    width: 30%;
    top: 280px;
    right: auto;
    left: 20%;
  }
  .top_message_img_03 img {
    width: 100%;
  }
}

.top_message_img_04 {
  position: absolute;
  top: 30%;
  right: 20%;
}
@media screen and (max-width: 1470px) {
  .top_message_img_04 {
    right: 15%;
  }
}
@media screen and (max-width: 768px) {
  .top_message_img_04 {
    width: 30%;
    top: 950px;
    right: 10%;
  }
  .top_message_img_04 img {
    width: 100%;
  }
}

.top_message_img_05 {
  position: absolute;
  top: 50%;
  right: 5%;
}
@media screen and (max-width: 1470px) {
  .top_message_img_05 {
    right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .top_message_img_05 {
    width: 40%;
    top: 1050px;
    right: auto;
    left: 10%;
  }
  .top_message_img_05 img {
    width: 100%;
  }
}

.top_message_youtube {
  width: 700px;
  aspect-ratio: 16/9;
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top_message_youtube {
    width: 85%;
    bottom: 100px;
  }
}
.top_message_youtube iframe {
  width: 100%;
  height: 100%;
}

/*-----------------------------------
    Interview
-----------------------------------*/
.top_interview_wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 150px 0;
  background: linear-gradient(45deg, #004CFF 0%, #5094EF 15%, #AED0F4 30%, #DBE8F3 50%, #DBE8F3 100%);
}
@media screen and (max-width: 768px) {
  .top_interview_wrap {
    padding: 100px 0;
  }
}

.top_interview_inner {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .top_interview_inner {
    width: 85%;
    display: block;
  }
}

/*---------- Left ----------*/
.top_interview_left {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .top_interview_left {
    width: 100%;
    margin-bottom: 50px;
  }
}

.top_interview_left_inner {
  position: sticky;
  position: -webkit-sticky;
  top: 150px;
}
@media screen and (max-width: 768px) {
  .top_interview_left_inner {
    position: relative;
    top: 0;
  }
}

.h2_02 {
  font-family: "Jost", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .h2_02 {
    font-size: 3rem;
    gap: 5px;
  }
}
.h2_02::before {
  content: "";
  display: block;
  background: url(../images/index/interview_icon@2x.png) no-repeat center;
  background-size: 93px 78px;
  width: 93px;
  height: 78px;
  position: relative;
  bottom: -5px;
}
@media screen and (max-width: 768px) {
  .h2_02::before {
    width: 60px;
    height: 50px;
    background-size: 60px 50px;
  }
}
.h2_02 div span {
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .h2_02 div span {
    font-size: 1.4rem;
    margin-top: 3px;
  }
}

.top_interview_text {
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .top_interview_text {
    margin: 20px 0;
  }
}

.btn_01 {
  width: 180px;
  height: 45px;
  background-color: var(--color_black);
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 45px;
  transition: all 0.2s;
  position: relative;
}
.btn_01 a {
  display: block;
  width: 100%;
  height: 100%;
}
.btn_01 span {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-right: 20px;
  text-align: center;
}
.btn_01:hover {
  background-color: var(--color_black_light);
}
.btn_01::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 768px) {
  .btn_01 {
    margin-left: auto;
    margin-right: 0;
  }
}

.top_interview_3d_wrap {
  position: relative;
  margin-top: 100px;
  height: 300px;
}
@media screen and (max-width: 768px) {
  .top_interview_3d_wrap {
    display: none;
  }
}
.top_interview_3d_wrap .top_interview_3d_01 {
  position: absolute;
  top: 15%;
  left: 0;
}
.top_interview_3d_wrap .top_interview_3d_02 {
  position: absolute;
  top: 0;
  left: 30%;
}
.top_interview_3d_wrap .top_interview_3d_03 {
  position: absolute;
  top: 50%;
  left: 45%;
}
.top_interview_3d_wrap .top_interview_3d_04 {
  position: absolute;
  top: 30%;
  left: -30%;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 1470px) {
  .top_interview_3d_wrap .top_interview_3d_04 {
    left: -45%;
  }
}

/*---------- Right ----------*/
.top_interview_right {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .top_interview_right {
    width: 100%;
  }
}

.top_interview_right_item {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .top_interview_right_item {
    margin-bottom: 30px;
  }
}
.top_interview_right_item:last-of-type {
  margin-bottom: 0;
}
.top_interview_right_item a {
  display: block;
  width: 100%;
  height: 100%;
}
.top_interview_right_item a:hover img {
  transform: scale(1.05);
}

.top_interview_right_item_img {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_interview_right_item_img {
    margin-bottom: 5px;
  }
}
.top_interview_right_item_img img {
  width: 100%;
  transition: all 0.3s ease;
}
.top_interview_right_item_img .top_interview_right_item_img_title_01 {
  position: absolute;
  bottom: 5%;
  left: 4%;
  line-height: 1.4;
  font-weight: bold;
  z-index: 2;
}
.top_interview_right_item_img .top_interview_right_item_img_title_01 div {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}
.top_interview_right_item_img .top_interview_right_item_img_title_01 div:first-child {
  font-size: 3rem;
  padding: 10px 0 0 10px;
}
@media screen and (max-width: 768px) {
  .top_interview_right_item_img .top_interview_right_item_img_title_01 div:first-child {
    font-size: 1.8rem;
    padding: 5px 0 0 10px;
  }
}
.top_interview_right_item_img .top_interview_right_item_img_title_01 div:last-child {
  font-size: 4.2rem;
  padding: 5px 0 5px 10px;
}
@media screen and (max-width: 768px) {
  .top_interview_right_item_img .top_interview_right_item_img_title_01 div:last-child {
    font-size: 2.2rem;
    padding: 5px 0 5px 10px;
  }
}
.top_interview_right_item_img .top_interview_right_item_img_title_01 .label_01 {
  display: inline-block;
  position: relative;
  z-index: 3;
}
.top_interview_right_item_img .top_interview_right_item_img_title_01 .rect_01 {
  display: block;
  background-color: var(--color_interview_yellow);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform-origin: left center;
}
.top_interview_right_item_img .top_interview_right_item_img_title_02 {
  position: absolute;
  bottom: 5%;
  left: 4%;
  line-height: 1.4;
  font-weight: bold;
  z-index: 2;
}
.top_interview_right_item_img .top_interview_right_item_img_title_02 div {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}
.top_interview_right_item_img .top_interview_right_item_img_title_02 div:first-child {
  font-size: 4.2rem;
  padding: 5px 0 0 10px;
}
@media screen and (max-width: 768px) {
  .top_interview_right_item_img .top_interview_right_item_img_title_02 div:first-child {
    font-size: 2.2rem;
    padding: 5px 0 0 10px;
  }
}
.top_interview_right_item_img .top_interview_right_item_img_title_02 div:last-child {
  font-size: 3rem;
  padding: 0 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .top_interview_right_item_img .top_interview_right_item_img_title_02 div:last-child {
    font-size: 1.8rem;
    padding: 5px 0 5px 10px;
  }
}
.top_interview_right_item_img .top_interview_right_item_img_title_02 .label_02 {
  display: inline-block;
  position: relative;
  z-index: 3;
}
.top_interview_right_item_img .top_interview_right_item_img_title_02 .rect_02 {
  display: block;
  background-color: var(--color_interview_green);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform-origin: left center;
}
.top_interview_right_item_img .top_interview_right_item_img_title_03 {
  position: absolute;
  bottom: 5%;
  left: 4%;
  line-height: 1.4;
  font-weight: bold;
  z-index: 2;
}
.top_interview_right_item_img .top_interview_right_item_img_title_03 div {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}
.top_interview_right_item_img .top_interview_right_item_img_title_03 div:first-child {
  font-size: 4.2rem;
  padding: 5px 0 0 10px;
}
@media screen and (max-width: 768px) {
  .top_interview_right_item_img .top_interview_right_item_img_title_03 div:first-child {
    font-size: 2.2rem;
    padding: 5px 0 0 10px;
  }
}
.top_interview_right_item_img .top_interview_right_item_img_title_03 div:last-child {
  font-size: 3rem;
  padding: 5px 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .top_interview_right_item_img .top_interview_right_item_img_title_03 div:last-child {
    font-size: 1.8rem;
    padding: 5px 0 5px 10px;
  }
}
.top_interview_right_item_img .top_interview_right_item_img_title_03 .label_03 {
  display: inline-block;
  position: relative;
  z-index: 3;
}
.top_interview_right_item_img .top_interview_right_item_img_title_03 .rect_03 {
  display: block;
  background-color: var(--color_interview_blue);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform-origin: left center;
}

.top_interview_right_item_text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_interview_right_item_text .top_interview_right_item_text_dept {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .top_interview_right_item_text .top_interview_right_item_text_dept {
    width: calc(100% - 50px);
  }
}
.top_interview_right_item_text .top_interview_right_item_text_dept p:first-child {
  font-family: "Jost", sans-serif;
  font-size: 4.4rem;
  font-weight: 500;
}
.top_interview_right_item_text .top_interview_right_item_text_dept p:last-child {
  line-height: 1.4;
}
.top_interview_right_item_text .top_interview_right_item_text_dept p:last-child span {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 10px;
}
.top_interview_right_item_text .top_interview_right_item_text_btn {
  width: 60px;
  height: 60px;
  background-color: var(--color_black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_interview_right_item_text .top_interview_right_item_text_btn {
    width: 40px;
    height: 40px;
  }
}
.top_interview_right_item_text .top_interview_right_item_text_btn::after {
  content: "";
  display: block;
  background: url(../images/index/interview_arrow.png) center no-repeat;
  background-size: 23px 23px;
  width: 23px;
  height: 23px;
}
@media screen and (max-width: 768px) {
  .top_interview_right_item_text .top_interview_right_item_text_btn::after {
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
  }
}

.top_interview_right_item a:hover .top_interview_right_item_text_btn::after {
  -webkit-animation: interview_btn_arrow 0.4s ease;
          animation: interview_btn_arrow 0.4s ease;
}

@-webkit-keyframes interview_btn_arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(40px);
  }
  51% {
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes interview_btn_arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(40px);
  }
  51% {
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(0);
  }
}
/*-----------------------------------
    Work
-----------------------------------*/
.top_work_wrap {
  position: relative;
  background-color: #EFF5FA;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .top_work_wrap {
    padding: 100px 0;
  }
}

.top_work_title_wrap {
  margin: 0 0 50px 10%;
}
@media screen and (max-width: 768px) {
  .top_work_title_wrap {
    margin: 0 0 20px 5%;
  }
}

.h2_03 {
  font-family: "Jost", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .h2_03 {
    font-size: 3rem;
    gap: 5px;
  }
}
.h2_03::before {
  content: "";
  display: block;
  background: url(../images/index/work_icon@2x.png) no-repeat center;
  background-size: 88px 80px;
  width: 88px;
  height: 80px;
  position: relative;
  bottom: -5px;
}
@media screen and (max-width: 768px) {
  .h2_03::before {
    width: 60px;
    height: 55px;
    background-size: 60px 55px;
  }
}
.h2_03 div span {
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .h2_03 div span {
    font-size: 1.4rem;
    margin-top: 3px;
  }
}

.top_work_inner {
  width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .top_work_inner {
    width: 85%;
    display: block;
    margin: 0 auto;
  }
}

.top_work_img_wrap {
  position: relative;
  width: 550px;
  height: 430px;
}
@media screen and (max-width: 768px) {
  .top_work_img_wrap {
    width: 100%;
    height: 300px;
  }
}
.top_work_img_wrap .top_work_3d_01 {
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top_work_img_wrap .top_work_3d_01 {
    width: 120px;
    left: 2%;
  }
  .top_work_img_wrap .top_work_3d_01 img {
    width: 100%;
  }
}
.top_work_img_wrap .top_work_3d_02 {
  position: absolute;
  top: 0;
  right: -2%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top_work_img_wrap .top_work_3d_02 {
    width: 80px;
    right: 2%;
  }
  .top_work_img_wrap .top_work_3d_02 img {
    width: 100%;
  }
}
.top_work_img_wrap .top_work_3d_03 {
  position: absolute;
  top: 15%;
  left: 30%;
  z-index: 2;
  -webkit-animation: top_work_3d_03 2s ease-in-out infinite;
          animation: top_work_3d_03 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .top_work_img_wrap .top_work_3d_03 {
    width: 200px;
    left: 20%;
  }
  .top_work_img_wrap .top_work_3d_03 img {
    width: 100%;
  }
}
@-webkit-keyframes top_work_3d_03 {
  0%, 100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-20px) rotate(-10deg);
  }
}
@keyframes top_work_3d_03 {
  0%, 100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-20px) rotate(-10deg);
  }
}
.top_work_img_wrap .top_work_3d_04 {
  position: absolute;
  bottom: 0;
  left: 10%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top_work_img_wrap .top_work_3d_04 {
    width: 120px;
    left: 5%;
  }
  .top_work_img_wrap .top_work_3d_04 img {
    width: 100%;
  }
}
.top_work_img_wrap .top_work_3d_05 {
  position: absolute;
  bottom: 5%;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top_work_img_wrap .top_work_3d_05 {
    width: 120px;
  }
  .top_work_img_wrap .top_work_3d_05 img {
    width: 100%;
  }
}
.top_work_img_wrap .top_work_3d_06 {
  position: absolute;
  top: 0;
  left: 50%;
}
.top_work_img_wrap .top_work_3d_07 {
  position: absolute;
  top: 40%;
  right: 5%;
}
.top_work_img_wrap .top_work_3d_08 {
  position: absolute;
  bottom: 10%;
  left: 60%;
}
.top_work_img_wrap .top_work_3d_09 {
  position: absolute;
  top: 35%;
  left: 0;
}

.top_work_text_wrap {
  width: calc(100% - 550px);
}
@media screen and (max-width: 768px) {
  .top_work_text_wrap {
    width: 100%;
    margin-bottom: 50px;
  }
}
.top_work_text_wrap .top_work_btn {
  width: 180px;
  height: 45px;
  background-color: var(--color_black);
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 45px;
  transition: all 0.2s;
  position: relative;
  margin-top: 30px;
}
.top_work_text_wrap .top_work_btn a {
  display: block;
  width: 100%;
  height: 100%;
}
.top_work_text_wrap .top_work_btn span {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-right: 20px;
  text-align: center;
}
.top_work_text_wrap .top_work_btn:hover {
  background-color: var(--color_black_light);
}
.top_work_text_wrap .top_work_btn::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 768px) {
  .top_work_text_wrap .top_work_btn {
    margin: 20px 0 0 auto;
  }
}

/*-----------------------------------
    Company
-----------------------------------*/
.top_company_wrap {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.top_company_wrap .wrapper {
  width: 100%;
  height: 350vh;
}
.top_company_wrap .wrapper .container {
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.top_company_wrap .wrapper .container div {
  width: 32.5%;
  height: 32%;
}
@media screen and (max-width: 768px) {
  .top_company_wrap .wrapper .container div {
    width: 32.8%;
    height: 33.1%;
  }
}
.top_company_wrap .wrapper .container div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_company_wrap .wrapper .container .mask {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  overflow: hidden;
  aspect-ratio: 3/2;
}
.top_company_wrap .wrapper .container .mask .top_company_mask_inner {
  width: 500px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-40%);
  z-index: 10;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .top_company_wrap .wrapper .container .mask .top_company_mask_inner {
    width: 85%;
  }
}
.top_company_wrap .wrapper .container .mask .img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_company_wrap .wrapper .container .top_company_img_01 {
  position: absolute;
  left: 0;
  top: 0;
}
.top_company_wrap .wrapper .container .top_company_img_02 {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.top_company_wrap .wrapper .container .top_company_img_03 {
  position: absolute;
  right: 0;
  top: 0;
}
.top_company_wrap .wrapper .container .top_company_img_04 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top_company_wrap .wrapper .container .top_company_img_05 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top_company_wrap .wrapper .container .top_company_img_06 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.top_company_wrap .wrapper .container .top_company_img_07 {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.top_company_wrap .wrapper .container .top_company_img_08 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.h2_04 {
  font-family: "Jost", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .h2_04 {
    font-size: 3rem;
    gap: 5px;
  }
}
.h2_04::before {
  content: "";
  display: block;
  background: url(../images/index/company_icon@2x.png) no-repeat center;
  background-size: 91px 97px;
  width: 91px;
  height: 97px;
  position: relative;
  bottom: -10px;
}
@media screen and (max-width: 768px) {
  .h2_04::before {
    width: 60px;
    height: 64px;
    background-size: 60px 64px;
  }
}
.h2_04 div span {
  width: 340px;
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .h2_04 div span {
    width: 250px;
    font-size: 1.4rem;
    margin-top: 5px;
  }
}

.top_company_btn {
  width: 180px;
  height: 45px;
  background-color: var(--color_blue);
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 45px;
  transition: all 0.2s;
  position: relative;
  margin: 40px auto 0;
}
.top_company_btn a {
  display: block;
  width: 100%;
  height: 100%;
}
.top_company_btn span {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-right: 20px;
  text-align: center;
}
.top_company_btn:hover {
  background-color: var(--color_blue_light);
}
.top_company_btn::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 768px) {
  .top_company_btn {
    margin: 30px 0 0 auto;
  }
}

/*-----------------------------------
    Environment
-----------------------------------*/
.top_environment_wrap {
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, #004CFF 0%, #5094EF 15%, #AED0F4 30%, #DBE8F3 50%, #DBE8F3 100%);
  padding: 130px 10% 150px;
}
@media screen and (max-width: 768px) {
  .top_environment_wrap {
    padding: 100px 7.5% 100px;
  }
}

@media screen and (max-width: 768px) {
  .top_environment_title_wrap {
    margin-bottom: 30px;
  }
}
.top_environment_title_wrap .h2_05 {
  font-family: "Jost", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top_environment_title_wrap .h2_05 {
    font-size: 3rem;
    gap: 5px;
  }
}
.top_environment_title_wrap .h2_05::before {
  content: "";
  display: block;
  background: url(../images/index/environment_icon@2x.png) no-repeat center;
  background-size: 73px 100px;
  width: 73px;
  height: 100px;
  position: relative;
  bottom: -5px;
}
@media screen and (max-width: 768px) {
  .top_environment_title_wrap .h2_05::before {
    width: 60px;
    height: 64px;
    background-size: 60px 64px;
    bottom: 0;
  }
}
.top_environment_title_wrap .h2_05 div span {
  width: 340px;
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .top_environment_title_wrap .h2_05 div span {
    width: 250px;
    font-size: 1.4rem;
    margin-top: 5px;
  }
}

.top_environment_card_wrap {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .top_environment_card_wrap {
    width: 100%;
    display: block;
    margin: 0 auto;
    gap: 10px;
  }
}
.top_environment_card_wrap .top_environment_card {
  width: 315px;
  height: 100%;
  border: 2px solid #fff;
  background: linear-gradient(to bottom right, #DBE8F3 0%, #fff 100%);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .top_environment_card_wrap .top_environment_card {
    width: 100%;
    margin-bottom: 30px;
  }
}
.top_environment_card_wrap .top_environment_card .top_environment_card_img {
  margin-bottom: 10px;
}
.top_environment_card_wrap .top_environment_card .top_environment_card_img img {
  width: 100%;
}
.top_environment_card_wrap .top_environment_card h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.top_environment_card_wrap .top_environment_card .top_environment_btn {
  width: 100%;
  height: 45px;
  background-color: var(--color_black);
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  line-height: 45px;
  transition: all 0.2s;
  position: relative;
  margin-top: 20px;
}
.top_environment_card_wrap .top_environment_card .top_environment_btn a {
  display: block;
  width: 100%;
  height: 100%;
}
.top_environment_card_wrap .top_environment_card .top_environment_btn span {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-right: 20px;
  text-align: center;
}
.top_environment_card_wrap .top_environment_card .top_environment_btn:hover {
  background-color: var(--color_black_light);
}
.top_environment_card_wrap .top_environment_card .top_environment_btn::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
}

.top_environment_3d_wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 400px;
  height: 330px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top_environment_3d_wrap {
    width: 100%;
    height: 200px;
  }
}
.top_environment_3d_wrap .top_environment_3d_01 {
  position: absolute;
  top: 10%;
  left: 20%;
}
@media screen and (max-width: 768px) {
  .top_environment_3d_wrap .top_environment_3d_01 {
    display: none;
  }
}
.top_environment_3d_wrap .top_environment_3d_02 {
  position: absolute;
  top: 0;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .top_environment_3d_wrap .top_environment_3d_02 {
    display: none;
  }
}
.top_environment_3d_wrap .top_environment_3d_03 {
  position: absolute;
  top: 30%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .top_environment_3d_wrap .top_environment_3d_03 {
    display: none;
  }
}
.top_environment_3d_wrap .top_environment_3d_04 {
  position: absolute;
  bottom: -20%;
  left: -15%;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .top_environment_3d_wrap .top_environment_3d_04 {
    bottom: -40%;
    left: -10%;
    width: 200px;
  }
  .top_environment_3d_wrap .top_environment_3d_04 img {
    width: 100%;
  }
}

/*===================================
    News
===================================*/
.news_title_wrap {
  padding: 180px 0 120px 5%;
}
@media screen and (max-width: 768px) {
  .news_title_wrap {
    padding: 110px 0 70px 7.5%;
  }
}

.news_contents_wrap {
  background-color: var(--color_white);
}

.news_contents_inner {
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .news_contents_inner {
    width: 85%;
    padding: 50px 0;
  }
}

.news_item {
  padding: 20px 0;
  border-bottom: 1px solid var(--color_gray);
}
.news_item:first-of-type {
  border-top: 1px solid var(--color_gray);
}
.news_item a {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .news_item a {
    display: block;
  }
}
.news_item .news_item_img {
  width: 170px;
}
.news_item .news_item_img img {
  border-radius: 5px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news_item .news_item_img {
    margin-bottom: 10px;
  }
}
.news_item .news_item_date {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .news_item .news_item_date {
    width: 100%;
    margin-bottom: 5px;
  }
}
.news_item .news_item_text {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .news_item .news_item_text {
    width: 100%;
  }
}
.news_item .news_item_text h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 5px;
}

.news_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.news_pagination .news_pagination_prev, .news_pagination .news_pagination_next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color_gray);
  background-size: 17px 17px;
  background-position: center;
  background-repeat: no-repeat;
}
.news_pagination .news_pagination_prev a, .news_pagination .news_pagination_next a {
  display: block;
  width: 100%;
  height: 100%;
}
.news_pagination .news_pagination_prev {
  background-image: url(../images/news/prev_icon.png);
}
.news_pagination .news_pagination_next {
  background-image: url(../images/news/next_icon.png);
}
.news_pagination .news_pagination_num {
  font-size: 2.6rem;
  font-weight: bold;
}
.news_pagination .news_pagination_num.active {
  color: var(--color_blue);
}

/*-----------------------------------
    News Single
-----------------------------------*/
.news_single_article {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .news_single_article {
    margin-bottom: 50px;
  }
}
.news_single_article .news_single_date {
  margin-bottom: 10px;
}
.news_single_article .news_single_title {
  font-size: 2.4rem;
  line-height: 1.4;
  border-bottom: 1px solid var(--color_gray);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .news_single_article .news_single_title {
    font-size: 2.2rem;
  }
}
.news_single_article a {
  color: var(--color_blue);
  transition: all 0.2s;
}
.news_single_article a:hover {
  color: var(--color_blue_light);
}
@media screen and (max-width: 768px) {
  .news_single_article img {
    width: 100%;
  }
}

.news_single_pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news_single_pagination .news_single_prev_none, .news_single_pagination .news_single_next_none {
  pointer-events: none;
  opacity: 0.5;
}
.news_single_pagination .news_single_pagination_prev a, .news_single_pagination .news_single_pagination_next a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.2s;
}
.news_single_pagination .news_single_pagination_prev a:hover, .news_single_pagination .news_single_pagination_next a:hover {
  color: var(--color_black_light);
}
.news_single_pagination .news_single_pagination_prev a::before, .news_single_pagination .news_single_pagination_next a::after {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color_gray);
  background-size: 17px 17px;
  background-position: center;
  background-repeat: no-repeat;
}
.news_single_pagination .news_single_pagination_prev a::before {
  background-image: url(../images/news/prev_icon.png);
}
.news_single_pagination .news_single_pagination_next a::after {
  background-image: url(../images/news/next_icon.png);
}
.news_single_pagination .news_single_pagination_index a {
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.2s;
}
.news_single_pagination .news_single_pagination_index a:hover {
  color: var(--color_black_light);
}

/*===================================
    Interview Top
===================================*/
.interview_top_wrap {
  width: 1200px;
  margin: 0 auto;
  padding: 200px 0;
}
@media screen and (max-width: 768px) {
  .interview_top_wrap {
    width: 85%;
    padding: 110px 0 50px;
  }
}

.inner_page_title_02 {
  font-family: "Jost", sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color_blue);
}
@media screen and (max-width: 768px) {
  .inner_page_title_02 {
    font-size: 4rem;
  }
}
.inner_page_title_02 span {
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color_black);
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .inner_page_title_02 span {
    font-size: 1.8rem;
    margin-top: 5px;
  }
}

.interview_top_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 50px;
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .interview_top_inner {
    display: block;
    padding-top: 60px;
  }
}

.interview_top_item {
  width: 565px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .interview_top_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.interview_top_item:nth-child(even) {
  position: relative;
  bottom: -100px;
}
@media screen and (max-width: 768px) {
  .interview_top_item:nth-child(even) {
    bottom: 0;
  }
}
.interview_top_item img {
  width: 100%;
  transition: all 0.3s ease;
}
.interview_top_item a {
  display: block;
}
.interview_top_item a:hover img {
  transform: scale(1.05);
}
.interview_top_item .interview_top_item_img {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img {
    height: auto;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_01 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_01 {
    bottom: 10px;
    left: 10px;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_01 span {
  background-color: var(--color_interview_yellow);
  display: inline-block;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_01 span {
    line-height: 1.4;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_01 span:first-child {
  font-size: 2.4rem;
  padding: 10px 0 5px 10px;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_01 span:first-child {
    font-size: 1.6rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_01 span:last-child {
  font-size: 3rem;
  padding: 10px 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_01 span:last-child {
    font-size: 2.2rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_02 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_02 {
    bottom: 10px;
    left: 10px;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_02 span {
  background-color: var(--color_interview_green);
  display: inline-block;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_02 span {
    line-height: 1.4;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_02 span:first-child {
  font-size: 3rem;
  padding: 10px 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_02 span:first-child {
    font-size: 2.2rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_02 span:last-child {
  font-size: 2.4rem;
  padding: 5px 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_02 span:last-child {
    font-size: 1.6rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_03 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_03 {
    bottom: 10px;
    left: 10px;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_03 span {
  background-color: var(--color_interview_blue);
  display: inline-block;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_03 span {
    line-height: 1.4;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_03 span:first-child {
  font-size: 3rem;
  padding: 10px 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_03 span:first-child {
    font-size: 2.2rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_top_item .interview_top_item_img .interview_top_item_catch_03 span:last-child {
  font-size: 2.4rem;
  padding: 5px 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_img .interview_top_item_catch_03 span:last-child {
    font-size: 1.6rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_top_item .interview_top_item_text {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_text {
    width: calc(100% - 60px);
  }
}
.interview_top_item .interview_top_item_text p:first-child {
  font-family: "Jost", sans-serif;
  font-size: 4.4rem;
  font-weight: 500;
}
.interview_top_item .interview_top_item_text p:last-child {
  font-size: 1.4rem;
  line-height: 1.6;
}
.interview_top_item .interview_top_item_text p:last-child span {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 10px;
}
.interview_top_item .interview_top_item_text .interview_top_item_text_dept_03 {
  position: relative;
  bottom: -10px;
}
.interview_top_item .interview_top_item_btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--color_black);
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_btn {
    width: 40px;
    height: 40px;
    bottom: 25px;
  }
}
.interview_top_item .interview_top_item_btn::after {
  content: "";
  display: block;
  background: url(../images/interview/arrow.png) center no-repeat;
  background-size: 22px;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 768px) {
  .interview_top_item .interview_top_item_btn::after {
    background-size: 15px 15px;
    width: 15px;
    height: 15px;
  }
}

.interview_top_item a:hover .interview_top_item_btn::after {
  -webkit-animation: interview_btn_arrow 0.4s ease;
          animation: interview_btn_arrow 0.4s ease;
}

/*===================================
    Interview Inner
===================================*/
.interview_mv_wrap {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .interview_mv_wrap {
    padding: 100px 0 50px;
  }
}

.interview_mv_inner {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .interview_mv_inner {
    width: 85%;
    display: flex;
    flex-direction: column-reverse;
  }
}

.interview_mv_txt_wrap {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .interview_mv_txt_wrap {
    position: relative;
    left: auto;
    margin-top: 30px;
  }
}
.interview_mv_txt_wrap .interview_mv_title_01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  background-color: var(--color_interview_yellow);
  padding: 3px 10px;
  margin-bottom: 20px;
}
.interview_mv_txt_wrap .interview_mv_title_02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  background-color: var(--color_interview_green);
  padding: 3px 10px;
  margin-bottom: 20px;
}
.interview_mv_txt_wrap .interview_mv_title_03 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  background-color: var(--color_interview_blue);
  padding: 3px 10px;
  margin-bottom: 20px;
}
.interview_mv_txt_wrap .interview_mv_catch {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .interview_mv_txt_wrap .interview_mv_catch {
    font-size: 3rem;
    line-height: 1.4;
  }
}
.interview_mv_txt_wrap .interview_mv_name {
  margin-bottom: 10px;
}
.interview_mv_txt_wrap .interview_mv_name span {
  font-size: 1.8rem;
  font-weight: bold;
}
.interview_mv_txt_wrap .interview_mv_department {
  font-weight: bold;
  margin-bottom: 20px;
}
.interview_mv_txt_wrap .interview_mv_body {
  width: 33%;
}
@media screen and (max-width: 768px) {
  .interview_mv_txt_wrap .interview_mv_body {
    width: 100%;
  }
}

.interview_mv_img_wrap {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .interview_mv_img_wrap {
    display: block;
  }
  .interview_mv_img_wrap img {
    width: 100%;
  }
}

.interview_mv_bg_01 {
  width: 1100px;
  height: 650px;
  background-color: var(--color_interview_yellow);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .interview_mv_bg_01 {
    width: 90%;
    height: 250px;
    top: 22%;
    left: 28%;
  }
}

.interview_mv_bg_02 {
  width: 1100px;
  height: 650px;
  background-color: var(--color_interview_green);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .interview_mv_bg_02 {
    width: 90%;
    height: 250px;
    top: 22%;
    left: 28%;
  }
}

.interview_mv_bg_03 {
  width: 1100px;
  height: 650px;
  background-color: var(--color_interview_blue);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .interview_mv_bg_03 {
    width: 90%;
    height: 250px;
    top: 22%;
    left: 28%;
  }
}

/*---------- Interview Contents 01 ----------*/
.interview_contents_wrap_01 {
  width: 90%;
  background-color: var(--color_white);
  padding: 60px 0 80px;
  margin-bottom: 100px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1470px) {
  .interview_contents_wrap_01 {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .interview_contents_wrap_01 {
    width: 100%;
    padding: 30px 0 50px;
    margin-bottom: 80px;
  }
}

.interview_contents_title_wrap_left {
  padding-left: 17%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1470px) {
  .interview_contents_title_wrap_left {
    padding-left: 9%;
  }
}
@media screen and (max-width: 768px) {
  .interview_contents_title_wrap_left {
    padding-left: 7.5%;
    margin-bottom: 20px;
  }
}

.interview_contents_title_wrap_right {
  padding-left: 6%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1470px) {
  .interview_contents_title_wrap_right {
    padding-left: 4%;
  }
}
@media screen and (max-width: 768px) {
  .interview_contents_title_wrap_right {
    padding-left: 7.5%;
  }
}

.interview_contents_title_01 {
  font-size: 1.8rem;
  color: var(--color_blue);
}
.interview_contents_title_01 span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color_black);
  background-color: var(--color_interview_yellow);
  padding: 3px 10px;
  margin-right: 10px;
}

.interview_contents_title_02 {
  font-size: 1.8rem;
  color: var(--color_blue);
}
.interview_contents_title_02 span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color_black);
  background-color: var(--color_interview_green);
  padding: 3px 10px;
  margin-right: 10px;
}

.interview_contents_title_03 {
  font-size: 1.8rem;
  color: var(--color_blue);
}
.interview_contents_title_03 span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color_black);
  background-color: var(--color_interview_blue);
  padding: 3px 10px;
  margin-right: 10px;
}

.interview_contents_inner {
  display: flex;
  gap: 100px;
  padding-right: 100px;
}
@media screen and (max-width: 1470px) {
  .interview_contents_inner {
    gap: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .interview_contents_inner {
    display: block;
    padding-right: 0;
    width: 85%;
    margin: 0 auto;
  }
}

.interview_contents_inner_img {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .interview_contents_inner_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.interview_contents_inner_img img {
  width: 100%;
}

.interview_contents_inner_text {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .interview_contents_inner_text {
    width: 100%;
  }
}
.interview_contents_inner_text h3 {
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: -0.05em;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--color_black);
}
@media screen and (max-width: 768px) {
  .interview_contents_inner_text h3 {
    font-size: 2.4rem;
  }
}
.interview_contents_inner_text p {
  font-size: 1.4rem;
}

/*---------- 3D Obje 01 ----------*/
.interview_01_3d_01 {
  position: absolute;
  bottom: 60px;
  right: 100px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .interview_01_3d_01 {
    bottom: 20px;
    right: 120px;
    width: 15px;
  }
  .interview_01_3d_01 img {
    width: 100%;
  }
}

.interview_01_3d_02 {
  position: absolute;
  bottom: -80px;
  right: -80px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 1470px) {
  .interview_01_3d_02 {
    bottom: -100px;
    right: -60px;
  }
}
@media screen and (max-width: 768px) {
  .interview_01_3d_02 {
    bottom: -80px;
    right: 10px;
    width: 120px;
  }
  .interview_01_3d_02 img {
    width: 100%;
  }
}

.interview_01_3d_03 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .interview_01_3d_03 {
    bottom: -130px;
    left: 10px;
    width: 100px;
  }
  .interview_01_3d_03 img {
    width: 100%;
  }
}

.interview_01_3d_04 {
  position: absolute;
  bottom: 110px;
  right: -70px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 1470px) {
  .interview_01_3d_04 {
    bottom: 50px;
    right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .interview_01_3d_04 {
    bottom: 10px;
    right: 15px;
    width: 15px;
  }
  .interview_01_3d_04 img {
    width: 100%;
  }
}

.interview_01_3d_05 {
  position: absolute;
  bottom: -80px;
  right: -80px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 1470px) {
  .interview_01_3d_05 {
    bottom: -130px;
    right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .interview_01_3d_05 {
    bottom: -100px;
    right: 30px;
    width: 120px;
  }
  .interview_01_3d_05 img {
    width: 100%;
  }
}

/*---------- 3D Obje 02 ----------*/
.interview_02_3d_01 {
  position: absolute;
  bottom: -30px;
  right: -100px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 1470px) {
  .interview_02_3d_01 {
    bottom: -30px;
    right: -70px;
  }
}
@media screen and (max-width: 768px) {
  .interview_02_3d_01 {
    bottom: -70px;
    right: 15px;
    width: 120px;
  }
  .interview_02_3d_01 img {
    width: 100%;
  }
}

.interview_02_3d_02 {
  position: absolute;
  bottom: 180px;
  left: -30px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 1470px) {
  .interview_02_3d_02 {
    bottom: -40px;
    left: 80px;
  }
}
@media screen and (max-width: 768px) {
  .interview_02_3d_02 {
    bottom: -40px;
    left: 20px;
    width: 15px;
  }
  .interview_02_3d_02 img {
    width: 100%;
  }
}

.interview_02_3d_03 {
  position: absolute;
  bottom: -30px;
  left: -170px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 1470px) {
  .interview_02_3d_03 {
    bottom: -200px;
    left: -100px;
  }
}
@media screen and (max-width: 768px) {
  .interview_02_3d_03 {
    bottom: -130px;
    left: 30px;
    width: 100px;
  }
  .interview_02_3d_03 img {
    width: 100%;
  }
}

.interview_02_3d_04 {
  position: absolute;
  bottom: -60px;
  right: -50px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .interview_02_3d_04 {
    bottom: -40px;
    right: 20px;
    width: 100px;
  }
  .interview_02_3d_04 img {
    width: 100%;
  }
}

/*---------- 3D Obje 03 ----------*/
.interview_03_3d_01 {
  position: absolute;
  bottom: -90px;
  right: -100px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 1470px) {
  .interview_03_3d_01 {
    bottom: -170px;
    right: -60px;
  }
}
@media screen and (max-width: 768px) {
  .interview_03_3d_01 {
    bottom: -90px;
    right: 15px;
    width: 130px;
  }
  .interview_03_3d_01 img {
    width: 100%;
  }
}

.interview_03_3d_02 {
  position: absolute;
  bottom: -30px;
  left: -100px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 1470px) {
  .interview_03_3d_02 {
    bottom: -100px;
  }
}
@media screen and (max-width: 768px) {
  .interview_03_3d_02 {
    bottom: -120px;
    left: 30px;
    width: 90px;
  }
  .interview_03_3d_02 img {
    width: 100%;
  }
}

.interview_03_3d_03 {
  position: absolute;
  bottom: -70px;
  right: -80px;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 1470px) {
  .interview_03_3d_03 {
    bottom: -100px;
    right: -60px;
  }
}
@media screen and (max-width: 768px) {
  .interview_03_3d_03 {
    bottom: -70px;
    right: 15px;
    width: 120px;
  }
  .interview_03_3d_03 img {
    width: 100%;
  }
}

/*---------- Interview Contents 02 ----------*/
.interview_contents_wrap_02 {
  width: 90%;
  margin-left: 10%;
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 1470px) {
  .interview_contents_wrap_02 {
    width: 95%;
    margin-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .interview_contents_wrap_02 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 80px;
  }
}

.interview_contents_inner_02 {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  padding-left: 100px;
}
@media screen and (max-width: 1470px) {
  .interview_contents_inner_02 {
    gap: 50px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .interview_contents_inner_02 {
    display: block;
    padding-left: 0;
    width: 85%;
    margin: 0 auto;
  }
}

/*---------- OFFの過ごし方 ----------*/
.interview_off_wrap_01 {
  width: 900px;
  margin: 0 auto 50px;
  padding: 50px 60px;
  background-color: var(--color_interview_yellow);
  border-radius: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .interview_off_wrap_01 {
    width: 85%;
    margin: 0 auto 30px;
    padding: 30px;
    border-radius: 30px;
    display: block;
  }
}

.interview_off_wrap_02 {
  width: 900px;
  margin: 0 auto 50px;
  padding: 50px 60px;
  background-color: var(--color_interview_green);
  border-radius: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .interview_off_wrap_02 {
    width: 85%;
    margin: 0 auto 30px;
    padding: 30px;
    border-radius: 30px;
    display: block;
  }
}

.interview_off_wrap_03 {
  width: 900px;
  margin: 0 auto 50px;
  padding: 50px 60px;
  background-color: var(--color_interview_blue);
  border-radius: 70px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .interview_off_wrap_03 {
    width: 85%;
    margin: 0 auto 30px;
    padding: 30px;
    border-radius: 30px;
    display: block;
  }
}

.interview_off_title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.interview_off_title span {
  font-size: 1.8rem;
  color: var(--color_blue);
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .interview_off_title span {
    margin-right: 0;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .interview_off_img {
    margin-top: 20px;
    text-align: center;
  }
}

/*---------- 学生さんへのMessage ----------*/
.interview_message_wrap {
  width: 100%;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .interview_message_wrap {
    margin-bottom: 50px;
  }
}

.interview_message_inner_01 {
  position: relative;
  z-index: 2;
  width: 900px;
  margin: 0 auto;
  padding: 0;
  background-color: var(--color_interview_yellow);
  border-radius: 70px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .interview_message_inner_01 {
    width: 85%;
    padding: 30px;
    border-radius: 30px;
    display: block;
  }
}

.interview_message_inner_02 {
  position: relative;
  z-index: 2;
  width: 900px;
  margin: 0 auto;
  padding: 0;
  background-color: var(--color_interview_green);
  border-radius: 70px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .interview_message_inner_02 {
    width: 85%;
    padding: 30px;
    border-radius: 30px;
    display: block;
  }
}

.interview_message_inner_03 {
  position: relative;
  z-index: 2;
  width: 900px;
  margin: 0 auto;
  padding: 0;
  background-color: var(--color_interview_blue);
  border-radius: 70px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .interview_message_inner_03 {
    width: 85%;
    padding: 30px;
    border-radius: 30px;
    display: block;
  }
}

.interview_message_text_wrap {
  width: 60%;
  padding: 30px 60px 40px 0;
}
@media screen and (max-width: 768px) {
  .interview_message_text_wrap {
    width: 100%;
    padding: 0;
    margin-bottom: 200px;
  }
}
.interview_message_text_wrap h2 {
  font-size: 1.8rem;
  color: var(--color_blue);
  margin-bottom: 10px;
}

.interview_message_img {
  position: absolute;
  left: 100px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .interview_message_img {
    left: 50%;
    transform: translateX(-50%);
  }
  .interview_message_img img {
    width: 130px;
  }
}

.interview_message_bg_text_wrap {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 8rem;
  color: var(--color_blue);
  position: absolute;
  z-index: 1;
  bottom: 0;
  top: 50%;
  transform: translateY(-60%);
  white-space: nowrap;
  display: flex;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .interview_message_bg_text_wrap {
    display: none;
  }
}
.interview_message_bg_text_wrap p {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 8rem;
  overflow: hidden;
  padding-left: 30px;
}
.interview_message_bg_text_wrap p:nth-child(odd) {
  -webkit-animation: text_loop_01 15s -7.5s linear infinite;
          animation: text_loop_01 15s -7.5s linear infinite;
}
.interview_message_bg_text_wrap p:nth-child(even) {
  -webkit-animation: text_loop_02 15s linear infinite;
          animation: text_loop_02 15s linear infinite;
}
@-webkit-keyframes text_loop_01 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes text_loop_01 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes text_loop_02 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes text_loop_02 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/*---------- Other Interview ----------*/
.interview_other_swiper {
  width: 1200px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .interview_other_swiper {
    width: 90%;
    margin: 0 auto 50px;
  }
}
.interview_other_swiper .interview_other_swiper_title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .interview_other_swiper .interview_other_swiper_title {
    font-size: 3rem;
  }
}
.interview_other_swiper .interview_other_swiper_subtitle {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .interview_other_swiper .interview_other_swiper_subtitle {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.interview_other_swiper .swiper-wrapper {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .interview_other_swiper .swiper-wrapper {
    margin-bottom: 30px;
  }
}

.interview_other_item {
  width: 565px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .interview_other_item {
    width: 100%;
  }
}
.interview_other_item img {
  width: 100%;
}
.interview_other_item .interview_other_item_img {
  position: relative;
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_01 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_01 {
    bottom: 10px;
    left: 10px;
  }
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_01 span {
  background-color: var(--color_interview_yellow);
  display: inline-block;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_01 span {
    line-height: 1.4;
  }
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_01 span:first-child {
  font-size: 2.4rem;
  padding: 10px 0 5px 10px;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_01 span:first-child {
    font-size: 1.6rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_01 span:last-child {
  font-size: 3rem;
  padding: 10px 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_01 span:last-child {
    font-size: 2.2rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_02 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_02 {
    bottom: 10px;
    left: 10px;
  }
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_02 span {
  background-color: var(--color_interview_green);
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_02 span {
    line-height: 1.4;
  }
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_02 span:first-child {
  font-size: 3rem;
  padding: 10px 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_02 span:first-child {
    font-size: 2.2rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_02 span:last-child {
  font-size: 2.4rem;
  padding: 5px 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_02 span:last-child {
    font-size: 1.6rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_03 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_03 {
    bottom: 10px;
    left: 10px;
  }
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_03 span {
  background-color: var(--color_interview_blue);
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_03 span {
    line-height: 1.4;
  }
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_03 span:first-child {
  font-size: 3rem;
  padding: 10px 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_03 span:first-child {
    font-size: 2.2rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_other_item .interview_other_item_img .interview_other_item_catch_03 span:last-child {
  font-size: 2.4rem;
  padding: 5px 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_img .interview_other_item_catch_03 span:last-child {
    font-size: 1.6rem;
    padding: 5px 0 5px 10px;
  }
}
.interview_other_item .interview_other_item_text {
  display: flex;
  align-items: center;
  gap: 15px;
}
.interview_other_item .interview_other_item_text p:first-child {
  font-family: "Jost", sans-serif;
  font-size: 4.4rem;
  font-weight: 500;
}
.interview_other_item .interview_other_item_text p:last-child {
  font-size: 1.4rem;
  line-height: 1.6;
}
.interview_other_item .interview_other_item_text p:last-child span {
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 10px;
}
.interview_other_item .interview_other_item_text .interview_other_item_text_dept_03 {
  position: relative;
  bottom: -10px;
}
@media screen and (max-width: 768px) {
  .interview_other_item .interview_other_item_text .interview_other_item_text_dept_03 {
    bottom: 0;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  width: 115px;
  height: 5px;
  background-color: #D9D9D9;
  opacity: 1;
  border-radius: 0;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color_blue);
}
@media screen and (max-width: 768px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 50px;
  }
}

/* デフォルトの矢印を非表示 */
.swiper-navigation-icon {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: var(--color_black);
}
@media screen and (max-width: 768px) {
  .swiper-button-prev,
.swiper-button-next {
    height: 40px;
    width: 40px;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev::after,
.swiper-button-next::after {
    width: 15px;
    height: 15px;
  }
}

.swiper-button-prev::after {
  background-image: url(../images/interview/arrow_prev.png);
}

.swiper-button-next::after {
  background-image: url(../images/interview/arrow.png);
}

/*===================================
    Work
===================================*/
.work_title_wrap {
  width: 700px;
  padding: 180px 0 100px 5%;
}
@media screen and (max-width: 768px) {
  .work_title_wrap {
    width: 85%;
    padding: 110px 0 70px;
    margin: 0 auto;
  }
}
.work_title_wrap h3 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.work_slider_wrap {
  width: 100%;
  background-color: var(--color_white);
}
@media screen and (max-width: 768px) {
  .work_slider_wrap {
    padding-top: 50px;
  }
}

.slider__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
}

.slider__wrap-left, .slider__wrap-right {
  width: 50%;
  height: 100%;
}

.slider__wrap-left {
  position: relative;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .slider__wrap-left {
    width: 100%;
    min-height: auto;
  }
}

.slider__wrap-left_item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  bottom: 70px;
  transition: opacity 0.4s ease, bottom 1s ease;
  pointer-events: none;
  width: 70%;
  min-width: 600px;
}
@media screen and (max-width: 1470px) {
  .slider__wrap-left_item {
    transform: translate(-50%, -60%);
  }
}
@media screen and (max-width: 768px) {
  .slider__wrap-left_item {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;
    bottom: 0;
    width: 85%;
    min-width: auto;
    margin: 0 auto 70px;
  }
}

.slider__wrap-left_item.is-active,
.slider__wrap-left_item:first-child {
  opacity: 1;
  bottom: 0;
  pointer-events: auto;
}

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

.slider__wrap-right .img-box {
  width: 100%;
  height: 100vh;
}
.slider__wrap-right .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work_category_title_01 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .work_category_title_01 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
.work_category_title_01 span {
  display: block;
  font-size: 1.8rem;
  margin-top: 10px;
}
.work_category_title_01::before {
  content: "";
  display: block;
  width: 60px;
  height: 79px;
  background-image: url(../images/work/icon_01@2x.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.work_category_title_02 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .work_category_title_02 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
.work_category_title_02 span {
  display: block;
  font-size: 1.8rem;
  margin-top: 10px;
}
.work_category_title_02::before {
  content: "";
  display: block;
  width: 60px;
  height: 59px;
  background-image: url(../images/work/icon_02@2x.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.work_category_title_03 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .work_category_title_03 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
.work_category_title_03 span {
  display: block;
  font-size: 1.8rem;
  margin-top: 10px;
}
.work_category_title_03::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../images/work/icon_03@2x.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.work_category_title_04 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .work_category_title_04 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
.work_category_title_04 span {
  display: block;
  font-size: 1.8rem;
  margin-top: 10px;
}
.work_category_title_04::before {
  content: "";
  display: block;
  width: 60px;
  height: 58px;
  background-image: url(../images/work/icon_04@2x.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.work_category_body {
  margin-bottom: 30px;
}

.work_category_contents_bnr_wrap {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .work_category_contents_bnr_wrap {
    display: block;
  }
}

.work_category_subtitle {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.work_category_list {
  margin-bottom: 30px;
}
.work_category_list li {
  list-style-image: url(../images/work/list_icon.png);
  list-style-position: inside;
  text-indent: -1.3em;
  padding-left: 1.3em;
  line-height: 1.4;
  margin-bottom: 5px;
}
.work_category_list li:last-child {
  margin-bottom: 0;
}

.work_category_voice {
  font-weight: bold;
  margin-bottom: 10px;
}
.work_category_voice::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: var(--color_black);
  transform: rotate(60deg);
  position: relative;
  top: -5px;
}
.work_category_voice::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: var(--color_black);
  transform: rotate(-60deg);
  position: relative;
  top: -5px;
}

.work_interview_wrap_01 {
  width: 350px;
  background-color: var(--color_interview_green);
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .work_interview_wrap_01 {
    width: 100%;
  }
}
.work_interview_wrap_01 a {
  display: block;
  padding: 10px;
}

.work_interview_wrap_02 {
  width: 350px;
  background-color: var(--color_interview_blue);
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .work_interview_wrap_02 {
    width: 100%;
  }
}
.work_interview_wrap_02 a {
  display: block;
  padding: 10px;
}

.work_interview_wrap_03 {
  width: 350px;
  background-color: var(--color_interview_yellow);
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .work_interview_wrap_03 {
    width: 100%;
  }
}
.work_interview_wrap_03 a {
  display: block;
  padding: 10px;
}

.work_interview_title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
}

.work_interview_inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.work_interview_inner .work_interview_img {
  border-right: 1px dashed var(--color_black);
  padding-right: 10px;
}
.work_interview_inner .work_interview_text {
  font-weight: bold;
  line-height: 1.4;
}
.work_interview_inner .work_interview_text span {
  display: block;
  font-weight: normal;
  color: #686868;
}

.work_interview_btn {
  width: 28px;
  height: 28px;
  background-color: var(--color_black);
  border-radius: 50%;
  background-image: url(../images/work/arrow_icon.png);
  background-size: 11px 11px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.work_category_img {
  display: none;
}
@media screen and (max-width: 768px) {
  .work_category_img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .work_category_img img {
    width: 100%;
  }
}

/*===================================
    Company
===================================*/
.company_mv {
  width: 100%;
  min-height: 750px;
  height: 80vh;
  background: url(../images/company/mv.jpg) right bottom no-repeat;
  background-size: cover;
  color: var(--color_white);
  display: flex;
  align-items: center;
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  .company_mv {
    width: 85%;
    min-height: auto;
    height: auto;
    background: none;
    color: var(--color_black);
    display: block;
    margin: 100px auto 30px;
  }
}

.company_mv_mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .company_mv_mobile {
    display: block;
    width: 100%;
    margin-bottom: 50px;
  }
  .company_mv_mobile img {
    width: 100%;
  }
}

.company_mv_inner {
  width: 700px;
  padding-left: 10%;
}
@media screen and (max-width: 768px) {
  .company_mv_inner {
    width: 100%;
    padding-left: 0;
  }
}
.company_mv_inner .company_mv_title p {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .company_mv_inner .company_mv_title p {
    line-height: 1.4;
  }
}
.company_mv_inner .company_mv_title h2 {
  font-family: "Jost", sans-serif;
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .company_mv_inner .company_mv_title h2 {
    font-size: 4rem;
    margin-bottom: 30px;
  }
}
.company_mv_inner .company_mv_catch {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .company_mv_inner .company_mv_catch {
    font-size: 3rem;
    margin-bottom: 10px;
    padding-left: 0;
  }
}
.company_mv_inner .company_mv_body {
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .company_mv_inner .company_mv_body {
    padding-left: 0;
  }
}

/*---------- Daily ----------*/
.company_daily_title_wrap {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .company_daily_title_wrap {
    width: 85%;
  }
}

.inner_page_subtitle_01 {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 30px;
}
.inner_page_subtitle_01 span {
  font-family: "Jost", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color_blue);
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .inner_page_subtitle_01 span {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .inner_page_subtitle_01 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.company_daily_wrap {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .company_daily_wrap {
    margin-bottom: 50px;
  }
}
.company_daily_wrap .company_daily_inner {
  width: 600px;
  position: absolute;
  right: 10%;
  bottom: 7%;
}
@media screen and (max-width: 768px) {
  .company_daily_wrap .company_daily_inner {
    width: 100%;
    position: relative;
    right: auto;
    bottom: auto;
  }
}
.company_daily_wrap .company_daily_inner h3 {
  font-size: 24px;
  color: var(--color_blue);
  background-color: var(--color_emerald);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  position: relative;
  left: -50px;
  bottom: -20px;
}
@media screen and (max-width: 768px) {
  .company_daily_wrap .company_daily_inner h3 {
    left: 7.5%;
  }
}
.company_daily_wrap .company_daily_inner p {
  background-color: var(--color_white);
  padding: 30px 30px 20px;
}
@media screen and (max-width: 768px) {
  .company_daily_wrap .company_daily_inner p {
    padding: 30px 7.5% 20px;
  }
}
.company_daily_wrap .company_daily_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*---------- Continue ----------*/
.company_continue_wrap {
  width: 1200px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .company_continue_wrap {
    width: 85%;
    margin: 0 auto 40px;
  }
}

.company_continue_inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .company_continue_inner {
    display: block;
  }
}

.company_continue_item {
  width: 380px;
}
@media screen and (max-width: 768px) {
  .company_continue_item {
    width: 100%;
  }
  .company_continue_item img {
    width: 100%;
  }
}
.company_continue_item h3 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--color_white);
  background-color: var(--color_blue);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  position: relative;
  left: 20px;
  top: -40px;
}
.company_continue_item p {
  position: relative;
  top: -20px;
}

/*---------- Obi ----------*/
.company_obi {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .company_obi {
    margin-bottom: 50px;
  }
}
.company_obi img {
  width: 100%;
}

/*---------- Company ----------*/
.company_company_wrap {
  width: 1200px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .company_company_wrap {
    width: 85%;
    margin: 0 auto 50px;
  }
}

.company_company_inner {
  width: 80%;
  margin-left: 20%;
}
@media screen and (max-width: 768px) {
  .company_company_inner {
    width: 100%;
    margin-left: 0;
  }
}

.company_company_list {
  display: flex;
  flex-wrap: wrap;
}
.company_company_list dt {
  width: 15%;
  border-bottom: 1px solid var(--color_blue);
  padding: 12px 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .company_company_list dt {
    width: 25%;
  }
}
.company_company_list dd {
  width: 85%;
  border-bottom: 1px solid var(--color_gray);
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .company_company_list dd {
    width: 75%;
  }
}
.company_company_list dd.company_company_list_dd_child dl {
  display: flex;
  flex-wrap: wrap;
}
.company_company_list dd.company_company_list_dd_child dl dt {
  width: 30%;
  border-bottom: 1px solid var(--color_gray);
  font-weight: normal;
}
.company_company_list dd.company_company_list_dd_child dl dt:first-of-type {
  padding-top: 0;
}
.company_company_list dd.company_company_list_dd_child dl dt:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.company_company_list dd.company_company_list_dd_child dl dd {
  width: 70%;
  border-bottom: 1px solid var(--color_gray);
}
.company_company_list dd.company_company_list_dd_child dl dd:first-of-type {
  padding-top: 0;
}
.company_company_list dd.company_company_list_dd_child dl dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.company_company_list dd.company_company_list_dd_child dl dd .company_company_list_permission {
  display: flex;
  flex-wrap: wrap;
}
.company_company_list dd.company_company_list_dd_child dl dd .company_company_list_permission dt {
  width: 23%;
  border-bottom: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .company_company_list dd.company_company_list_dd_child dl dd .company_company_list_permission dt {
    width: 40%;
  }
}
.company_company_list dd.company_company_list_dd_child dl dd .company_company_list_permission dd {
  width: 77%;
  border-bottom: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .company_company_list dd.company_company_list_dd_child dl dd .company_company_list_permission dd {
    width: 60%;
  }
}
.company_company_list dd .company_company_list_member {
  display: flex;
  flex-wrap: wrap;
}
.company_company_list dd .company_company_list_member dt {
  border-bottom: none;
  padding: 0;
  font-weight: normal;
  width: 12%;
}
@media screen and (max-width: 768px) {
  .company_company_list dd .company_company_list_member dt {
    width: 30%;
  }
}
.company_company_list dd .company_company_list_member dd {
  border-bottom: none;
  padding: 0;
  width: 88%;
}
@media screen and (max-width: 768px) {
  .company_company_list dd .company_company_list_member dd {
    width: 70%;
  }
}
.company_company_list dd ul li {
  list-style: disc;
  list-style-position: inside;
  padding-left: 2em;
  text-indent: -1.5em;
  line-height: 1.4;
  margin-bottom: 10px;
}
.company_company_list dd ul li:last-of-type {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .company_company_list dd ul li {
    text-indent: -1em;
  }
}
.company_company_list a {
  color: var(--color_blue);
  transition: all 0.2s;
}
.company_company_list a:hover {
  color: var(--color_blue_light);
}

/*===================================
    Environment - Welfare
===================================*/
.environment_mv {
  width: 90%;
  margin: 200px 0 150px 10%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .environment_mv {
    width: 100%;
    margin: 110px 0 70px;
    display: block;
  }
}

.inner_page_title_01 {
  font-family: "Jost", sans-serif;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color_blue);
  margin-bottom: 40px;
}
.inner_page_title_01 span {
  display: block;
  font-size: 1.8rem;
  color: var(--color_black);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .inner_page_title_01 span {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .inner_page_title_01 {
    font-size: 4rem;
  }
}

.environment_mv_txt {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .environment_mv_txt {
    width: 85%;
    margin: 0 auto 30px;
  }
}
.environment_mv_txt h3 {
  font-size: 4rem;
  line-height: 1.2;
  color: var(--color_blue);
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .environment_mv_txt h3 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
}

.environment_mv_img {
  width: calc(100% - 400px);
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .environment_mv_img {
    width: 100%;
  }
}
.environment_mv_img .enviroment_mv_obj {
  max-width: 306px;
  width: 25%;
  position: absolute;
  bottom: -20%;
  right: 5%;
  z-index: 3;
  -webkit-animation: float_anime_01 2.5s ease-in-out infinite;
          animation: float_anime_01 2.5s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .environment_mv_img .enviroment_mv_obj {
    width: 35%;
    bottom: -30%;
  }
}
.environment_mv_img .enviroment_mv_obj img {
  width: 100%;
}
.environment_mv_img p {
  width: 100%;
}
.environment_mv_img p img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.environment_mv_img .environment_mv_img_bg {
  width: 100%;
  height: 100%;
  background-color: var(--color_blue);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  top: 50%;
  transform: translate(7%, -50%) rotate(-5deg);
}

/*-----------------------------------
    Welfare Contents
-----------------------------------*/
.welfare_contents_wrap {
  width: 1200px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .welfare_contents_wrap {
    width: 85%;
    margin: 0 auto 50px;
  }
}

/*---------- New Step ----------*/
.welfare_new_step_wrap {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .welfare_new_step_wrap {
    margin-bottom: 50px;
  }
}

.environment_body_01 {
  max-width: 600px;
  margin-bottom: 30px;
}

.welfare_card_wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .welfare_card_wrap {
    display: block;
  }
}

.environment_card_01 {
  width: 390px;
  border: 2px solid #fff;
  background: linear-gradient(to bottom right, #DBE8F3 0%, #fff 100%);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .environment_card_01 {
    width: 100%;
    margin-bottom: 20px;
  }
}

.environment_card_02 {
  width: 592px;
  border: 2px solid #fff;
  background: linear-gradient(to bottom right, #DBE8F3 0%, #fff 100%);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .environment_card_02 {
    width: 100%;
    margin-bottom: 20px;
  }
}

.environment_card_title {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--color_white);
  background-color: var(--color_black);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .environment_card_title {
    font-size: 2rem;
  }
}

.welfare_new_step_number {
  font-family: "Jost", sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color_blue);
  text-align: center;
  margin-bottom: 10px;
}
.welfare_new_step_number span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 3.6rem;
}

.environment_card_note {
  font-size: 1rem;
}

.welfare_new_step_company {
  font-size: 6.5rem;
  font-weight: bold;
  line-height: 10rem;
  color: var(--color_blue);
  text-align: center;
  margin-bottom: 10px;
}

.welfare_new_step_icon_wrap {
  display: flex;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .welfare_new_step_icon_wrap {
    display: block;
  }
}
.welfare_new_step_icon_wrap .welfare_new_step_icon_text {
  width: calc(100% - 250px);
}
@media screen and (max-width: 768px) {
  .welfare_new_step_icon_wrap .welfare_new_step_icon_text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.welfare_new_step_icon_wrap .welfare_new_step_icon {
  width: 250px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .welfare_new_step_icon_wrap .welfare_new_step_icon {
    width: 100%;
  }
}

/*---------- Benefits ----------*/
.welfare_benefits_wrap {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .welfare_benefits_wrap {
    margin-bottom: 50px;
  }
}

.welfare_benefits_number {
  font-family: "Jost", sans-serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color_emerald);
  text-align: center;
  margin-bottom: 10px;
}
.welfare_benefits_number span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 3.6rem;
}

.welfare_benefits_icon {
  text-align: center;
  margin-bottom: 10px;
}

/*---------- Life Balance ----------*/
.environment_card_subtitle {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

/*---------- Office ----------*/
.welfare_office_wrap {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .welfare_office_wrap {
    margin-bottom: 50px;
  }
}

.welfare_office_title_wrap {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .welfare_office_title_wrap {
    width: 85%;
  }
}

.welfare_office_swiper_01 .swiper-wrapper,
.welfare_office_swiper_02 .swiper-wrapper {
  transition-timing-function: linear;
}
.welfare_office_swiper_01 .swiper-slide img,
.welfare_office_swiper_02 .swiper-slide img {
  width: 100%;
}

/*===================================
    Environment - Training
===================================*/
.training_bg_white_wrap {
  width: 90%;
  margin: 0 0 100px 10%;
}
@media screen and (max-width: 768px) {
  .training_bg_white_wrap {
    width: 100%;
    margin: 0 0 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .training_bg_white_wrap .training_growing_inner {
    width: 85%;
    margin: 0 auto;
  }
}
.training_bg_white_wrap .training_bg_white_inner {
  width: 100%;
  background-color: var(--color_white);
  padding: 100px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .training_bg_white_wrap .training_bg_white_inner {
    padding: 50px 7.5% 50px;
    overflow-x: auto;
    text-align: left;
  }
}

.training_contents_wrap {
  width: 1200px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .training_contents_wrap {
    width: 85%;
    margin: 0 auto 50px;
  }
}

.training_expand_wrap {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .training_expand_wrap {
    margin-bottom: 50px;
  }
}

.training_expand_inner {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .training_expand_inner {
    display: block;
    padding-top: 0;
  }
}
.training_expand_inner .training_expand_inner_item {
  width: 25%;
  padding: 0 30px;
  border-right: 1px dashed var(--color_gray);
}
@media screen and (max-width: 768px) {
  .training_expand_inner .training_expand_inner_item {
    width: 100%;
    padding: 30px 0;
    border-right: none;
    border-bottom: 1px dashed var(--color_gray);
  }
}
.training_expand_inner .training_expand_inner_item:first-of-type {
  border-left: 1px dashed var(--color_gray);
}
@media screen and (max-width: 768px) {
  .training_expand_inner .training_expand_inner_item:first-of-type {
    border-left: none;
    border-top: 1px dashed var(--color_gray);
  }
}
.training_expand_inner .training_expand_inner_item h3 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--color_white);
  background-color: var(--color_black);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .training_expand_inner .training_expand_inner_item h3 {
    font-size: 2rem;
    margin: 0 0 20px;
  }
}

/*---------- Certification ----------*/
.training_certification_wrap {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .training_certification_wrap {
    margin-bottom: 50px;
  }
}

.training_certification_inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .training_certification_inner {
    display: block;
  }
}
.training_certification_inner .training_certification_card_txt {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color_blue);
  text-align: center;
  margin-bottom: 15px;
}

.training_certification_system_wrap {
  width: 770px;
  margin: 0 auto;
  background-color: var(--color_emerald);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .training_certification_system_wrap {
    width: 100%;
    padding: 20px 20px 30px;
    display: block;
  }
}
.training_certification_system_wrap div:first-of-type {
  width: 25%;
  border-right: 1px dashed var(--color_black);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .training_certification_system_wrap div:first-of-type {
    width: 100%;
    border-right: none;
    border-bottom: 1px dashed var(--color_black);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.training_certification_system_wrap div:first-of-type h3 {
  font-size: 2.4rem;
  line-height: 1.4;
}
.training_certification_system_wrap div:nth-of-type(2) {
  width: 30%;
  border-right: 1px dashed var(--color_black);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .training_certification_system_wrap div:nth-of-type(2) {
    width: 100%;
    border-right: none;
    border-bottom: 1px dashed var(--color_black);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.training_certification_system_wrap div:nth-of-type(2) ul li {
  list-style: disc;
  list-style-position: inside;
  padding-left: 1em;
  text-indent: -1.3em;
  line-height: 1.4;
  margin-bottom: 5px;
}
.training_certification_system_wrap div:last-of-type {
  width: 45%;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .training_certification_system_wrap div:last-of-type {
    width: 100%;
    padding: 0;
  }
}

/*===================================
    Recruitment Description
===================================*/
.recruitment_title_wrap {
  padding: 180px 0 100px 10%;
}
@media screen and (max-width: 768px) {
  .recruitment_title_wrap {
    padding: 100px 0 70px 5%;
  }
}

.inner_page_title_03 {
  font-family: "Jost", sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color_blue);
}
@media screen and (max-width: 768px) {
  .inner_page_title_03 {
    font-size: 4rem;
  }
}
.inner_page_title_03 span {
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color_black);
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .inner_page_title_03 span {
    font-size: 1.8rem;
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .inner_page_title_03 {
    font-size: 3rem;
  }
}

.recruitment_contents_wrap_01 {
  padding: 100px 5%;
  background-color: var(--color_white);
}
@media screen and (max-width: 768px) {
  .recruitment_contents_wrap_01 {
    padding: 50px 7.5%;
  }
}

.recruitment_contents_inner {
  width: 1000px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .recruitment_contents_inner {
    width: 100%;
    margin: 0 auto 50px;
  }
}

.recruitment_title_01 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .recruitment_title_01 {
    font-size: 2.4rem;
  }
}

.recruitment_description_flow {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruitment_description_flow {
    text-align: left;
    overflow-x: auto;
  }
  .recruitment_description_flow img {
    width: 900px;
  }
}

.recruitment_description_img img {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */