@charset "UTF-8";
@media (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  color: #000;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

:target {
  scroll-margin-top: 120px;
}
@media (max-width: 1300px) {
  :target {
    scroll-margin-top: 60px;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

img {
  display: block;
  width: 100%;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  a.fax[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.inner {
  width: 100%;
  max-width: 1300px;
  padding: 0 25px;
  margin: auto;
}
@media (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding: 0 16px;
  }
}

.btn {
  display: inline-block;
  position: relative;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  background-color: #C5AB7A;
  border: 1px solid #C5AB7A;
  width: 100%;
  max-width: 300px;
  padding: 17px clamp(15px, 1.6vw, 24px) 17px;
  text-align: left;
  z-index: 1;
}
@media (max-width: 768px) {
  .btn {
    max-width: 260px;
    padding: 14px 15px;
  }
}

@media (min-width: 768px) {
  .btn:hover {
    color: #0D2961;
    background-color: #fff;
    border-color: #0D2961;
  }
}

.btn span {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-right: 30px;
}

.btn span::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 13px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/recruit_common/icon_arrow_right_white.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .btn:hover span::after {
    background: url(../images/recruit_common/icon_arrow_right_blue-900.svg) no-repeat center center/contain;
  }
}

.section_title {
  font-size: clamp(24px, 1.8666666667vw, 28px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #1D75C0;
  text-align: center;
  width: 100%;
  max-width: 685px;
  margin-inline: auto;
  padding: 39px 50px;
  clip-path: polygon(5% 100%, 95% 100%, 100% 0, 0 0);
}
@media (max-width: 768px) {
  .section_title {
    font-size: 22px;
    padding: 20px 30px;
  }
}

.section_left_title_wrapper {
  position: relative;
  width: calc(50% - 305px);
  background-color: #1D75C0;
  min-width: 345px;
  padding: 39px 25px 39px 25px;
  clip-path: polygon(0 100%, calc(100% - 37px) 100%, 100% 0, 0 0);
  z-index: 2;
}
@media (max-width: 768px) {
  .section_left_title_wrapper {
    min-width: 260px;
    padding: 20px 25px 20px 16px;
  }
}

.section_left_title {
  font-size: clamp(24px, 1.8666666667vw, 28px);
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  width: 100%;
  max-width: 293px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .section_left_title {
    font-size: 22px;
    max-width: 100%;
  }
}

.en_title {
  font-size: clamp(90px, 8.5333333333vw, 128px);
  letter-spacing: 0.05em;
  line-height: 100%;
  font-weight: 700;
  color: rgba(13, 41, 97, 0.1);
  font-style: italic;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .en_title {
    font-size: 40px;
  }
}

.body.is_open {
  overflow: hidden;
}

/* Header
------------------------------ */
.header {
  position: fixed;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}
@media (max-width: 1300px) {
  .header {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header_fixed {
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  height: inherit;
  padding-left: 25px;
}
@media (max-width: 768px) {
  .header_inner {
    padding-left: 16px;
  }
}

.header_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 408px;
  height: inherit;
}
@media (max-width: 768px) {
  .header_unit {
    max-width: 270px;
  }
}

.header_logo {
  width: 100%;
  max-width: 305px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .header_logo {
    max-width: 180px;
  }
}

.header_title {
  font-size: 14px;
  font-weight: 700;
  color: #757575;
}

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 814px;
  height: inherit;
}
@media (max-width: 1300px) {
  .header_nav {
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  .header_nav {
    max-width: 60px;
  }
}

.header_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 1.6666666667vw, 25px);
}
@media (max-width: 1300px) {
  .header_lists {
    display: none;
  }
}

.header_list_link {
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 100%;
  white-space: nowrap;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .header_list_link:hover {
    color: #0D2961;
  }
}

.header_list_link::after {
  position: absolute;
  content: "";
  width: 0;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #0D2961;
}

@media (min-width: 768px) {
  .header_list_link:hover::after {
    width: 100%;
  }
}

.header_list_modal_wrap {
  position: relative;
}

@media (min-width: 768px) {
  .header_list_modal_wrap:hover > .header_list_modal {
    -webkit-transform: scaleY(1) translateX(-50%);
            transform: scaleY(1) translateX(-50%);
  }
}

.header_list_modal {
  position: absolute;
  top: 60px;
  left: 50%;
  width: 100%;
  color: #fff;
  background-color: #0D2961;
  -webkit-transform: scaleY(0) translateX(-50%);
          transform: scaleY(0) translateX(-50%);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.header_list_modal_item a {
  position: relative;
  display: inline-block;
  line-height: 120%;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
}

@media (min-width: 768px) {
  .header_list_modal_item a:hover {
    color: #0D2961;
    background-color: #0D2961;
  }
}

.header_buttons {
  width: 100%;
  max-width: 155px;
  display: grid;
  grid-template-columns: 1fr;
  height: inherit;
}
@media (max-width: 1300px) {
  .header_buttons {
    display: none;
  }
}

.header_button {
  height: inherit;
}

.header_button a {
  position: relative;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: inherit;
  background-color: #184399;
  border: 1px solid #184399;
}

@media (min-width: 768px) {
  .header_button a:hover {
    background-color: #fff;
  }
}

.header_button.header_button_contact a {
  background-color: #0D2961;
  border: 1px solid #0D2961;
}

@media (min-width: 768px) {
  .header_button.header_button_contact a:hover {
    background-color: #fff;
  }
}

.header_button a::before {
  position: absolute;
  content: "";
  width: 38px;
  height: 38px;
  top: -1px;
  left: -1px;
  background-color: #1D75C0;
  clip-path: polygon(0 100%, 0 0, 100% 0);
}

.header_button_ja {
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 768px) {
  .header_button a:hover .header_button_ja {
    color: #0D2961;
  }
}

@media (min-width: 768px) {
  .header_button.header_button_contact a:hover .header_button_ja {
    color: #0D2961;
  }
}

.header_button_en {
  font-size: 13px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-style: italic;
  color: #C5AB7A;
  margin-top: 2px;
}

.header_hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  width: 100px;
  height: 100px;
  background-color: #0D2961;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
@media (max-width: 1300px) {
  .header_hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  .header_hamburger {
    width: 60px;
    height: 60px;
    color: #fff;
  }
}

.header_hamburger.is_open {
  background-color: transparent;
}

.header_hamburger_bar {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 50px;
  height: 3px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .header_hamburger_bar {
    width: 25px;
    height: 2px;
  }
}

.header_hamburger_bar:nth-of-type(1) {
  top: -24px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(1) {
    top: -12px;
  }
}

.header_hamburger_bar:nth-of-type(2) {
  top: -10px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(2) {
    top: -5px;
  }
}

.header_hamburger_bar:nth-of-type(3) {
  top: 4px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(3) {
    top: 3px;
  }
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(1) {
  top: -5px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(2) {
  opacity: 0;
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(3) {
  top: -9px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header_hamburger_title {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  width: 100%;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .header_hamburger_title {
    font-size: 12px;
    letter-spacing: 0;
    bottom: 2px;
  }
}

.header_drawer {
  padding: 70px 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0D2961;
  overflow-y: scroll;
  scrollbar-width: none;
}

.header_drawer::-webkit-scrollbar {
  display: none;
}

.header_drawer_nav {
  padding: 0 5%;
  height: 100%;
  overflow-y: scroll;
}

.header_drawer_list {
  border-bottom: 1px solid #fff;
}

.header_drawer_list_link {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (max-width: 768px) {
  .header_drawer_list_link {
    font-size: 15px;
  }
}

.header_drawer_list_menu a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  .header_drawer_list_menu a {
    font-size: 14px;
  }
}

.main {
  margin-top: 120px;
}
@media (max-width: 1300px) {
  .main {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .main {
    margin-top: 60px;
  }
}

/* top - top_mw
------------------------------ */
.top_mw {
  position: relative;
}

.top_mw::after {
  position: absolute;
  content: "";
  width: 70.4vw;
  height: 57.53vw;
  left: 0;
  top: 0;
  background-color: rgba(24, 67, 153, 0.15);
  clip-path: polygon(0 100%, 0 0, 100% 0);
}

.top_mw_inner {
  position: relative;
}

.top_mw_video video {
  width: 100%;
  max-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
@media (max-width: 768px) {
  .top_mw_video video {
    height: 50vh;
  }
}

.top_mw_content {
  position: absolute;
  top: 9.2vw;
}
@media (max-width: 768px) {
  .top_mw_content {
    top: 13.2vw;
  }
}

.top_mw_title {
  position: relative;
  font-size: 3.87vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: rgba(24, 67, 153, 0.3);
  text-shadow: 2px 2px 7px rgba(24, 67, 153, 0.7);
  padding: 0.27vw 6.33vw 0.4vw 8.33vw;
  clip-path: polygon(0 0, 97% 0, 100% 100%, 0% 100%);
  z-index: 1;
}
@media (max-width: 768px) {
  .top_mw_title {
    font-size: 7.47vw;
    width: 95%;
  }
}

.top_mw_title span {
  display: inline-block;
  -webkit-transform: skewX(-13deg);
          transform: skewX(-13deg);
}
@media (max-width: 768px) {
  .top_mw_title span {
    -webkit-transform: skewX(-7deg);
            transform: skewX(-7deg);
  }
}

.top_mw_message {
  position: relative;
  font-size: 1.87vw;
  font-weight: 700;
  line-height: 1.9642857143;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 2px 2px 7px rgba(24, 67, 153, 0.7);
  margin-top: 1.13vw;
  padding-left: 8.33vw;
  z-index: 1;
}
@media (max-width: 768px) {
  .top_mw_message {
    font-size: 5.33vw;
    margin-top: 6.13vw;
  }
}

.top_mw_menu {
  background: -webkit-gradient(linear, left top, right top, from(#0B57A9), to(#0D2961));
  background: linear-gradient(90deg, #0B57A9 0%, #0D2961 100%);
  padding: 30px 0;
}
@media (max-width: 768px) {
  .top_mw_menu {
    padding: 20px 0;
  }
}

.top_mw_menu_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .top_mw_menu_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
}

.top_mw_menu_button {
  width: 100%;
  max-width: 300px;
}
@media (max-width: 768px) {
  .top_mw_menu_button {
    max-width: 260px;
  }
}

/* top - top_tohtu
------------------------------ */
.top_tohtu {
  background: url(../images/recruit/top_tohtu_bg.jpg) no-repeat center center/cover;
  padding: 113px 0 112px;
}
@media (max-width: 768px) {
  .top_tohtu {
    padding: 50px 0;
  }
}

.top_tohtu_inner {
  position: relative;
}

.top_tohtu_en {
  position: absolute;
  top: -9px;
  left: 9px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.top_tohtu_en .en_title {
  color: rgba(255, 255, 255, 0.7);
}

.top_tohtu_message {
  font-size: clamp(18px, 1.3333333333vw, 20px);
  letter-spacing: 0.05em;
  line-height: 200%;
  font-weight: 700;
  color: #184399;
  text-align: center;
}
@media (max-width: 768px) {
  .top_tohtu_message {
    position: relative;
    font-size: 17px;
    text-align: left;
  }
}

.top_tohtu_message p + p {
  margin-top: clamp(30px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .top_tohtu_message p + p {
    margin-top: 10px;
  }
}

/* top - top_interview
------------------------------ */
.top_interview {
  background: linear-gradient(120deg, #0B57A9 0%, #0D2961 100%);
  padding: 0 0 120px;
}
@media (max-width: 768px) {
  .top_interview {
    padding: 0 0 50px;
  }
}

.top_interview_inner {
  position: relative;
}

.top_interview_en {
  position: absolute;
  top: 67px;
  right: clamp(-50px, 325px + -25vw, 0px);
  z-index: 1;
}

.top_interview_en .en_title {
  color: rgba(136, 215, 249, 0.1);
}

.top_interview_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px clamp(20px, 2.6666666667vw, 40px);
  margin-top: 70px;
}
@media (max-width: 768px) {
  .top_interview_cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

.top_interview_card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}

.top_interview_card a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  background-color: #fff;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .top_interview_card a {
    padding-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .top_interview_card a:hover {
    background-color: #E8F1F9;
  }
}

.top_interview_card_img {
  overflow: hidden;
}

.top_interview_card_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 380/220;
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .top_interview_card a:hover .top_interview_card_img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.top_interview_card_title {
  font-size: clamp(18px, 1.4666666667vw, 22px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0D2961;
  text-align: center;
  padding: 0 clamp(15px, 1.3333333333vw, 20px);
  margin-top: 20px;
}
@media (max-width: 768px) {
  .top_interview_card_title {
    font-size: 18px;
    margin-top: 15px;
    padding: 0 15px;
  }
}

.top_interview_card_text {
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 clamp(15px, 1.3333333333vw, 20px);
  margin-top: 12px;
}
@media (max-width: 768px) {
  .top_interview_card_text {
    margin-top: 10px;
    padding: 0 15px;
  }
}

.top_interview_card_btn {
  text-align: center;
  padding: 0 clamp(15px, 1.3333333333vw, 20px);
  margin-top: 21px;
}
@media (max-width: 768px) {
  .top_interview_card_btn {
    margin-top: 20px;
    padding: 0 15px;
  }
}

.top_interview_card_btn .btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .top_interview_card a:hover .btn {
    color: #0D2961;
    background-color: #fff;
    border-color: #0D2961;
  }
}

@media (min-width: 768px) {
  .top_interview_card a:hover .btn span::after {
    background: url(../images/recruit_common/icon_arrow_right_blue-900.svg) no-repeat center center/contain;
  }
}

.top_interview_cards_not_text {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top_interview_cards_not_text {
    font-size: 16px;
    margin-top: 30px;
  }
}

/* top - top_business
------------------------------ */
.top_business_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .top_business_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.top_business_content_wrapper {
  position: relative;
  width: calc(50% + clamp(100px, 16.8666666667vw, 253px));
  padding: 0 10px 20px 0;
}
@media (max-width: 768px) {
  .top_business_content_wrapper {
    width: 100%;
    padding: 0;
  }
}

.top_business_title .section_left_title_wrapper {
  width: calc(100% - 550px);
}

.top_business_en {
  position: absolute;
  right: -195px;
  top: 23px;
  z-index: 1;
}
@media (max-width: 768px) {
  .top_business_en {
    top: 67px;
    right: 10px;
  }
}

.top_business_en .en_title {
  color: rgba(29, 117, 192, 0.1);
}

.top_business_content {
  width: 100%;
  max-width: 894px;
  margin-left: auto;
  padding-left: 25px;
}
@media (max-width: 768px) {
  .top_business_content {
    padding: 0 16px;
  }
}

.top_business_subtitle {
  font-size: clamp(36px, 2.9333333333vw, 44px);
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #1D75C0;
  margin-top: 67px;
}
@media (max-width: 768px) {
  .top_business_subtitle {
    font-size: 26px;
    margin-top: 30px;
  }
}

.top_business_subtitle span {
  display: inline-block;
  -webkit-transform: skewX(-13deg);
          transform: skewX(-13deg);
}
@media (max-width: 768px) {
  .top_business_subtitle span {
    -webkit-transform: skewX(-7deg);
            transform: skewX(-7deg);
  }
}

.top_business_message {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .top_business_message {
    font-size: 17px;
    margin-top: 10px;
  }
}

.top_business_text {
  line-height: 2.1875;
  margin-top: 9px;
}

.top_business_img_wrapper {
  width: calc(50% - clamp(100px, 16.8666666667vw, 253px));
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 768px) {
  .top_business_img_wrapper {
    width: 100%;
  }
}

.top_business_img img {
  max-height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 29% 0);
}
@media (max-width: 768px) {
  .top_business_img img {
    clip-path: none;
  }
}

@media (max-width: 768px) {
  .top_business_inner {
    margin-top: 30px;
  }
}

.top_business_lists_wrapper {
  background-color: #E8F1F9;
  padding: clamp(15px, 2.0666666667vw, 31px) clamp(15px, 2.1333333333vw, 32px) clamp(15px, 3.3333333333vw, 50px);
}
@media (max-width: 768px) {
  .top_business_lists_wrapper {
    padding: 20px 20px;
  }
}

.top_business_lists_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  color: #1D75C0;
}
@media (max-width: 768px) {
  .top_business_lists_title {
    font-size: 18px;
  }
}

.top_business_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(15px, 2.3333333333vw, 35px) clamp(15px, 2.0666666667vw, 31px);
  margin-top: clamp(15px, 2.2666666667vw, 34px);
}
@media (max-width: 768px) {
  .top_business_lists {
    gap: 15px;
    margin-top: 20px;
  }
}

.top_business_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(33.3333% - clamp(15px, 2.0666666667vw, 31px) * 2 / 3);
  -webkit-box-shadow: 0 0 10px rgba(13, 41, 97, 0.5);
          box-shadow: 0 0 10px rgba(13, 41, 97, 0.5);
}
@media (max-width: 768px) {
  .top_business_list {
    width: 100%;
  }
}

.top_business_list_img {
  width: 100%;
  max-width: 118px;
}
@media (max-width: 768px) {
  .top_business_list_img {
    max-width: 80px;
  }
}

.top_business_list_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 118/118;
  height: 100%;
}

.top_business_list_text {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(15px, 1.3333333333vw, 20px);
  font-weight: 700;
  width: 100%;
  max-width: 257px;
  background-color: #fff;
  padding: clamp(15px, 1.3333333333vw, 20px) 15px clamp(15px, 1.3333333333vw, 20px) clamp(15px, 1.3333333333vw, 20px);
}
@media (max-width: 768px) {
  .top_business_list_text {
    font-size: 15px;
    max-width: calc(100% - 80px);
    padding: 15px;
  }
}

.top_business_items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 47px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .top_business_items {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
  }
}

.top_business_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  -webkit-box-shadow: 0 0 10px #b3c9f4;
          box-shadow: 0 0 10px #b3c9f4;
  padding: 28px clamp(20px, 2vw, 30px) 34px;
}

.top_business_item_title {
  font-size: clamp(32px, 2.9333333333vw, 44px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #1D75C0;
  text-align: center;
}
@media (max-width: 768px) {
  .top_business_item_title {
    font-size: 26px;
  }
}

.top_business_item_message {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.6666666667;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .top_business_item_message {
    font-size: 17px;
    margin-top: 5px;
  }
}

.top_business_item_text {
  line-height: 2.1875;
  border-top: 1px solid #000;
  margin-top: 26px;
  padding-top: 23px;
}
@media (max-width: 768px) {
  .top_business_item_text {
    margin-top: 10px;
    padding-top: 10px;
  }
}

/* top - top_workplace
------------------------------ */
.top_workplace {
  background-color: #E8F1F9;
  padding: 106px 0 120px;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .top_workplace {
    padding: 50px 0;
    margin-top: 50px;
  }
}

.top_workplace_inner {
  position: relative;
}

.top_workplace_title {
  position: relative;
  font-size: clamp(36px, 2.9333333333vw, 44px);
  letter-spacing: 0.05em;
  font-weight: 700;
  font-style: italic;
  color: #0D2961;
  text-align: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .top_workplace_title {
    font-size: 26px;
  }
}

.top_workplace_en {
  position: absolute;
  right: 38px;
  top: 6px;
}
@media (max-width: 768px) {
  .top_workplace_en {
    right: 16px;
    top: 20px;
  }
}

.top_workplace_en .en_title {
  color: rgba(29, 117, 192, 0.1);
}

.top_workplace_items {
  margin-top: 61px;
}

.top_workplace_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top_workplace_item + .top_workplace_item {
  margin-top: 71px;
}
@media (max-width: 768px) {
  .top_workplace_item + .top_workplace_item {
    margin-top: 30px;
  }
}

.top_workplace_item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(50% + 625px);
  background: linear-gradient(74deg, #0B57A9 0%, #0D2961 100%);
}
@media (max-width: 768px) {
  .top_workplace_item_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_workplace_item:nth-of-type(odd) .top_workplace_item_wrapper {
  clip-path: polygon(0 100%, calc(100% - 126px) 100%, 100% 0, 0 0);
}
@media (max-width: 768px) {
  .top_workplace_item:nth-of-type(odd) .top_workplace_item_wrapper {
    clip-path: none;
  }
}

.top_workplace_item:nth-of-type(even) .top_workplace_item_wrapper {
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 126px 0);
  background: linear-gradient(74deg, #0D2961 0%, #0B57A9 100%);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .top_workplace_item:nth-of-type(even) .top_workplace_item_wrapper {
    clip-path: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_workplace_item_space {
  width: calc(50% - 625px);
  min-width: 25px;
}
@media (max-width: 768px) {
  .top_workplace_item_space {
    display: none;
  }
}

.top_workplace_item_img {
  width: calc(100% - 728px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .top_workplace_item_img {
    width: 100%;
  }
}

.top_workplace_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.top_workplace_item:nth-of-type(odd) .top_workplace_item_img img {
  clip-path: polygon(0 100%, calc(100% - 126px) 100%, 100% 0, 0 0);
}
@media (max-width: 768px) {
  .top_workplace_item:nth-of-type(odd) .top_workplace_item_img img {
    clip-path: none;
  }
}

.top_workplace_item:nth-of-type(even) .top_workplace_item_img img {
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 126px 0);
}
@media (max-width: 768px) {
  .top_workplace_item:nth-of-type(even) .top_workplace_item_img img {
    clip-path: none;
  }
}

.top_workplace_item_content_wrapper {
  position: relative;
  width: 100%;
  max-width: 731px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.top_workplace_item_content {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  max-width: 731px;
  height: 100%;
  color: #fff;
  padding: 20px 130px 20px 25px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .top_workplace_item_content {
    padding: 20px 16px;
  }
}

.top_workplace_item:nth-of-type(even) .top_workplace_item_content {
  padding: 20px 25px 20px 166px;
}
@media (max-width: 768px) {
  .top_workplace_item:nth-of-type(even) .top_workplace_item_content {
    padding: 20px 16px;
  }
}

.top_workplace_item_title {
  font-size: clamp(26px, 2.2666666667vw, 34px);
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .top_workplace_item_title {
    font-size: 22px;
  }
}

.top_workplace_item_text {
  font-size: 18px;
  line-height: 1.9444444444;
  margin-top: 14px;
}
@media (max-width: 768px) {
  .top_workplace_item_text {
    font-size: 16px;
    margin-top: 10px;
  }
}

/* top - top_benefits
------------------------------ */
.top_benefits {
  background: linear-gradient(61deg, #0B57A9 0%, #0D2961 100%);
  padding: 0 0 122px;
}
@media (max-width: 768px) {
  .top_benefits {
    padding: 0 0 50px;
  }
}

.top_benefits_inner {
  position: relative;
}

.top_benefits_en {
  position: absolute;
  right: clamp(-5px, 107.5px + -7.5vw, 10px);
  top: 76px;
}
@media (max-width: 768px) {
  .top_benefits_en {
    right: 16px;
    top: 74px;
  }
}

.top_benefits_en .en_title {
  color: rgba(29, 117, 192, 0.15);
}

.top_benefits_text {
  text-align: center;
  line-height: 2.1875;
  color: #fff;
  margin-top: 59px;
}
@media (max-width: 768px) {
  .top_benefits_text {
    text-align: left;
    margin-top: 30px;
  }
}

.top_benefits_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.3333333333vw, 50px) clamp(20px, 3.6666666667vw, 55px);
  margin-top: 59px;
}
@media (max-width: 768px) {
  .top_benefits_items {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

.top_benefits_item {
  background-color: #fff;
  padding: clamp(15px, 1.6666666667vw, 25px) clamp(15px, 1.6666666667vw, 25px) clamp(15px, 1.3333333333vw, 20px);
  -webkit-box-shadow: 0 0 10px #001236;
          box-shadow: 0 0 10px #001236;
}
@media (max-width: 768px) {
  .top_benefits_item {
    padding: 15px;
  }
}

.top_benefits_item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .top_benefits_item_wrapper {
    gap: 15px;
  }
}

.top_benefits_item_img {
  width: 100%;
  max-width: 118px;
}
@media (max-width: 768px) {
  .top_benefits_item_img {
    max-width: 80px;
  }
}

.top_benefits_item_title {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4583333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #0D2961;
  width: 100%;
  max-width: 192px;
}
@media (max-width: 768px) {
  .top_benefits_item_title {
    font-size: 17px;
    max-width: calc(100% - 80px);
  }
}

.top_benefits_item_text {
  line-height: 2.1875;
  margin-top: 19px;
}
@media (max-width: 768px) {
  .top_benefits_item_text {
    margin-top: 15px;
  }
}

/* top - top_about
------------------------------ */
.top_about {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .top_about {
    margin-top: 50px;
  }
}

.top_about_inner {
  position: relative;
}

.top_about_en {
  position: absolute;
  right: 7px;
  top: -170px;
}
@media (max-width: 768px) {
  .top_about_en {
    right: 16px;
    top: -37px;
  }
}

.top_about_en .en_title {
  color: rgba(29, 117, 192, 0.15);
}

.top_about_figure {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top_about_figure {
    margin-top: 30px;
  }
}

.top_about_figure dl {
  display: grid;
  grid-template-columns: clamp(260px, 21.8666666667vw, 328px) 1fr;
}
@media (max-width: 768px) {
  .top_about_figure dl {
    grid-template-columns: 1fr;
  }
}

.top_about_figure dt {
  letter-spacing: 0.05em;
  color: #1D75C0;
  padding: 25px 20px;
  border-top: 1px solid #000;
}
@media (max-width: 768px) {
  .top_about_figure dt {
    padding: 10px 10px;
  }
}

.top_about_figure dt:last-of-type {
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .top_about_figure dt:last-of-type {
    border-bottom: none;
  }
}

.top_about_figure dd {
  line-height: 1.875;
  letter-spacing: 0.05em;
  padding: 22px 20px;
  border-top: 1px solid #BEBEBE;
}
@media (max-width: 768px) {
  .top_about_figure dd {
    padding: 10px 10px;
  }
}

.top_about_figure dd:last-of-type {
  border-bottom: 1px solid #BEBEBE;
}

.top_about_figure_lists {
  counter-reset: cnt;
  width: 100%;
  max-width: 685px;
}

.top_about_figure_list {
  position: relative;
  line-height: 1.875;
  letter-spacing: 0.05em;
  padding-left: 18px;
}

.top_about_figure_list::before {
  position: absolute;
  counter-increment: cnt;
  content: counter(cnt, decimal);
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 12px;
  line-height: 100%;
  font-weight: 700;
  width: 16px;
  height: 16px;
  left: 0;
  top: 8px;
  border-radius: 50%;
  border: 1px solid #000;
}

/* top - top_jobs
------------------------------ */
.top_jobs {
  background: linear-gradient(138deg, #0B57A9 0%, #0D2961 100%);
  margin-top: 131px;
  padding: 0 0 122px;
}
@media (max-width: 768px) {
  .top_jobs {
    margin-top: 50px;
    padding: 0 0 50px;
  }
}

.top_jobs_inner {
  position: relative;
}

.top_jobs_en {
  position: absolute;
  right: 38px;
  top: 70px;
}
@media (max-width: 768px) {
  .top_jobs_en {
    right: 16px;
    top: 54px;
  }
}

.top_jobs_en .en_title {
  color: rgba(29, 117, 192, 0.15);
}

.top_jobs_lists {
  background-color: #fff;
  padding: 20px clamp(20px, 2.3333333333vw, 35px) 20px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .top_jobs_lists {
    padding: 20px 15px;
    margin-top: 20px;
  }
}

.top_jobs_list {
  padding: 0 20px;
}
@media (max-width: 768px) {
  .top_jobs_list {
    padding: 0 10px;
  }
}

.top_jobs_list + .top_jobs_list {
  border-top: 1px solid #757575;
  margin-top: 20px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .top_jobs_list + .top_jobs_list {
    margin-top: 15px;
    padding-top: 15px;
  }
}

.top_jobs_list_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 4.0666666667vw, 61px);
  width: 100%;
  max-width: 906px;
}
@media (max-width: 768px) {
  .top_jobs_list_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}

.top_jobs_list_title {
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  max-width: 100px;
}
@media (max-width: 768px) {
  .top_jobs_list_title {
    font-size: 17px;
    max-width: 100%;
    text-align: center;
  }
}

.top_jobs_list_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 635px;
}
@media (max-width: 768px) {
  .top_jobs_list_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    max-width: 100%;
  }
}

.top_jobs_list_button {
  width: 100%;
  max-width: 300px;
}
@media (max-width: 768px) {
  .top_jobs_list_button {
    max-width: 260px;
  }
}

.top_jobs_list_not_text {
  width: 100%;
  max-width: 635px;
}

/* top - top_faq
------------------------------ */
.top_faq_inner {
  position: relative;
}

.top_faq_en {
  position: absolute;
  right: 38px;
  top: -170px;
}
@media (max-width: 768px) {
  .top_faq_en {
    right: 16px;
    top: -95px;
  }
}

.top_faq_en .en_title {
  color: rgba(29, 117, 192, 0.1);
}

.top_faq_lists {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .top_faq_lists {
    margin-top: 30px;
  }
}

.top_faq_list {
  background-color: #E8F1F9;
}

.top_faq_list + .top_faq_list {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .top_faq_list + .top_faq_list {
    margin-top: 20px;
  }
}

.top_faq_list_q {
  position: relative;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 24px 36px 24px 157px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .top_faq_list_q {
    font-size: 16px;
    padding: 10px 15px 10px 65px;
  }
}

.top_faq_list_q::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 132px;
  height: 75px;
  background-color: #1D75C0;
  clip-path: polygon(0 100%, calc(100% - 25px) 100%, 100% 0, 0 0);
}
@media (max-width: 768px) {
  .top_faq_list_q::before {
    width: 60px;
    height: 40px;
  }
}

.top_faq_list_q::after {
  position: absolute;
  content: "Q.";
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 100%;
  font-weight: 700;
  left: 43px;
  color: #fff;
}
@media (max-width: 768px) {
  .top_faq_list_q::after {
    font-size: 18px;
    top: 9px;
    left: 13px;
  }
}

.top_faq_list_q span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .top_faq_list_q span {
    padding-right: 20px;
  }
}

.top_faq_list_q span::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 36px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/recruit_common/icon_triangle_arrow_right_gold.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .top_faq_list_q span::after {
    width: 14px;
    height: 23px;
  }
}

.top_faq_list_q.is_open span::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.top_faq_list_a {
  display: none;
  letter-spacing: 0.05em;
  line-height: 2.1875;
  padding: 8px 42px 39px 157px;
}
@media (max-width: 768px) {
  .top_faq_list_a {
    padding: 0 20px 15px;
  }
}

.top_faq_list_a span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-left: 21px;
}

.top_faq_list_a span::before {
  position: absolute;
  content: "A.";
  line-height: 100%;
  font-weight: 700;
  top: 9px;
  left: 0;
  color: #2A8EE4;
}

/* cta
------------------------------ */
.cta {
  padding: 0 25px;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .cta {
    padding: 0 16px;
    margin-top: 50px;
  }
}

.cta_inner {
  width: 100%;
  max-width: 1250px;
  background: url(../images/recruit_common/cta_bg.jpg) no-repeat center center/cover;
  margin-inline: auto;
  padding: 0 0 50px;
}
@media (max-width: 768px) {
  .cta_inner {
    padding: 20px 0;
  }
}

.cta_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1140px;
}
@media (max-width: 768px) {
  .cta_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}

.cta_title {
  font-size: clamp(24px, 1.8666666667vw, 28px);
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 305px;
  color: #fff;
  background-color: #1D75C0;
  clip-path: polygon(0 100%, calc(100% - 41px) 100%, 100% 0, 0 0);
  padding: 39px 20px 39px 50px;
}
@media (max-width: 768px) {
  .cta_title {
    font-size: 24px;
    padding: 20px 20px 20px 16px;
  }
}

.cta_message {
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-style: italic;
  color: #fff;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .cta_message {
    font-size: 18px;
    padding: 0 16px;
  }
}

.cta_text_wrapper {
  padding: 0 50px;
}
@media (max-width: 768px) {
  .cta_text_wrapper {
    padding: 0 16px;
  }
}

.cta_text {
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  width: 100%;
  max-width: 1015px;
  margin-top: 31px;
}
@media (max-width: 768px) {
  .cta_text {
    margin-top: 20px;
  }
}

.cta_lists_wrapper {
  position: relative;
  padding: 0 50px;
  margin-top: 33px;
}
@media (max-width: 768px) {
  .cta_lists_wrapper {
    padding: 0 16px;
    margin-top: 20px;
  }
}

.cta_lists_en {
  position: absolute;
  font-size: clamp(90px, 8.5333333333vw, 128px);
  line-height: 100%;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  right: 38px;
  top: -116px;
}
@media (max-width: 768px) {
  .cta_lists_en {
    font-size: 40px;
    right: 16px;
    top: -38px;
  }
}

.cta_lists {
  background-color: #fff;
  padding: 20px clamp(20px, 2.3333333333vw, 35px) 20px;
}
@media (max-width: 768px) {
  .cta_lists {
    padding: 20px 15px;
  }
}

.cta_list {
  padding: 0 20px;
}
@media (max-width: 768px) {
  .cta_list {
    padding: 0 10px;
  }
}

.cta_list + .cta_list {
  border-top: 1px solid #757575;
  margin-top: 20px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .cta_list + .cta_list {
    margin-top: 15px;
    padding-top: 15px;
  }
}

.cta_list_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 4.0666666667vw, 61px);
  width: 100%;
  max-width: 906px;
}
@media (max-width: 768px) {
  .cta_list_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}

