@charset "UTF-8";
/* aタグ設定
------------------------------------- */
a:hover,
.alpha {
  opacity: 0.75;
}

a {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem;
  /* =14px */
  font-family: "Noto Sans", sans-serif;
}

ul {
  list-style: none;
}

/* レスポンシブ設定
------------------------------------- */
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.svg_anime {
  fill: transparent;
}
.svg_anime path {
  stroke-dasharray: 0;
  stroke-dashoffset: 685.538;
  transition: stroke-dashoffset 1s linear;
  transition-delay: 1s;
}

.fade_anime {
  transform: translateY(2.7777777778vw);
  opacity: 0;
  transition: 2s;
}
@media screen and (max-width: 768px) {
  .fade_anime {
    transform: translateY(5.3333333333vw);
  }
}
.fade_anime.on {
  transform: translateY(0);
  opacity: 1;
}

.border_gradient_btn {
  display: block;
  width: 13.1944444444vw;
  height: 3.6111111111vw;
  background: linear-gradient(to right, #00d4ff, #2b279e);
  padding: 0.1388888889vw;
  border-radius: 7.2916666667vw;
}
@media screen and (max-width: 768px) {
  .border_gradient_btn {
    width: 44.2666666667vw;
    height: 13.3333333333vw;
    padding: 0.5333333333vw;
    border-radius: 18.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .border_gradient_btn.sp {
    display: none;
  }
}
.border_gradient_btn .box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 6.9444444444vw;
  padding-left: 3.125vw;
}
@media screen and (max-width: 768px) {
  .border_gradient_btn .box {
    justify-content: flex-start;
    border-radius: 17.3333333333vw;
    padding-left: 10.6666666667vw;
  }
}
.border_gradient_btn .box span {
  font-size: 1.1111111111vw;
  letter-spacing: 0.01em;
  line-height: 1.95;
  color: #444;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .border_gradient_btn .box span {
    font-size: 3.4666666667vw;
  }
}
.border_gradient_btn .box img {
  position: absolute;
  top: 50%;
  right: 0.5555555556vw;
  transform: translateY(-50%);
  width: 2.4305555556vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .border_gradient_btn .box img {
    width: 8vw;
    right: 2.6666666667vw;
  }
}

.common_text_gradient {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#header {
  display: flex;
  align-items: center;
  width: 100%;
  height: 5.5555555556vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #03103e;
  padding: 0 7.2916666667vw 0 1.7361111111vw;
}
@media screen and (max-width: 768px) {
  #header {
    height: 17.3333333333vw;
    padding: 0 5.3333333333vw;
  }
}
#header .inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .inner .logo {
  width: 11.9444444444vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  #header .inner .logo {
    width: 45.8666666667vw;
  }
}
#header .inner .logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #header .inner nav {
    display: none;
  }
}
#header .inner nav ul {
  display: flex;
  align-items: center;
  gap: 1.7361111111vw;
}
#header .inner nav ul li:nth-child(3) a {
  width: 12.5vw;
}
#header .inner nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.0277777778vw;
  height: 3.0555555556vw;
  font-size: 1.0416666667vw;
  letter-spacing: 0.08;
  line-height: 1.85;
  font-weight: 700;
  color: #fff;
  border-radius: 4.8611111111vw;
  border: 0.0694444444vw solid #fff;
}
#header .inner nav ul li:first-child a {
  background: linear-gradient(to right, #00d4ff, #2b279e);
}
#header .inner nav ul li:last-child a {
  background: linear-gradient(to bottom, #024d83, #261f56);
}

.hamburger_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 5.5555555556vw;
  height: 5.5555555556vw;
  background: linear-gradient(to bottom, #354798, #110bc0);
  z-index: 110;
}
@media screen and (max-width: 768px) {
  .hamburger_menu {
    width: 17.3333333333vw;
    height: 17.3333333333vw;
  }
}
.hamburger_menu.on span {
  opacity: 0;
}
.hamburger_menu.on::before {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}
@media screen and (max-width: 768px) {
  .hamburger_menu.on::before {
    top: calc(50% - 0vw);
  }
}
.hamburger_menu.on::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}
@media screen and (max-width: 768px) {
  .hamburger_menu.on::after {
    top: calc(50% + 0vw);
  }
}
.hamburger_menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 1.9444444444vw;
  height: 0.1388888889vw;
  border-radius: 0.6944444444vw;
  background-color: #fff;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .hamburger_menu span {
    width: 7.4666666667vw;
    height: 0.5333333333vw;
    border-radius: 2.6666666667vw;
  }
}
.hamburger_menu::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.6944444444vw);
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 1.9444444444vw;
  height: 0.1388888889vw;
  border-radius: 0.6944444444vw;
  background-color: #fff;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .hamburger_menu::before {
    top: calc(50% - 2.6666666667vw);
    width: 7.4666666667vw;
    height: 0.5333333333vw;
    border-radius: 2.6666666667vw;
  }
}
.hamburger_menu::after {
  content: "";
  position: absolute;
  top: calc(50% + 0.6944444444vw);
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 1.9444444444vw;
  height: 0.1388888889vw;
  border-radius: 0.6944444444vw;
  background-color: #fff;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .hamburger_menu::after {
    top: calc(50% + 2.6666666667vw);
    width: 7.4666666667vw;
    height: 0.5333333333vw;
    border-radius: 2.6666666667vw;
  }
}