.cta_list_title {
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  max-width: 100px;
}
@media (max-width: 768px) {
  .cta_list_title {
    font-size: 17px;
    max-width: 100%;
    text-align: center;
  }
}

.cta_list_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 635px;
}
@media (max-width: 768px) {
  .cta_list_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    max-width: 100%;
  }
}

.cta_list_button {
  width: 100%;
  max-width: 300px;
}
@media (max-width: 768px) {
  .cta_list_button {
    max-width: 260px;
  }
}

.cta_list_not_text {
  width: 100%;
  max-width: 635px;
}

/* sub
------------------------------ */
.sub_main {
  margin-top: 120px;
}
@media (max-width: 1300px) {
  .sub_main {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .sub_main {
    margin-top: 60px;
  }
}

.sub_mv {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: linear-gradient(61deg, #0B57A9 0%, #0D2961 100%);
  padding-right: 25px;
}
@media (max-width: 768px) {
  .sub_mv {
    min-height: 200px;
  }
}

.sub_mv::after {
  position: absolute;
  content: "";
  width: calc(50% + 100px);
  top: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#0B57A9), to(#0D2961));
  background: linear-gradient(90deg, #0B57A9 0%, #0D2961 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 381px) 100%, 0% 100%);
}

.sub_mv_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: inherit;
}

.sub_mv_title_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.sub_mv_title_left {
  width: calc(50% - 612px);
  background-color: rgba(13, 41, 97, 0.65);
  z-index: 1;
  padding-left: 25px;
}

.sub_mv_title {
  position: relative;
  padding: 23px 30px 23px 0;
  color: #0D2961;
  background-color: rgba(13, 41, 97, 0.65);
  width: 100%;
  max-width: 757px;
  z-index: 1;
  clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 100%, 0% 100%);
}
@media (max-width: 768px) {
  .sub_mv_title {
    width: 100%;
    padding: 15px 16px;
  }
}

.sub_mv_title_ja {
  font-size: clamp(24px, 2.6666666667vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  width: 100%;
}
@media (max-width: 768px) {
  .sub_mv_title_ja {
    font-size: clamp(18px, 1.3333333333vw, 20px);
  }
}

.sub_mv_en_wrapper {
  position: absolute;
  width: 100%;
  max-width: 1250px;
  padding-left: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 50px;
}
@media (max-width: 768px) {
  .sub_mv_en_wrapper {
    bottom: 10px;
  }
}

.sub_mv_en {
  font-size: clamp(80px, 8.5333333333vw, 128px);
  line-height: 100%;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: rgba(29, 117, 192, 0.15);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media (max-width: 768px) {
  .sub_mv_en {
    font-size: 40px;
  }
}

.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 27px;
}
@media (max-width: 768px) {
  .breadcrumb {
    margin-top: 10px;
  }
}

.breadcrumb_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
@media (max-width: 768px) {
  .breadcrumb_inner {
    gap: 5px 10px;
  }
}

.breadcrumb_inner a {
  font-weight: 700;
  color: #0D2961;
}

.breadcrumb_arrow {
  display: block;
  position: relative;
  font-weight: 700;
  color: #0D2961;
}

.subsection_title {
  position: relative;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.6666666667;
  color: #0D2961;
  background-color: #E8F1F9;
  padding: 10px 20px 15px 49px;
}
@media (max-width: 768px) {
  .subsection_title {
    font-size: 20px;
    padding: 10px 15px 10px 35px;
  }
}

.subsection_title::before {
  position: absolute;
  content: "";
  width: 38px;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #0D2961;
  clip-path: polygon(0 0, 100% 0, calc(100% - 21px) 100%, 0% 100%);
}
@media (max-width: 768px) {
  .subsection_title::before {
    width: 26px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0% 100%);
  }
}

/* news - news_archive_main
------------------------------ */
.news_archive_main {
  margin-top: 74px;
}
@media (max-width: 768px) {
  .news_archive_main {
    margin-top: 50px;
  }
}

.news_archive_main_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .news_archive_main_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.news_archive_main_group {
  width: 100%;
  max-width: 900px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.news_archive_main_item + .news_archive_main_item {
  margin-top: 38px;
}
@media (max-width: 768px) {
  .news_archive_main_item + .news_archive_main_item {
    margin-top: 30px;
  }
}

.news_archive_main_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  background-color: #E8F1F9;
  border: 1px solid #E8F1F9;
  padding: clamp(20px, 2.6666666667vw, 40px) clamp(20px, 2.6666666667vw, 40px) clamp(20px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .news_archive_main_item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
  }
}

@media (min-width: 768px) {
  .news_archive_main_item a:hover {
    background-color: #B3C9F4;
  }
}

.news_archive_main_item_img {
  width: 100%;
  max-width: clamp(140px, 13.3333333333vw, 200px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .news_archive_main_item_img {
    max-width: 100%;
  }
}

.news_archive_main_item_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 200/140;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .news_archive_main_item a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.news_archive_main_item_content {
  width: 100%;
  max-width: 580px;
}
@media (max-width: 768px) {
  .news_archive_main_item_content {
    max-width: 100%;
  }
}

.news_archive_main_item_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.news_archive_main_item_cat {
  font-size: 14px;
  color: #fff;
  background-color: #0D2961;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 28px;
}

.news_archive_main_item_date {
  font-size: 14px;
  font-weight: 700;
  color: #0D2961;
}

.news_archive_main_item_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 130%;
  color: #0D2961;
  margin-top: 22px;
}
@media (max-width: 768px) {
  .news_archive_main_item_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    margin-top: 10px;
  }
}

.news_archive_main_item_text {
  line-height: 2.1875;
  border-top: 1px solid #000;
  margin-top: 26px;
  padding-top: 21px;
}
@media (max-width: 768px) {
  .news_archive_main_item_text {
    margin-top: 10px;
    padding-top: 10px;
  }
}

.news_archive_main_item_btn {
  width: 100%;
  max-width: 200px;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #C5AB7A;
  border: 1px solid #C5AB7A;
  padding: 14px 16px 13px 25px;
  margin-left: auto;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .news_archive_main_item_btn {
    margin: 20px auto 0;
  }
}

@media (min-width: 768px) {
  .news_archive_main_item a:hover .news_archive_main_item_btn {
    color: #0D2961;
    background-color: #fff;
    border-color: #0D2961;
  }
}

.news_archive_main_item_btn span {
  position: relative;
  display: inline-block;
  width: 100%;
}

.news_archive_main_item_btn span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 11px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/recruit_common/icon_arrow_right_white.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .news_archive_main_item a:hover .news_archive_main_item_btn span::after {
    background: url(../images/recruit_common/icon_arrow_right_blue-900.svg) no-repeat center center/contain;
  }
}

.news_archive_main_side {
  width: 100%;
  max-width: 300px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .news_archive_main_side {
    max-width: 100%;
  }
}