#menu_contents_pc {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: linear-gradient(180deg, #024d83, #261f56);
  padding: 9.7222222222vw 1.3888888889vw 5.5555555556vw;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc {
    display: none;
  }
}
#menu_contents_pc .inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.3888888889vw 5.9027777778vw;
}
#menu_contents_pc .inner .content {
  width: 15.9722222222vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .content {
    width: 100%;
    padding: 0 4vw;
  }
}
#menu_contents_pc .inner .content .content_ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .content .content_ttl {
    display: none;
  }
}
#menu_contents_pc .inner .content .content_ttl span {
  display: block;
  font-size: 2.0833333333vw;
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-weight: 400;
  color: #fff;
}
#menu_contents_pc .inner .content .content_ttl img {
  width: 1.6666666667vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .content .content_ttl img {
    display: none;
  }
}
#menu_contents_pc .inner .content .sub_ttl {
  font-size: 0.9027777778vw;
  letter-spacing: 0.08em;
  line-height: 1.85;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .content .sub_ttl {
    position: relative;
    font-size: 4.2666666667vw;
    padding: 4vw 0;
    border-bottom: 0.2666666667vw dashed #fff;
  }
  #menu_contents_pc .inner .content .sub_ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.6666666667vw;
    transform: translateY(-50%);
    display: block;
    width: 4.2666666667vw;
    height: 0.2666666667vw;
    background-color: #fff;
  }
  #menu_contents_pc .inner .content .sub_ttl::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.6666666667vw;
    transform: translateY(-50%) rotate(90deg);
    display: block;
    width: 4.2666666667vw;
    height: 0.2666666667vw;
    background-color: #fff;
    transition: 0.5s;
  }
  #menu_contents_pc .inner .content .sub_ttl.active::after {
    transform: translateY(-50%) rotate(0deg);
  }
}
#menu_contents_pc .inner .content .border {
  display: block;
  width: 100%;
  height: 0.0694444444vw;
  border-top: 0.0694444444vw dashed #fff;
  margin: 1.3888888889vw 0;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .content .border {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .content .link_list {
    display: none;
  }
}
#menu_contents_pc .inner .content .link_list ul {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .content .link_list ul {
    gap: 1.6vw;
    margin-top: 4vw;
    padding: 5.3333333333vw;
    border-radius: 0.8vw;
    background-color: #ededed;
  }
}
#menu_contents_pc .inner .content .link_list ul li a {
  position: relative;
  display: inline-block;
}
#menu_contents_pc .inner .content .link_list ul li a span {
  display: inline-block;
  transform: translateX(0);
  font-size: 0.8333333333vw;
  letter-spacing: 0;
  line-height: 1.85;
  font-weight: 400;
  color: #fff;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .content .link_list ul li a span {
    font-size: 3.2vw;
    color: #03103e;
  }
}
#menu_contents_pc .inner .content .link_list ul li a::before {
  position: absolute;
  top: 50%;
  left: 0.6944444444vw;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.6944444444vw;
  height: 0.6944444444vw;
  border-radius: 100%;
  background: linear-gradient(to right, #00d4ff, #2b279e);
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .content .link_list ul li a::before {
    display: none;
  }
}
#menu_contents_pc .inner .content .link_list ul li a:hover {
  opacity: 1;
}
#menu_contents_pc .inner .content .link_list ul li a:hover span {
  transform: translateX(1.0416666667vw);
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .content .link_list ul li a:hover span {
    transform: initial;
  }
}
#menu_contents_pc .inner .content .link_list ul li a:hover::before {
  left: 0;
  opacity: 1;
}
#menu_contents_pc .inner .logo_link_box {
  width: 15.9722222222vw;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .logo_link_box {
    width: 100%;
    padding: 0 4vw;
    margin-bottom: 21.3333333333vw;
  }
}
#menu_contents_pc .inner .logo_link_box .logo {
  width: 100%;
  height: auto;
  margin-bottom: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .logo_link_box .logo {
    width: 69.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
#menu_contents_pc .inner .logo_link_box .logo img {
  width: 100%;
  height: auto;
}
#menu_contents_pc .inner .logo_link_box ul {
  display: flex;
  flex-direction: column;
  gap: 0.6944444444vw;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .logo_link_box ul {
    gap: 2.6666666667vw;
  }
}
#menu_contents_pc .inner .logo_link_box ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 15.9722222222vw;
  padding: 0.6944444444vw 0.6944444444vw 0.6944444444vw 3.4722222222vw;
  border-radius: 4.8611111111vw;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .logo_link_box ul li a {
    width: 100%;
    padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw 8vw;
    border-radius: 18.6666666667vw;
  }
}
#menu_contents_pc .inner .logo_link_box ul li a span {
  font-size: 1.0416666667vw;
  letter-spacing: 0.08em;
  line-height: 1.85;
  font-weight: 700;
  color: #03103e;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .logo_link_box ul li a span {
    font-size: 4vw;
  }
}
#menu_contents_pc .inner .logo_link_box ul li a img {
  width: 2.0833333333vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  #menu_contents_pc .inner .logo_link_box ul li a img {
    width: 8vw;
  }
}