.news_archive_main_side_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #1D75C0;
  padding: 22px 25px;
}
@media (max-width: 768px) {
  .news_archive_main_side_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    padding: 15px 20px;
  }
}

.news_archive_main_side_list_link {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #0D2961;
  width: 100%;
  padding: 28px 60px 27px clamp(15px, 1.6666666667vw, 25px);
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .news_archive_main_side_list_link {
    padding: 10px 40px 10px 10px;
  }
}

@media (min-width: 768px) {
  .news_archive_main_side_list_link:hover {
    color: #fff;
    background-color: #0D2961;
  }
}

.news_archive_main_side_list_link::after {
  position: absolute;
  content: "";
  width: clamp(23px, 1.8666666667vw, 28px);
  height: 17px;
  right: clamp(15px, 1.5333333333vw, 23px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/recruit_common/icon_arrow_right_blue-400.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .news_archive_main_side_list_link:hover::after {
    background: url(../images/recruit_common/icon_arrow_right_white.svg) no-repeat center center/contain;
  }
}

.news_archive_main_page_navigation {
  margin-top: 58px;
}
@media (max-width: 768px) {
  .news_archive_main_page_navigation {
    margin-top: 20px;
  }
}

.page_navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 11px;
}

.page-numbers {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-family: 700;
  color: #0D2961;
  background-color: rgba(13, 41, 97, 0.25);
  width: 30px;
  height: 30px;
}

@media (min-width: 768px) {
  .page-numbers:hover {
    color: #fff;
    background-color: #0D2961;
  }
}

.page-numbers.dots {
  pointer-events: none;
}

.page-numbers.current {
  color: #fff;
  background-color: #0D2961;
}

/* news - news_single_main
------------------------------ */
.news_single_main {
  margin-top: 75px;
}
@media (max-width: 768px) {
  .news_single_main {
    margin-top: 50px;
  }
}

.news_single_main_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .news_single_main_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.news_single_main_article {
  width: 100%;
  max-width: 900px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.news_article {
  background-color: #E8F1F9;
  padding: clamp(20px, 2.6666666667vw, 40px) clamp(20px, 2.6666666667vw, 40px) clamp(20px, 2.2vw, 33px);
}
@media (max-width: 768px) {
  .news_article {
    padding: 20px;
  }
}

.news_article_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.news_article_cat {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background-color: #0D2961;
  padding: 4px 35px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.news_article_date {
  font-size: 14px;
  font-weight: 700;
  color: #0D2961;
}

.news_article_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  color: #0D2961;
  margin-top: 19px;
}
@media (max-width: 768px) {
  .news_article_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    margin-top: 10px;
    padding-bottom: 5px;
  }
}

.news_article_content {
  line-height: 2.1875;
  border-top: 1px solid #000;
  margin-top: 11px;
  padding-top: 21px;
}
@media (max-width: 768px) {
  .news_article_content {
    margin-top: 10px;
    padding-top: 10px;
  }
}

.news_article_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .news_article_buttons {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
}

.news_article_button {
  width: 100%;
  max-width: 250px;
}
@media (max-width: 768px) {
  .news_article_button {
    max-width: 220px;
  }
}

.news_article_button a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 100%;
  color: #fff;
  background-color: #0D2961;
  border: 1px solid #0D2961;
  padding: 19px clamp(10px, 1.6666666667vw, 25px);
}
@media (max-width: 768px) {
  .news_article_button a {
    padding: 15px 20px;
  }
}

@media (min-width: 768px) {
  .news_article_button a:hover {
    color: #0D2961;
    background-color: #fff;
  }
}

.news_article_button_previous a {
  text-align: right;
}

.news_article_button_previous a span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-left: 35px;
}
@media (max-width: 768px) {
  .news_article_button_previous a span {
    padding-left: 15px;
  }
}

.news_article_button_previous a span::before {
  position: absolute;
  content: "";
  width: 21px;
  height: 12px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/recruit_common/icon_arrow_left_white.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .news_article_button_previous a span::before {
    height: 10px;
  }
}

@media (min-width: 768px) {
  .news_article_button_previous a:hover span:before {
    background: url(../images/recruit_common/icon_arrow_left_blue-900.svg) no-repeat center center/contain;
  }
}

.news_article_button_all {
  text-align: center;
}

.news_article_button_next a span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 30px;
}

.news_article_button_next a span::after {
  position: absolute;
  content: "";
  width: 21px;
  height: 12px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/recruit_common/icon_arrow_right_white.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .news_article_button_next a span::after {
    height: 10px;
  }
}

@media (min-width: 768px) {
  .news_article_button_next a:hover span:after {
    background: url(../images/recruit_common/icon_arrow_right_blue-900.svg) no-repeat center center/contain;
  }
}

/* jobs - jobs_archive_main
------------------------------ */
.jobs_archive_main {
  margin-top: 74px;
}
@media (max-width: 768px) {
  .jobs_archive_main {
    margin-top: 50px;
  }
}

.jobs_archive_main_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .jobs_archive_main_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.jobs_archive_main_group {
  width: 100%;
  max-width: 900px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.jobs_archive_main_item + .jobs_archive_main_item {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .jobs_archive_main_item + .jobs_archive_main_item {
    margin-top: 30px;
  }
}

.jobs_archive_main_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  padding: clamp(20px, 2.6666666667vw, 40px) clamp(20px, 2.6666666667vw, 40px) clamp(20px, 2.6666666667vw, 40px);
  background-color: #E8F1F9;
  border: 1px solid #E8F1F9;
}
@media (max-width: 768px) {
  .jobs_archive_main_item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .jobs_archive_main_item a:hover {
    background-color: #B3C9F4;
  }
}