#menu_contents {
  display: none;
}
@media screen and (max-width: 768px) {
  #menu_contents {
    overflow: auto;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 29.3333333333vw 5.3333333333vw 10.6666666667vw;
    color: #fff;
    z-index: 99;
    background: linear-gradient(90deg, #024d83, #261f56);
  }
  #menu_contents .inner {
    display: flex;
    flex-direction: column;
    gap: 1.3333333333vw;
  }
  #menu_contents .inner .accordion_box .accordion_btn {
    position: relative;
    cursor: pointer;
    width: 100%;
    padding: 4vw 0;
    border-bottom: 0.2666666667vw dashed #fff;
  }
  #menu_contents .inner .accordion_box .accordion_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.6666666667vw;
    transform: translateY(-50%);
    display: block;
    width: 4.2666666667vw;
    height: 0.2666666667vw;
    background-color: #fff;
  }
  #menu_contents .inner .accordion_box .accordion_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.6666666667vw;
    transform: translateY(-50%) rotate(90deg);
    display: block;
    width: 4.2666666667vw;
    height: 0.2666666667vw;
    background-color: #fff;
    transition: 0.5s;
  }
  #menu_contents .inner .accordion_box .accordion_btn.active::after {
    transform: translateY(-50%) rotate(0deg);
  }
  #menu_contents .inner .accordion_box .accordion_btn p {
    font-size: 4.2666666667vw;
    letter-spacing: 0.08em;
    line-height: 1.65;
    font-weight: 400;
  }
  #menu_contents .inner .accordion_box .accordion_content {
    display: none;
  }
  #menu_contents .inner .accordion_box .accordion_content .content_inner {
    display: flex;
    flex-direction: column;
    gap: 2.6666666667vw;
    margin-top: 4vw;
    padding: 5.3333333333vw;
    background-color: rgba(255, 255, 255, 0.23);
  }
  #menu_contents .inner .accordion_box .accordion_content .content_inner a {
    color: #fff;
  }
  #menu_contents .inner .link_box {
    display: flex;
    flex-direction: column;
    gap: 2.1333333333vw;
    margin-top: 10.6666666667vw;
  }
  #menu_contents .inner .link_box a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.6666666667vw 5.3333333333vw;
    border-radius: 18.6666666667vw;
    border: 0.2666666667vw solid #fff;
    color: #fff;
    font-size: 4vw;
    letter-spacing: 0.08em;
    line-height: 1.85;
    font-weight: 700;
  }
  #menu_contents .inner .link_box a.recruitment_information_btn {
    background: linear-gradient(to right, #00d4ff, #2b279e);
  }
  #menu_contents .inner .link_box a.contact_btn {
    background: linear-gradient(to bottom, #024d83, #261f56);
  }
}

#footer {
  background: #fff;
  padding: 1.3888888889vw 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 8vw 4vw 5.3333333333vw;
  }
}
#footer .inner {
  width: 100%;
}
#footer .inner .sns_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  #footer .inner .sns_list {
    gap: 5.3333333333vw;
  }
}
#footer .inner .sns_list li a {
  display: block;
  width: auto;
  height: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  #footer .inner .sns_list li a {
    height: 8vw;
  }
}
#footer .inner .sns_list li a img {
  width: auto;
  height: 100%;
}
#footer .inner .border {
  width: 100%;
  height: 0.0694444444vw;
  border-top: 0.0694444444vw dashed #444;
  margin: 2.0833333333vw 0;
}
@media screen and (max-width: 768px) {
  #footer .inner .border {
    height: 0.2666666667vw;
    border-top: 0.2666666667vw dashed #444;
    margin: 5.3333333333vw 0;
  }
}
#footer .inner .contents {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #footer .inner .contents {
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
#footer .inner .contents .right_contents {
  display: flex;
  align-items: center;
  gap: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  #footer .inner .contents .right_contents {
    justify-content: space-between;
  }
}
#footer .inner .contents .right_contents .logo {
  width: 3.1944444444vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  #footer .inner .contents .right_contents .logo {
    width: 10.6666666667vw;
  }
}
#footer .inner .contents .right_contents .logo img {
  width: 100%;
  height: auto;
}
#footer .inner .contents .right_contents .link {
  display: flex;
  align-items: center;
  gap: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  #footer .inner .contents .right_contents .link {
    gap: 4vw;
  }
}
#footer .inner .contents .right_contents .link a {
  font-size: 0.9027777778vw;
  letter-spacing: 0.08em;
  line-height: 1.85;
  font-weight: 400;
  color: #595963;
}
@media screen and (max-width: 768px) {
  #footer .inner .contents .right_contents .link a {
    font-size: 3.2vw;
  }
}
#footer .inner .contents .left_content p {
  font-size: 0.6944444444vw;
  letter-spacing: 0.08em;
  line-height: 1.85;
  font-weight: 500;
  color: #03103e;
}
@media screen and (max-width: 768px) {
  #footer .inner .contents .left_content p {
    font-size: 2.6666666667vw;
  }
}

.sitemap_sec {
  position: relative;
  width: 100%;
  padding: 12.5vw 5.5555555556vw 19.4444444444vw;
  background: linear-gradient(to bottom, #024d83, #20275e);
}
@media screen and (max-width: 768px) {
  .sitemap_sec {
    padding: 16vw 4vw 32vw;
  }
}
.sitemap_sec .bg_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 94.4444444444vw;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .bg_line {
    width: 100%;
  }
}
.sitemap_sec .bottom_wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}
.sitemap_sec .bottom_wave img {
  width: 100%;
  height: auto;
}
.sitemap_sec .inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner {
    flex-direction: column;
    align-items: initial;
    justify-content: initial;
  }
}
.sitemap_sec .inner .logo_link_box {
  width: 18.0555555556vw;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .logo_link_box {
    width: 100%;
    padding: 0 4vw;
    margin-bottom: 21.3333333333vw;
  }
}
.sitemap_sec .inner .logo_link_box .logo {
  width: 100%;
  height: auto;
  margin-bottom: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .logo_link_box .logo {
    width: 69.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.sitemap_sec .inner .logo_link_box .logo img {
  width: 100%;
  height: auto;
}
.sitemap_sec .inner .logo_link_box ul {
  display: flex;
  flex-direction: column;
  gap: 0.6944444444vw;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .logo_link_box ul {
    gap: 2.6666666667vw;
  }
}
.sitemap_sec .inner .logo_link_box ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 15.9722222222vw;
  padding: 0.6944444444vw 0.6944444444vw 0.6944444444vw 3.4722222222vw;
  border-radius: 4.8611111111vw;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .logo_link_box ul li a {
    width: 100%;
    padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw 8vw;
    border-radius: 18.6666666667vw;
  }
}
.sitemap_sec .inner .logo_link_box ul li a span {
  font-size: 1.0416666667vw;
  letter-spacing: 0.08em;
  line-height: 1.85;
  font-weight: 700;
  color: #03103e;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .logo_link_box ul li a span {
    font-size: 4vw;
  }
}
.sitemap_sec .inner .logo_link_box ul li a img {
  width: 2.0833333333vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .logo_link_box ul li a img {
    width: 8vw;
  }
}
.sitemap_sec .inner .site_link_contents {
  width: 57.9861111111vw;
  height: 52.0833333333vw;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 4.1666666667vw 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .site_link_contents {
    width: 100%;
    height: initial;
    gap: 0;
  }
}
.sitemap_sec .inner .site_link_contents .content {
  width: 15.625vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .site_link_contents .content {
    width: 100%;
    padding: 0 4vw;
  }
}
.sitemap_sec .inner .site_link_contents .content .content_ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .site_link_contents .content .content_ttl {
    display: none;
  }
}
.sitemap_sec .inner .site_link_contents .content .content_ttl span {
  display: block;
  font-size: 2.0833333333vw;
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-weight: 400;
  color: #fff;
}
.sitemap_sec .inner .site_link_contents .content .content_ttl img {
  width: 1.6666666667vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .site_link_contents .content .content_ttl img {
    display: none;
  }
}
.sitemap_sec .inner .site_link_contents .content .sub_ttl {
  font-size: 0.9027777778vw;
  letter-spacing: 0.08em;
  line-height: 1.85;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .site_link_contents .content .sub_ttl {
    position: relative;
    font-size: 4.2666666667vw;
    padding: 4vw 0;
    border-bottom: 0.2666666667vw dashed #fff;
  }
  .sitemap_sec .inner .site_link_contents .content .sub_ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.6666666667vw;
    transform: translateY(-50%);
    display: block;
    width: 4.2666666667vw;
    height: 0.2666666667vw;
    background-color: #fff;
  }
  .sitemap_sec .inner .site_link_contents .content .sub_ttl::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.6666666667vw;
    transform: translateY(-50%) rotate(90deg);
    display: block;
    width: 4.2666666667vw;
    height: 0.2666666667vw;
    background-color: #fff;
    transition: 0.5s;
  }
  .sitemap_sec .inner .site_link_contents .content .sub_ttl.active::after {
    transform: translateY(-50%) rotate(0deg);
  }
}
.sitemap_sec .inner .site_link_contents .content .border {
  display: block;
  width: 100%;
  height: 0.0694444444vw;
  border-top: 0.0694444444vw dashed #fff;
  margin: 1.3888888889vw 0;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .site_link_contents .content .border {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .site_link_contents .content .link_list {
    display: none;
  }
}
.sitemap_sec .inner .site_link_contents .content .link_list ul {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .site_link_contents .content .link_list ul {
    gap: 1.6vw;
    margin-top: 4vw;
    padding: 5.3333333333vw;
    border-radius: 0.8vw;
    background-color: #ededed;
  }
}
.sitemap_sec .inner .site_link_contents .content .link_list ul li a {
  position: relative;
  display: inline-block;
}
.sitemap_sec .inner .site_link_contents .content .link_list ul li a span {
  display: inline-block;
  transform: translateX(0);
  font-size: 0.8333333333vw;
  letter-spacing: 0;
  line-height: 1.85;
  font-weight: 400;
  color: #fff;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .site_link_contents .content .link_list ul li a span {
    font-size: 3.2vw;
    color: #03103e;
  }
}
.sitemap_sec .inner .site_link_contents .content .link_list ul li a::before {
  position: absolute;
  top: 50%;
  left: 0.6944444444vw;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.6944444444vw;
  height: 0.6944444444vw;
  border-radius: 100%;
  background: linear-gradient(to right, #00d4ff, #2b279e);
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .site_link_contents .content .link_list ul li a::before {
    display: none;
  }
}
.sitemap_sec .inner .site_link_contents .content .link_list ul li a:hover {
  opacity: 1;
}
.sitemap_sec .inner .site_link_contents .content .link_list ul li a:hover span {
  transform: translateX(1.0416666667vw);
}
@media screen and (max-width: 768px) {
  .sitemap_sec .inner .site_link_contents .content .link_list ul li a:hover span {
    transform: initial;
  }
}
.sitemap_sec .inner .site_link_contents .content .link_list ul li a:hover::before {
  left: 0;
  opacity: 1;
}

.common_page {
  position: relative;
  background-color: #03103e;
}
.common_page section {
  position: relative;
  z-index: 10;
}
.common_page .fv_bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 47.5694444444vw;
  background-image: url("/assets/images/lower_page_fv_bg.jpg");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .common_page .fv_bg_img {
    height: 80vw;
  }
}
.common_page .fv_bg_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 128.125vw;
  background: linear-gradient(to bottom, rgba(0, 73, 129, 0.9), rgba(3, 16, 62, 0.9));
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .common_page .fv_bg_img::before {
    height: 320vw;
  }
}
.common_page .fv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 47.5694444444vw;
  margin-bottom: -23.6111111111vw;
}
@media screen and (max-width: 768px) {
  .common_page .fv {
    height: 80vw;
    margin-bottom: 0vw;
  }
}
.common_page .fv .top_line {
  position: absolute;
  top: 0;
  right: 0;
  width: 20.4861111111vw;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .common_page .fv .top_line {
    width: 32vw;
  }
}
.common_page .fv .top_line img {
  width: 100%;
  height: auto;
}
.common_page .fv .bottom_line {
  position: absolute;
  left: 0;
  bottom: -13.8888888889vw;
  width: 23.6111111111vw;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .common_page .fv .bottom_line {
    bottom: -32vw;
    width: 48vw;
    display: none;
  }
}
.common_page .fv .bottom_line img {
  width: 100%;
  height: auto;
}
.common_page .fv .inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.7777777778vw;
  width: 100%;
  height: 100%;
  padding: 8.6805555556vw 6.9444444444vw 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .common_page .fv .inner {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: initial;
    padding: 13.3333333333vw 5.3333333333vw 10.6666666667vw;
  }
}
.common_page .fv .inner .ttl_box {
  margin-top: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .common_page .fv .inner .ttl_box {
    margin-top: unset;
  }
}
.common_page .fv .inner .ttl_box h2 {
  font-size: 6.6666666667vw;
  letter-spacing: 0.08em;
  line-height: 1.25;
  font-weight: 400;
  background: linear-gradient(to right, #fff, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 768px) {
  .common_page .fv .inner .ttl_box h2 {
    line-height: 1.3;
    margin-bottom: 1.3333333333vw;
    font-size: 12.8vw;
  }
}
.common_page .fv .inner .ttl_box p {
  margin-left: 0.6944444444vw;
  font-size: 0.9027777778vw;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .common_page .fv .inner .ttl_box p {
    margin-left: 0.3472222222vw;
    font-size: 3.7333333333vw;
  }
}
.common_page .fv .inner .breadcrumbs_list {
  display: flex;
  align-items: center;
  gap: 0.9027777778vw;
  color: #fff;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .common_page .fv .inner .breadcrumbs_list {
    margin-left: 0.3472222222vw;
    gap: 2.6666666667vw;
  }
}
.common_page .fv .inner .breadcrumbs_list .link {
  font-size: 0.9027777778vw;
  letter-spacing: -0.02em;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .common_page .fv .inner .breadcrumbs_list .link {
    font-size: 3.2vw;
  }
}
.common_page .fv .inner .breadcrumbs_list span {
  display: block;
  width: 2.0833333333vw;
  height: 0.0694444444vw;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .common_page .fv .inner .breadcrumbs_list span {
    width: 5.3333333333vw;
    height: 0.2666666667vw;
  }
}
.common_page .fv .inner .breadcrumbs_list .current {
  font-size: 0.9027777778vw;
  letter-spacing: -0.02em;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .common_page .fv .inner .breadcrumbs_list .current {
    font-size: 3.2vw;
  }
}
.common_page .fv_text {
  position: relative;
  color: #fff;
  padding: 0 12.8472222222vw;
  margin-bottom: 5.9027777778vw;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .common_page .fv_text {
    padding: 8vw 5.3333333333vw 0;
    margin-bottom: 10.6666666667vw;
  }
}
.common_page .fv_text .inner {
  width: 40.2777777778vw;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .common_page .fv_text .inner {
    width: 100%;
  }
}
.common_page .fv_text .inner h2 {
  font-size: 3.0555555556vw;
  letter-spacing: 0.08em;
  line-height: 1.35;
  font-weight: 400;
  margin-bottom: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .common_page .fv_text .inner h2 {
    font-size: 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.common_page .fv_text .inner p {
  font-size: 1.1111111111vw;
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .common_page .fv_text .inner p {
    font-size: 4.2666666667vw;
  }
}
.common_page .banner_img_sec {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/422;
}
@media screen and (max-width: 768px) {
  .common_page .banner_img_sec {
    aspect-ratio: 375/200;
  }
}
.common_page .banner_img_sec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.common_page .section_box {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0 5.2083333333vw 5.5555555556vw 0;
  background-color: rgb(3, 16, 62);
  transition: 1s;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .common_page .section_box {
    flex-direction: column;
    padding: 10.6666666667vw 5.3333333333vw 16vw;
  }
}
.common_page .section_box.section_white {
  background-color: rgb(239, 239, 239);
}
.common_page .section_box.section_white .section_list_ttl ul li a {
  color: #000;
}
.common_page .section_box .left_text {
  position: sticky;
  width: 5.2083333333vw;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  margin-left: -1.3888888889vw;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .common_page .section_box .left_text {
    display: none;
  }
}
.common_page .section_box .left_text p {
  position: absolute;
  font-size: 5.2083333333vw;
  letter-spacing: 0.08em;
  line-height: 1.25;
  font-weight: 400;
  background: linear-gradient(to right, #3d476b, #999999);
  writing-mode: vertical-rl;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: 0.5s;
  white-space: nowrap;
}
.common_page .section_box .left_text p.on {
  opacity: 1;
}
.common_page .section_box .section_list_ttl {
  position: sticky;
  top: -1.0416666667vw;
  padding: 12.1527777778vw 0;
  margin-left: 0.6944444444vw;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .common_page .section_box .section_list_ttl {
    position: initial;
    display: none;
  }
}
.common_page .section_box .section_list_ttl ul {
  display: flex;
  flex-direction: column;
  gap: 1.3888888889vw;
}
.common_page .section_box .section_list_ttl ul li {
  display: flex;
  align-items: center;
  gap: 1.25vw;
  color: #fff;
}
.common_page .section_box .section_list_ttl ul li::before {
  content: "";
  display: block;
  width: 2.2222222222vw;
  height: 0.4166666667vw;
  transform: rotate(180deg);
  background: linear-gradient(to right, #00d4ff, #2b279e);
}
.common_page .section_box .section_list_ttl ul li.on a {
  color: #ffd117;
  font-size: 1.1111111111vw;
}
.common_page .section_box .section_list_ttl ul li a {
  font-size: 0.9722222222vw;
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-weight: 500;
  color: #fff;
}
.common_page .section_box .section_list {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .common_page .section_box .section_list {
    display: flex;
    flex-direction: column;
    gap: 13.3333333333vw;
    margin: 0;
    width: 100%;
  }
}
.common_page .section_box .section_list .number_common_sec {
  position: relative;
  color: #fff;
  padding-top: 10.4166666667vw;
}
@media screen and (max-width: 768px) {
  .common_page .section_box .section_list .number_common_sec {
    width: 100%;
    padding-top: 8vw;
  }
}
.common_page .section_box .section_list .number_common_sec.number_common_white .right_number p {
  color: rgba(0, 0, 0, 0.23);
}
.common_page .section_box .section_list .number_common_sec.number_common_white .main_contents h2 {
  color: #000;
}
.common_page .section_box .section_list .number_common_sec .right_number {
  position: absolute;
  top: 2.4305555556vw;
  right: -1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .common_page .section_box .section_list .number_common_sec .right_number {
    top: -6.4vw;
    right: -4.5333333333vw;
  }
}
.common_page .section_box .section_list .number_common_sec .right_number p {
  font-size: 13.75vw;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.23);
}
@media screen and (max-width: 768px) {
  .common_page .section_box .section_list .number_common_sec .right_number p {
    font-size: 26.6666666667vw;
  }
}
.common_page .section_box .section_list .number_common_sec .inner .main_contents {
  width: 59.3055555556vw;
}
@media screen and (max-width: 768px) {
  .common_page .section_box .section_list .number_common_sec .inner .main_contents {
    width: 100%;
  }
}
.common_page .section_box .section_list .number_common_sec .inner .main_contents h2 {
  font-size: 3.0555555556vw;
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .common_page .section_box .section_list .number_common_sec .inner .main_contents h2 {
    font-size: 6.4vw;
    line-height: 1.35;
    margin-bottom: 10.6666666667vw;
  }
}

.works_sec {
  position: relative;
  padding: 14.9305555556vw 0 10.4166666667vw;
  background: linear-gradient(to bottom, #033050 0, #033050 11.25vw, #3c3c84);
  border-radius: 0 0 3.4722222222vw 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  .works_sec {
    padding: 37.3333333333vw 5.3333333333vw 21.3333333333vw;
    border-radius: 0 0 5.3333333333vw 5.3333333333vw;
  }
}
.works_sec.bottom_sec {
  padding: 14.9305555556vw 0 18.75vw;
}
@media screen and (max-width: 768px) {
  .works_sec.bottom_sec {
    padding: 37.3333333333vw 5.3333333333vw 48vw;
  }
}
.works_sec .top_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 11.25vw;
  background-color: #efefef;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .works_sec .top_line {
    top: -1px;
    height: 11.2vw;
  }
}
.works_sec .top_line.bg_bule {
  background-color: #03103e;
}
.works_sec .top_line img {
  width: 100%;
  height: auto;
}
.works_sec .inner {
  width: 89.5833333333vw;
  display: flex;
  align-items: center;
  gap: 2.7777777778vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .works_sec .inner {
    width: 100%;
    flex-direction: column;
    gap: 2.6666666667vw;
  }
}
.works_sec .inner .works_content {
  width: calc(50% - 1.3888888889vw);
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content {
    order: 2;
    width: 100%;
  }
}
.works_sec .inner .works_content ul {
  display: flex;
  flex-direction: column;
  gap: 3.125vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul {
    gap: 2.6666666667vw;
  }
}
.works_sec .inner .works_content ul li {
  width: 100%;
  height: auto;
}
.works_sec .inner .works_content ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 1.7361111111vw 1.7361111111vw 2.0833333333vw;
  background: #fff;
  border-radius: 1.25vw;
  color: #444;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul li a {
    padding: 5.3333333333vw 4vw;
    border-radius: 3.4666666667vw;
  }
}
.works_sec .inner .works_content ul li a .img {
  width: 100%;
  height: auto;
  aspect-ratio: 570/315;
  margin-bottom: 1.7361111111vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul li a .img {
    aspect-ratio: 305/169;
    margin-bottom: 5.3333333333vw;
  }
}
.works_sec .inner .works_content ul li a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3472222222vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul li a .img img {
    border-radius: 0.8vw;
  }
}
.works_sec .inner .works_content ul li a .article_ttl {
  font-size: 1.3888888889vw;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.65;
  margin-bottom: 2.4305555556vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul li a .article_ttl {
    font-size: 4vw;
    margin-bottom: 5.3333333333vw;
  }
}
.works_sec .inner .works_content ul li a .tag_list {
  display: flex;
  flex-direction: column;
  gap: 1.3888888889vw;
  padding-right: 15.9722222222vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul li a .tag_list {
    gap: 2.6666666667vw;
    padding: 0;
  }
}
.works_sec .inner .works_content ul li a .tag_list .tag {
  display: flex;
  align-items: center;
  gap: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul li a .tag_list .tag {
    gap: 2.6666666667vw;
  }
}
.works_sec .inner .works_content ul li a .tag_list .tag .gradient {
  padding: 0.1388888889vw;
  background: linear-gradient(to right, #00d4ff, #2b279e);
  border-radius: 9.375vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul li a .tag_list .tag .gradient {
    padding: 0.5333333333vw;
    border-radius: 36vw;
  }
}
.works_sec .inner .works_content ul li a .tag_list .tag .gradient span {
  display: block;
  padding: 0.3472222222vw 1.5277777778vw;
  font-size: 0.9722222222vw;
  letter-spacing: 0.01em;
  line-height: 1.85;
  font-weight: 700;
  color: #0e0b2c;
  background-color: #fff;
  border-radius: 9.375vw;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul li a .tag_list .tag .gradient span {
    padding: 0.8vw 5.3333333333vw;
    font-size: 3.7333333333vw;
    border-radius: 36vw;
  }
}
.works_sec .inner .works_content ul li a .tag_list .tag p {
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul li a .tag_list .tag p {
    font-size: 4vw;
  }
}
.works_sec .inner .works_content ul li a .border_gradient_btn {
  position: absolute;
  right: 2.7777777778vw;
  bottom: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul li a .border_gradient_btn {
    position: initial;
    right: initial;
    bottom: initial;
    margin-top: 2.6666666667vw;
    margin-left: auto;
  }
}
.works_sec .inner .works_content ul li a .border_gradient_btn .box img {
  width: 1.5277777778vw;
  right: 1.1805555556vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .works_content ul li a .border_gradient_btn .box img {
    width: 4.8vw;
    right: 3.7333333333vw;
  }
}
.works_sec .inner .contents_right {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .contents_right {
    order: 1;
  }
}
.works_sec .inner .contents_right .ttl_box {
  text-align: end;
  margin-bottom: 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .contents_right .ttl_box {
    text-align: start;
    margin-bottom: 13.3333333333vw;
  }
}
.works_sec .inner .contents_right .ttl_box h2 {
  font-size: 6.6666666667vw;
  letter-spacing: 0.08em;
  line-height: 1.25;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .contents_right .ttl_box h2 {
    font-size: 10.6666666667vw;
    margin-bottom: 4vw;
  }
}
.works_sec .inner .contents_right .ttl_box span {
  font-size: 0.9027777778vw;
  letter-spacing: -0.02em;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .contents_right .ttl_box span {
    font-size: 3.4666666667vw;
  }
}
.works_sec .inner .contents_right .text {
  font-size: 1.1111111111vw;
  letter-spacing: 0.01em;
  line-height: 1.95;
  font-weight: 700;
  margin-bottom: 8.3333333333vw;
}
@media screen and (max-width: 768px) {
  .works_sec .inner .contents_right .text {
    font-size: 3.7333333333vw;
    margin-bottom: 20vw;
  }
}
.works_sec .inner .article_list_link {
  width: 19.7916666667vw;
  height: 4.8611111111vw;
  margin-top: 9.0277777778vw;
  margin-left: auto;
  margin-right: 0.6944444444vw;
}
@media screen and (min-width: 769px) {
  .works_sec .inner .article_list_link.sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .works_sec .inner .article_list_link {
    width: 61.3333333333vw;
    height: 13.3333333333vw;
    margin: 13.3333333333vw 0 0;
    order: 3;
  }
}

.recruit_sec {
  position: relative;
  margin-top: -8.3333333333vw;
  padding: 8.3333333333vw 5.5555555556vw;
  background: linear-gradient(to right, #024d83, #261f56);
  border-radius: 6.9444444444vw 6.9444444444vw 0 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .recruit_sec {
    margin-top: -16vw;
    padding: 16vw 4vw;
    border-radius: 5.3333333333vw 5.3333333333vw 0 0;
  }
}
.recruit_sec .contents {
  display: flex;
  align-items: center;
  gap: 6.9444444444vw;
  padding: 5.5555555556vw 6.5972222222vw 5.9027777778vw;
  background-image: url("/assets/images/recruit_bg.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .recruit_sec .contents {
    align-items: initial;
    flex-direction: column;
    gap: 8vw;
    padding: 13.3333333333vw 5.3333333333vw;
    border-radius: 5.3333333333vw 5.3333333333vw;
  }
}
.recruit_sec .contents .ttl_box {
  color: #fff;
}
.recruit_sec .contents .ttl_box h2 {
  font-family: "Roboto", sans-serif;
  font-size: 4.4444444444vw;
  letter-spacing: 0.08em;
  line-height: 1.25;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .recruit_sec .contents .ttl_box h2 {
    font-size: 12.8vw;
  }
}
.recruit_sec .contents .ttl_box span {
  font-size: 0.9027777778vw;
  letter-spacing: 0.08em;
  line-height: 1.85;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .recruit_sec .contents .ttl_box span {
    font-size: 3.4666666667vw;
  }
}
.recruit_sec .contents .box {
  color: #fff;
  text-align: center;
  padding-left: 6.9444444444vw;
  border-left: 0.0694444444vw dashed #fff;
}
@media screen and (max-width: 768px) {
  .recruit_sec .contents .box {
    text-align: start;
    width: 100%;
    padding-left: 0;
    border: none;
    padding-top: 8vw;
    border-top: 0.2666666667vw dashed #fff;
  }
}
.recruit_sec .contents .box h3 {
  font-size: 2.2222222222vw;
  letter-spacing: 0.08em;
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .recruit_sec .contents .box h3 {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.recruit_sec .contents .box p {
  font-size: 0.9027777778vw;
  letter-spacing: -0.04em;
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .recruit_sec .contents .box p {
    font-size: 3.7333333333vw;
    margin-bottom: 8vw;
  }
}
.recruit_sec .contents .box .link_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .recruit_sec .contents .box .link_list {
    gap: 5.3333333333vw;
    flex-direction: column;
  }
}
.recruit_sec .contents .box .link_list a {
  width: 17.3611111111vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6944444444vw 0.6944444444vw 0.6944444444vw 2.0833333333vw;
  border-radius: 4.8611111111vw;
}
@media screen and (max-width: 768px) {
  .recruit_sec .contents .box .link_list a {
    width: 66.6666666667vw;
    padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw 8vw;
    border-radius: 18.6666666667vw;
  }
}
.recruit_sec .contents .box .link_list a span {
  display: block;
  font-size: 1.0416666667vw;
  letter-spacing: 0.08em;
  line-height: 1.85;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .recruit_sec .contents .box .link_list a span {
    font-size: 4vw;
  }
}
.recruit_sec .contents .box .link_list a img {
  width: 3.4722222222vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .recruit_sec .contents .box .link_list a img {
    width: 13.3333333333vw;
  }
}
.recruit_sec .contents .box .link_list a:first-child {
  background-color: #fff;
  color: #0e0b2c;
}
.recruit_sec .contents .box .link_list a:last-child {
  background: linear-gradient(to right, #00d4ff, #2b279e);
  color: #fff;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6944444444vw;
  margin-top: 6.9444444444vw;
}
@media screen and (max-width: 768px) {
  .pagination {
    gap: 2.6666666667vw;
    margin-top: 21.3333333333vw;
  }
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.0555555556vw;
  height: 3.0555555556vw;
  background-color: #fff;
  font-size: 1.1111111111vw;
  letter-spacing: 0.01em;
  line-height: 1.95;
  font-weight: 800;
  color: #0a0817;
}
@media screen and (max-width: 768px) {
  .pagination .page-numbers {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
    font-size: 3.2vw;
  }
}
.pagination .page-numbers img {
  width: 1.25vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .pagination .page-numbers img {
    width: 3.2vw;
  }
}/*# sourceMappingURL=common.css.map */