.jobs_archive_main_item_img {
  width: 100%;
  max-width: 200px;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .jobs_archive_main_item_img {
    max-width: 100%;
  }
}

.jobs_archive_main_item_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 200/140;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .jobs_archive_main_item a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.jobs_archive_main_item_content {
  width: 100%;
  max-width: 580px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.jobs_archive_main_item_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 768px) {
  .jobs_archive_main_item_tags {
    gap: 10px;
  }
}

.jobs_archive_main_item_tag {
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  max-width: 125px;
  text-align: center;
  color: #fff;
  background-color: #0D2961;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  .jobs_archive_main_item_tag {
    max-width: 120px;
  }
}

.jobs_archive_main_item_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  color: #0D2961;
  margin-top: 17px;
}
@media (max-width: 768px) {
  .jobs_archive_main_item_title {
    font-size: clamp(18px, 5.3333333333vw, 20px);
    margin-top: 10px;
  }
}

.jobs_archive_main_item_texts {
  line-height: 2.1875;
  border-top: 1px solid #000;
  margin-top: 23px;
  padding-top: 21px;
}
@media (max-width: 768px) {
  .jobs_archive_main_item_texts {
    margin-top: 10px;
    padding-top: 10px;
  }
}

.jobs_archive_main_item_btn {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #C5AB7A;
  border: 1px solid #C5AB7A;
  width: 100%;
  max-width: 200px;
  padding: 14px 17px 13px 25px;
  margin-left: auto;
  margin-top: 28px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .jobs_archive_main_item_btn {
    margin: 20px auto 0;
  }
}

@media (min-width: 768px) {
  .jobs_archive_main_item a:hover .jobs_archive_main_item_btn {
    color: #0D2961;
    background-color: #fff;
    border-color: #0D2961;
  }
}

.jobs_archive_main_item_btn span {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-right: 20px;
}

.jobs_archive_main_item_btn span::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 10px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/recruit_common/icon_arrow_right_white.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .jobs_archive_main_item a:hover span::after {
    background: url(../images/recruit_common/icon_arrow_right_blue-900.svg) no-repeat center center/contain;
  }
}

.jobs_archive_page_navigation {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .jobs_archive_page_navigation {
    margin-top: 20px;
  }
}

.jobs_archive_main_side {
  width: 100%;
  max-width: 300px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .jobs_archive_main_side {
    max-width: 100%;
  }
}

.jobs_side_btn a {
  display: inline-block;
  position: relative;
  font-weight: 700;
  color: #0D2961;
  width: 100%;
  padding: 26px 25px 29px 25px;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .jobs_side_btn a {
    padding: 15px 20px;
  }
}

@media (min-width: 768px) {
  .jobs_side_btn a:hover {
    color: #fff;
    background-color: #0D2961;
  }
}

.jobs_side_btn a span {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-right: 30px;
}

.jobs_side_btn a span::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 14px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/recruit_common/icon_arrow_right_blue-400.svg) no-repeat center center/contain;
}

@media (min-width: 768px) {
  .jobs_side_btn a:hover span::after {
    background: url(../images/recruit_common/icon_arrow_right_white.svg) no-repeat center center/contain;
  }
}

.jobs_side_wrapper {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .jobs_side_wrapper {
    margin-top: 30px;
  }
}

.jobs_side_title {
  font-weight: 700;
  color: #fff;
  background-color: #1D75C0;
  padding: 28px 25px;
}
@media (max-width: 768px) {
  .jobs_side_title {
    padding: 20px 15px;
  }
}

.jobs_side_list a {
  display: inline-block;
  position: relative;
  font-weight: 700;
  color: #0D2961;
  width: 100%;
  padding: 25px clamp(15px, 1.6vw, 24px) 30px clamp(15px, 1.6666666667vw, 25px);
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .jobs_side_list a {
    padding: 20px 15px;
  }
}

@media (min-width: 768px) {
  .jobs_side_list a:hover {
    color: #fff;
    background-color: #0D2961;
  }
}

.jobs_side_list a span {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-right: 30px;
}

.jobs_side_list a span::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 16px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/recruit_common/icon_arrow_right_blue-400.svg) no-repeat center center/contain;
}

@media (min-width: 768px) {
  .jobs_side_list a:hover span::after {
    background: url(../images/recruit_common/icon_arrow_right_white.svg) no-repeat center center/contain;
  }
}

/* jobs - jobs_single_main
------------------------------ */
.jobs_single_main {
  margin-top: 75px;
}
@media (max-width: 768px) {
  .jobs_single_main {
    margin-top: 50px;
  }
}

.jobs_single_main_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .jobs_single_main_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.jobs_single_main_article {
  width: 100%;
  max-width: 900px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.jobs_article_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 768px) {
  .jobs_article_tags {
    gap: 10px;
  }
}

.jobs_article_tag {
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  max-width: 125px;
  text-align: center;
  color: #fff;
  background-color: #0D2961;
  padding: 5px 10px;
}

.jobs_article_title {
  margin-top: 29px;
}
@media (max-width: 768px) {
  .jobs_article_title {
    margin-top: 20px;
  }
}

.jobs_article_img {
  width: 100%;
  max-width: 487px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .jobs_article_img {
    max-width: 100%;
    margin-top: 20px;
  }
}

.jobs_article_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.jobs_article_figure {
  margin-top: 41px;
}
@media (max-width: 768px) {
  .jobs_article_figure {
    margin-top: 20px;
  }
}

.jobs_article_figure dl {
  display: grid;
  grid-template-columns: clamp(140px, 19.0666666667vw, 286px) 1fr;
}
@media (max-width: 768px) {
  .jobs_article_figure dl {
    grid-template-columns: 1fr;
  }
}

.jobs_article_figure dt {
  line-height: 2.1875;
  color: #0D2961;
  background-color: #E8F1F9;
  border-top: 1px solid #000;
  padding: 17px 25px;
}
@media (max-width: 768px) {
  .jobs_article_figure dt {
    padding: 10px 15px;
  }
}

.jobs_article_figure dt:last-of-type {
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .jobs_article_figure dt:last-of-type {
    border-bottom: none;
  }
}

.jobs_article_figure dd {
  line-height: 2.1875;
  border-top: 1px solid #000;
  padding: 17px 25px;
}
@media (max-width: 768px) {
  .jobs_article_figure dd {
    padding: 10px 15px;
  }
}

.jobs_article_figure dd:last-of-type {
  border-bottom: 1px solid #000;
}

.jobs_article_btn {
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .jobs_article_btn {
    margin-top: 30px;
  }
}

.jobs_article_cards_wrapper {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .jobs_article_cards_wrapper {
    margin-top: 50px;
  }
}

.jobs_article_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 clamp(15px, 1.8666666667vw, 28px);
  margin-top: 40px;
}
@media (max-width: 768px) {
  .jobs_article_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
  }
}

.jobs_article_card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}

.jobs_article_card a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background-color: #E8F1F9;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .jobs_article_card a:hover {
    background-color: #B3C9F4;
  }
}

.jobs_article_card_img {
  overflow: hidden;
}

.jobs_article_card_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 282/164;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .jobs_article_card a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.jobs_article_card_title {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.6666666667;
  color: #0D2961;
  padding: 0 clamp(10px, 1.3333333333vw, 20px);
  margin-top: 16px;
}
@media (max-width: 768px) {
  .jobs_article_card_title {
    font-size: 14px;
    padding: 0 15px;
    margin-top: 10px;
  }
}

.jobs_article_card_cat_wrapper {
  margin-top: 19px;
  padding: 0 clamp(10px, 1.3333333333vw, 20px);
}
@media (max-width: 768px) {
  .jobs_article_card_cat_wrapper {
    margin-top: 15px;
    padding: 0 15px;
  }
}

.jobs_article_card_cat {
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  max-width: 125px;
  text-align: center;
  color: #fff;
  background-color: #0D2961;
  padding: 5px 10px;
}

/* interview - interview_archive_main
------------------------------ */
.interview_archive_main {
  margin-top: 52px;
}
@media (max-width: 768px) {
  .interview_archive_main {
    margin-top: 50px;
  }
}

.interview_archive_main_item {
  background-color: #E8F1F9;
  padding-bottom: clamp(30px, 3.4vw, 51px);
}
@media (max-width: 768px) {
  .interview_archive_main_item {
    padding-bottom: 20px;
  }
}

.interview_archive_main_item + .interview_archive_main_item {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .interview_archive_main_item + .interview_archive_main_item {
    margin-top: 50px;
  }
}

.interview_archive_main_item_head {
  width: 100%;
  max-width: 404px;
  font-weight: 700;
  color: #fff;
  background-color: #0D2961;
  padding: 9px 37px;
}
@media (max-width: 768px) {
  .interview_archive_main_item_head {
    max-width: 100%;
    padding: 10px 25px;
  }
}

.interview_archive_main_item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1210px;
  margin: 19px auto 0;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .interview_archive_main_item_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin: 15px auto 0;
    padding: 0 15px;
  }
}

.interview_archive_main_item_left {
  width: 100%;
  max-width: 694px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 2.6666666667vw, 40px);
  margin-top: 5px;
}
@media (max-width: 768px) {
  .interview_archive_main_item_left {
    display: contents;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .interview_archive_main_item_content {
    display: contents;
  }
}

.interview_archive_main_item_name {
  font-size: clamp(18px, 1.4666666667vw, 22px);
  font-weight: 700;
  color: #1D75C0;
}
@media (max-width: 768px) {
  .interview_archive_main_item_name {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.interview_archive_main_item_message {
  font-size: clamp(18px, 1.4666666667vw, 22px);
  font-weight: 700;
  color: #0D2961;
  line-height: 1.8181818182;
  margin-top: 11px;
}
@media (max-width: 768px) {
  .interview_archive_main_item_message {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 10px;
  }
}

.interview_archive_main_item_lists {
  margin-top: 23px;
}
@media (max-width: 768px) {
  .interview_archive_main_item_lists {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 15px;
  }
}

.interview_archive_main_item_list + .interview_archive_main_item_list {
  margin-top: 27px;
}
@media (max-width: 768px) {
  .interview_archive_main_item_list + .interview_archive_main_item_list {
    margin-top: 20px;
  }
}

.interview_archive_main_item_list_title {
  font-size: clamp(17px, 1.3333333333vw, 20px);
  font-weight: 700;
}
@media (max-width: 768px) {
  .interview_archive_main_item_list_title {
    font-size: 16px;
  }
}

.interview_archive_main_item_list_text {
  line-height: 2.1875;
  border-top: 1px solid #000;
  margin-top: 11px;
  padding-top: 13px;
}
@media (max-width: 768px) {
  .interview_archive_main_item_list_text {
    margin-top: 5px;
    padding-top: 5px;
  }
}

.interview_archive_main_item_images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.7333333333vw, 41px);
}
@media (max-width: 768px) {
  .interview_archive_main_item_images {
    gap: 15px;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin-top: 20px;
  }
}

.interview_archive_main_item_image img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 326/214;
  width: 100%;
  height: auto;
}

.interview_archive_main_item_right {
  width: 100%;
  max-width: 436px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .interview_archive_main_item_right {
    display: contents;
  }
}

@media (max-width: 768px) {
  .interview_archive_main_item_img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 15px;
  }
}

.interview_archive_main_item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 436/289;
  width: 100%;
  height: auto;
}

.interview_archive_main_item_flow {
  background-color: #fff;
  padding: 18px 20px 20px;
}
@media (max-width: 768px) {
  .interview_archive_main_item_flow {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    padding: 15px;
    margin-top: 15px;
  }
}

.interview_archive_main_item_flow_title {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .interview_archive_main_item_flow_title {
    font-size: 17px;
  }
}

.interview_archive_main_item_flow_lists {
  margin-top: 19px;
}
@media (max-width: 768px) {
  .interview_archive_main_item_flow_lists {
    margin-top: 15px;
  }
}

.interview_archive_main_item_flow_list {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: #E8F1F9;
  padding: 13px 13px;
}
@media (max-width: 768px) {
  .interview_archive_main_item_flow_list {
    grid-template-columns: 85px 1fr;
    padding: 13px 10px;
  }
}

.interview_archive_main_item_flow_list + .interview_archive_main_item_flow_list {
  margin-top: 12px;
}

.interview_archive_main_item_flow_list:not(:first-of-type)::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 12px;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #0D2961;
}

.interview_archive_main_item_flow_list_time {
  position: relative;
  font-weight: 700;
  color: #0D2961;
  white-space: nowrap;
  padding-left: 37px;
}

.interview_archive_main_item_flow_list_time::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/recruit_common/icon_clock_blue-400.svg) no-repeat center center/contain;
}

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

/* entry - entry_flow
------------------------------ */
.entry_flow {
  margin-top: 74px;
}
@media (max-width: 768px) {
  .entry_flow {
    margin-top: 50px;
  }
}

.entry_flow_main {
  background-color: #E8F1F9;
  padding: 0 20px 61px;
}
@media (max-width: 768px) {
  .entry_flow_main {
    padding: 0 15px 25px;
  }
}

.entry_flow_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.7333333333vw, 41px);
  counter-reset: cnt;
  width: 100%;
  max-width: 1170px;
  margin: 87px auto 0;
}
@media (max-width: 768px) {
  .entry_flow_items {
    grid-template-columns: 1fr;
    gap: 50px;
    margin: 50px auto 0;
  }
}

.entry_flow_item {
  position: relative;
  background-color: #fff;
  padding: 54px 23px 19px;
}
@media (max-width: 768px) {
  .entry_flow_item {
    padding: 40px 15px 20px;
  }
}

.entry_flow_item::before {
  position: absolute;
  content: counter(cnt, decimal);
  counter-increment: cnt;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(38px, 3.2vw, 48px);
  line-height: 100%;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  width: 73px;
  height: 73px;
  color: #fff;
  top: -37px;
  left: calc(50% - 2px);
  -webkit-transform: translateX(-50%) skewX(-4deg);
          transform: translateX(-50%) skewX(-4deg);
  z-index: 1;
}
@media (max-width: 768px) {
  .entry_flow_item::before {
    font-size: 30px;
    width: 60px;
    height: 60px;
    top: -30px;
    left: calc(50% - 1px);
  }
}

.entry_flow_item::after {
  position: absolute;
  content: "";
  width: 73px;
  height: 73px;
  border-radius: 50%;
  background-color: #1D75C0;
  top: -37px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .entry_flow_item::after {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}

.entry_flow_item_title {
  font-size: 20px;
  font-weight: 700;
  color: #0D2961;
  text-align: center;
}

.entry_flow_item_illust {
  max-width: 108px;
  margin: 16px auto 0;
}

.entry_flow_item_text {
  line-height: 1.875;
  margin-top: 23px;
}
@media (max-width: 768px) {
  .entry_flow_item_text {
    margin-top: 20px;
  }
}

.entry_flow_text {
  position: relative;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 16px;
  margin: 42px auto 0;
}
@media (max-width: 768px) {
  .entry_flow_text {
    margin: 25px auto 0;
  }
}

.entry_flow_text::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}

/* entry - entry_mail
------------------------------ */
.entry_mail {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .entry_mail {
    margin-top: 50px;
  }
}

.contact_mail_text {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .contact_mail_text {
    margin-top: 30px;
  }
}

.entry_mail_form {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .entry_mail_form {
    margin-top: 30px;
  }
}

/* form
------------------------------ */
.form_row {
  display: grid;
  grid-template-columns: clamp(270px, 21.8666666667vw, 328px) 1fr;
}
@media (max-width: 768px) {
  .form_row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.form_row_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form_title {
  position: relative;
  line-height: 2.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0D2961;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #000;
  padding: 16px 20px;
}
@media (max-width: 768px) {
  .form_title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 15px;
  }
}

.form_title:last-of-type {
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  .form_title:last-of-type {
    border-bottom: none;
  }
}

.form_title_small {
  font-size: 14px;
  font-weight: 400;
}

.form_title.form_title_start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form_title_must,
.form_title_any {
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  color: #fff;
  background-color: #0D2961;
  width: 100%;
  max-width: 57px;
  text-align: center;
  padding: 8px 5px;
  margin-top: 7px;
}
@media (max-width: 768px) {
  .form_title_must,
  .form_title_any {
    font-size: 13px;
    padding: 5px 5px;
  }
}

.form_input {
  line-height: 187.5%;
  letter-spacing: 0;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 20px 11px;
  min-height: 74px;
  border-top: 1px solid #BEBEBE;
}
@media (max-width: 768px) {
  .form_input {
    padding: 10px 15px;
  }
}

.form_input:last-of-type {
  border-bottom: 1px solid #BEBEBE;
}
@media (max-width: 768px) {
  .form_input:last-of-type {
    border-bottom: 1px solid #000;
  }
}

.form_input_example {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #999999;
  margin-top: 1px;
}

.form_input_request {
  padding: 25px 24px;
}

.form_input_about {
  padding: 19px 24px 23px;
}

.form_input_years {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 9px;
}

.form_input input[type=text],
.form_input input[type=tel],
.form_input input[type=email] {
  width: 100%;
  background-color: #E8F1F9;
  padding: 10px 15px;
}
@media (max-width: 768px) {
  .form_input input[type=text],
  .form_input input[type=tel],
  .form_input input[type=email] {
    padding: 10px 10px;
  }
}

.form_input_name input[type=text] {
  max-width: 404px;
}

.form_input_tel input[type=tel] {
  max-width: 404px;
}

.form_input_mail input[type=email] {
  max-width: 600px;
}

.form_address_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 30px;
}

.form_input_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 12px;
}

.form_input_post_mark {
  font-weight: 700;
  color: #000;
}

.form_input .form_input_post input[type=text] {
  width: 100%;
  max-width: 240px;
}

.form_input_prefectures_wrapper {
  position: relative;
  color: #000;
  background-color: #fff;
  width: 237px;
  max-width: 100%;
}

.form_input_prefectures_wrapper::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 8px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/recruit_common/icon_triangle_bottom_blue.svg) no-repeat center center/contain;
}

.form_input_prefectures {
  width: 100%;
  height: 100%;
  padding: 7.5px 15px;
}

.form_input_address {
  margin-top: 8px;
}

.form_input_textarea textarea {
  width: 100% !important;
  max-width: 881px;
  height: 274px !important;
  padding: 10px 15px;
  background-color: #E8F1F9;
}

.form_input_text {
  position: relative;
  display: inline-block;
  font-size: 15px;
  padding-left: 15px;
}

.form_input_text::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
}

.form_input_lot {
  padding: 25px 24px 22px;
}

.form_input_birth_calender {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #E8F1F9;
  padding: 5px 15px;
}

.form_radio {
  padding: 11px 20px;
}

.form_radio_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 10px 45px;
}
@media (max-width: 768px) {
  .form_radio_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form_radio_button {
  letter-spacing: 0.05em;
}

.form_radio_button input[type=radio] {
  position: relative;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 40px;
  height: 40px;
  max-width: 100%;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  cursor: pointer;
  background-color: #E8F1F9;
  outline: none;
  border-radius: 50%;
}

.form_radio_button input[type=radio]:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0) translate(-50%, -50%);
          transform: scale(0) translate(-50%, -50%);
  -webkit-transition: all ease-out 250ms;
  transition: all ease-out 250ms;
}

.form_radio_button input[type=radio]:checked:before {
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
  background-color: #0D2961;
}

.form_radio_button label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 9px;
  letter-spacing: 0.05em;
}

.form_input_select {
  position: relative;
  width: 100%;
  max-width: 404px;
  background: url(../images/recruit_common/icon_triangle_arrow_bottom_white.svg) no-repeat right 14px center/22px 13px, linear-gradient(270deg, #0D2961 0, #0D2961 50px, #E8F1F9 50px, #E8F1F9 100%);
}

.form_input_select select {
  width: 100%;
  cursor: pointer;
  padding: 10px 60px 10px 15px;
}

.form .mfp_err {
  display: none;
}

.form_file .mfp_element_file {
  font-size: 14px;
  max-width: 100%;
  padding: 7px 8px;
}

.form_privacy_wrapper {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .form_privacy_wrapper {
    margin-top: 15px;
  }
}

.form_privacy {
  height: 178px;
  overflow: scroll;
  background-color: #E8F1F9;
  padding: 24px 40px;
}
@media (max-width: 768px) {
  .form_privacy {
    height: 150px;
    padding: 15px 20px;
    margin-top: 15px;
  }
}

.form_privacy_title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  color: #0D2961;
}

.form_privacy_text {
  line-height: 180%;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .form_privacy_text {
    margin-top: 10px;
  }
}

.form_privacy_text p + p {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .form_privacy_text p + p {
    margin-top: 10px;
  }
}

.form_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.form_checkbox_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 20px;
}

.form_checkbox_confirmation {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .form_checkbox_confirmation {
    margin-top: 20px;
  }
}

.form_checkbox_label.form_checkbox_label_none {
  display: none;
}

.form_checkbox_parts {
  position: relative;
  display: inline-block;
  padding-left: 48px;
}

.form_checkbox_parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 35px;
  height: 35px;
  border: none;
  background-color: #E8F1F9;
}

.form_checkbox_input {
  display: none;
}

.form_checkbox_input:checked + .form_checkbox_parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 11px;
  width: 12px;
  height: 24px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-bottom: 3px solid #0D2961;
  border-right: 3px solid #0D2961;
}

.checkbox_err .mfp_err {
  display: none;
  width: 228px;
  max-width: 100%;
  margin: auto;
  padding: 5px 0;
}

.form_btn {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 76px auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .form_btn {
    max-width: 263px;
    margin: 20px auto 0;
  }
}

.form_btn::before {
  position: absolute;
  content: "";
  width: 21px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  background: url(../images/recruit_common/icon_arrow_right_white.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .form_btn:hover:before {
    background: url(../images/recruit_common/icon_arrow_right_blue-900.svg) no-repeat center center/contain;
  }
}

.form_btn button {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 300px;
  color: #fff;
  background-color: #C5AB7A;
  border: 1px solid #C5AB7A;
  z-index: 1;
  text-align: left;
  padding: 19px 40px 20px 23px;
}
@media (max-width: 768px) {
  .form_btn button {
    max-width: 263px;
    padding: 19px 40px 20px 23px;
  }
}

@media (min-width: 768px) {
  .form_btn:hover button {
    color: #0D2961;
    background-color: #fff;
    border-color: #0D2961;
  }
}

.mfp_element_button {
  background-color: #0D2961;
}

/* entry-thanks - entry_thanks_main
------------------------------ */
.entry_thanks_main {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .entry_thanks_main {
    margin-top: 50px;
  }
}

.entry_thanks_main_text {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .entry_thanks_main_text {
    margin-top: 20px;
  }
}

.entry_thanks_main_btn {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .entry_thanks_main_btn {
    margin-top: 20px;
  }
}

/* 404
------------------------------ */
.not_found {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .not_found {
    margin-top: 50px;
  }
}

.not_found_text {
  text-align: center;
}

.not_found_btn {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .not_found_btn {
    margin-top: 30px;
  }
}

.other-page_cta01 {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .other-page_cta01 {
    margin-top: 50px;
  }
}

/* footer
------------------------------ */
.footer {
  background: linear-gradient(70deg, #0B57A9 0%, #0D2961 100%);
  padding: 120px 0 120px;
  margin-top: 102px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 160px;
    margin-top: 50px;
  }
}

.footer_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(20px, 4.4vw, 66px);
}
@media (max-width: 768px) {
  .footer_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.footer_unit_wrapper {
  margin-left: calc(50% - 50vw);
  width: 100vw;
  min-width: 340px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  clip-path: polygon(0 100%, calc(100% - 50px) 100%, 100% 0, 0 0);
  padding: 50px clamp(55px, 4.9333333333vw, 74px) 50px 25px;
}
@media (max-width: 768px) {
  .footer_unit_wrapper {
    width: 100%;
    padding: 20px;
  }
}

.footer_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 28px;
  max-width: 408px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .footer_unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
}

.footer_logo {
  width: 100%;
  max-width: 305px;
}
@media (max-width: 768px) {
  .footer_logo {
    max-width: 213px;
    margin-top: 0;
  }
}

.footer_title {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  color: #757575;
}

.footer_nav {
  width: 100%;
  max-width: 702px;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.footer_lists {
  display: grid;
  grid-template-columns: repeat(3, auto);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px clamp(15px, 1.3333333333vw, 20px);
  width: 100%;
  max-width: 572px;
}
@media (max-width: 768px) {
  .footer_lists {
    display: none;
  }
}

.footer_list a {
  position: relative;
  display: inline-block;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  padding: 5px 0;
}

.footer_list a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .footer_list a:hover:after {
    width: 100%;
  }
}

.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  border-top: 1px solid #fff;
  margin-top: 36px;
  padding-top: 43px;
}
@media (max-width: 768px) {
  .footer_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    margin-top: 0;
    padding-top: 20px;
  }
}

.footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(15px, 2.6666666667vw, 40px);
}
@media (max-width: 768px) {
  .footer_links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer_link a {
  position: relative;
  display: inline-block;
  font-size: clamp(13px, 1.0666666667vw, 16px);
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
}

.footer_link a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 2px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .footer_link a:hover::after {
    width: 0;
  }
}

.footer_sns_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
}
@media (max-width: 768px) {
  .footer_sns_icons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer_sns_icon {
  width: 100%;
}

.footer_sns_icon.footer_sns_icon_instagram {
  max-width: 26px;
}

.footer_sns_icon.footer_sns_icon_youtube {
  max-width: 117px;
}

.footer_sns_icon.footer_sns_icon_x {
  max-width: 26px;
}

.footer_sns_icon a {
  position: relative;
  display: inline-block;
}

.footer_sns_icon a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -3px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .footer_sns_icon a:hover:after {
    width: 100%;
  }
}

.footer_copyright {
  color: #fff;
  margin-top: 36px;
}
@media (max-width: 768px) {
  .footer_copyright {
    margin-top: 30px;
    text-align: center;
  }
}

.footer_copyright small {
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* page_top
------------------------------ */
.page_top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #0D2961;
  border: 1px solid #0D2961;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
}
@media (max-width: 768px) {
  .page_top {
    right: 16px;
    bottom: 100px;
  }
}

@media (min-width: 768px) {
  .page_top:hover {
    color: #0D2961;
    background-color: #fff;
  }
}

.page_top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-50%) rotate(-45deg);
          transform: translate(-50%) rotate(-45deg);
}

@media (min-width: 768px) {
  .page_top:hover::before {
    border-color: #0D2961;
  }
}

/* foot_menu
------------------------------ */
.foot_menu {
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 10;
  -webkit-box-shadow: 0px -3px 5px rgba(255, 255, 255, 0.5);
          box-shadow: 0px -3px 5px rgba(255, 255, 255, 0.5);
  background-color: #fff;
  border: 1px solid #0D2961;
}
@media (max-width: 768px) {
  .foot_menu {
    display: block;
  }
}

.foot_menu_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.foot_menu_tel {
  width: 50%;
}

.foot_menu_tel a {
  position: relative;
  display: block;
  line-height: 120%;
  color: #fff;
  background-color: #0D2961;
  font-weight: 700;
  text-align: center;
  padding: 30px 10px 20px;
  width: 100%;
}

.foot_menu_tel a::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/recruit_common/icon_tel_white.svg) no-repeat center center/contain;
}

.foot_menu_mail {
  width: 50%;
}

.foot_menu_mail a {
  position: relative;
  display: block;
  line-height: 120%;
  color: #0D2961;
  background-color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 30px 10px 20px;
  width: 100%;
}

.foot_menu_mail a::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 15px;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/recruit_common/icon_mail_blue-900.svg) no-repeat center center/contain;
}