@charset "UTF-8";
/* CSS Document */


body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

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

img {
  width: 100%;
  height: auto;
}

p {
  line-height: 27px;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.grid_content {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 30px;
}

.breadcrumbs {
  width: 100%;
  padding: 0 40px;
}

.breadcrumbs>nav {
  width: 100%;
  max-width: 1600px;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 5px 0;
  margin: 0 auto;
}

.breadcrumbs>nav>ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.breadcrumbs>nav>ol>li {
  position: relative;
}

.breadcrumbs>nav>ol>li::after {
  content: "＞";
  position: absolute;
  margin: 0 0 0 10px;
}

.breadcrumbs>nav>ol>li:last-of-type:after {
  display: none;
}

.breadcrumbs>nav>ol>li:last-of-type {
  font-weight: bold;
}

.breadcrumbs>nav>ol>li>a {
  transition: 0.3s;
}

.breadcrumbs>nav>ol>li>a:hover {
  opacity: 0.5;
}

.grid_auto_1fr {
  display: grid;
  grid-template-columns: auto 1fr;
}

.gap_30 {
  gap: 30px;
}

.padding_box {
  padding: 80px 40px;
}

.bg_gray {
  background: #eee;
}

.bg_bg_bp {
  background: linear-gradient(-45deg, #9B9CE0, #9BE0C3);
}

.bg_o_g {
  background: linear-gradient(-45deg, #92D190, #FACB8A);
}

.bg_p_bg {
  background: linear-gradient(-45deg, #8BD3D0, #E089A0);
}

.bg_yg_p {
  background: linear-gradient(-45deg, #BF97C6, #ECFFAC);
}

.bg_b_o {
  background: linear-gradient(-45deg, #E0A287, #9DE8FF);
}

.text_category {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
}

.text_category span {
  display: block;
  font-size: 24px;
}

.text_en {
  font-family: "Inter", sans-serif;
}

.text_title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
}

.text_large {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
}

.text_medium {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.text_small {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.text_c {
  text-align: center;
}

.border_r {
  border-radius: 20px 0 20px 0;
}

.list_disc {
  list-style: disc;
  margin-left: 25px;
}

.list_number>li {
  position: relative;
  margin-left: 28px;
}

.list_number>li:before {
  position: absolute;
  right: calc(100% + 0.5rem);
  content: "(" counter(list-item) ")";
}

.w_1000 {
  max-width: 1000px !important;
}

.mb_0 {
  margin-bottom: 0 !important;
}

.mb_5 {
  margin-bottom: 5px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

.mb_70 {
  margin-bottom: 70px !important;
}

.mb_80 {
  margin-bottom: 80px !important;
}

/*----- header START -----*/

header {
  width: 100%;
  height: 50px;
}

header .g_nav {
  width: 100%;
  height: 50px;
  position: fixed;
  z-index: 3;
}

header .bg {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 555, 90%);
  position: absolute;
  z-index: 1;
}

header .bg_blind {
  width: 100%;
  height: 100vh;
  position: absolute;
  visibility: hidden;
  z-index: -1;
}

header .bg_blind.active {
  visibility: visible;
}

header .content {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding-left: 40px;
}

header .content>a {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

header .content>a:hover {
  opacity: 0.3;
}

header .content>a>span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

header .content>a>span>img {
  max-width: 240px;
}

header .content>div {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

header .h_nav {
  display: flex;
  align-items: center;
}

header .h_nav>ul {
  display: flex;
  gap: 20px 35px;
}

header .h_nav>ul>li {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

header .h_nav>ul>li:last-of-type {
  display: none;
}

header .h_nav>ul>li>a.btn_drop {
  position: relative;
  cursor: pointer;
}

header .h_nav>ul>li>a.btn_drop::before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: -8px;
  transition: 0.3s;
}

header .h_nav>ul>li>a.btn_drop.active::before {
  width: 100%;
  left: 0;
}

header .h_nav>ul>li>div {
  width: 200px;
  display: flex;
  justify-content: center;
  white-space: nowrap;
  background: rgba(0, 0, 0, 80%);
  position: absolute;
  top: 23px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

header .h_nav>ul>li>div.active {
  top: 50px;
  visibility: visible;
  opacity: 1;
}

header .h_nav>ul>li>div>ul {
  display: flex;
  flex-flow: column;
  gap: 20px;
  padding: 20px 0;
}

header .h_nav>ul>li>div>p {
  display: none;
}

header .h_nav>ul>li>div>ul>li>a {
  color: #fff;
  transition: 0.3s;
}

header .h_nav>ul>li>div>ul>li>a:hover {
  opacity: 0.3;
}

header .h_nav .btn_h_back {
  display: none;
}

header .btn_entery {
  width: 120px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #D00000;
  transition: 0.3s;
}

header .btn_entery:hover {
  opacity: 0.3;
}

header a.btn_drop {
  position: relative;
  cursor: pointer;
}

header a.btn_drop::before {
  content: "";
  width: 0;
  height: 2px;
  background: #000;
  position: absolute;
  right: 0;
  bottom: -8px;
  transition: 0.3s;
}

header a.btn_drop.active::before {
  width: 100%;
  left: 0;
}

header a.btn_mynavi {
  display: none;
}

header .btn_sp {
  display: none;
}

/*----- header END -----*/

/*----- footer START -----*/

footer .content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

footer .content .left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/new-graduate/assets/images/common/footer_bg.jpg) no-repeat center center / cover;
  padding: 40px;
}

footer .content .left>div {
  max-width: 400px;
  background: rgba(255, 255, 255, 90%);
  border-radius: 20px 0 20px 0;
  padding: 30px;
}

footer .content .left>div>h2 {
  margin-bottom: 20px;
}

footer .content .left>div>p {
  margin-bottom: 20px;
}

footer .content .left>div a {
  max-width: 250px;
  display: block;
  line-height: 1;
  background: #fff;
  border: 2px solid #00abeb;
  padding: 20px;
  margin: 0 auto;
  transition: 0.3s;
}

footer .content .left>div a:hover {
  opacity: 0.5;
}

footer .content .right {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  color: #fff;
  background: #000;
  padding: 40px;
}

footer .content .right>p {
  font-size: 12px;
}

footer .content .right div>p:nth-of-type(1) {
  margin-bottom: 30px;
}

footer .content .right div>p:nth-of-type(2) {
  font-size: 14px;
  margin-bottom: 30px;
}

footer .content .right div>p>img {
  max-width: 250px;
}

footer .content .right div>ul {
  display: flex;
  flex-flow: column;
  gap: 15px;
  font-size: 14px;
  margin-bottom: 30px;
}

footer .content .right div>ul>li>a {
  transition: 0.3s;
}

footer .content .right div>ul>li>a:hover {
  opacity: 0.5;
}

footer .btn_top {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
  z-index: 2;
}

footer .btn_top>a {
  width: 50px;
  height: 50px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.8rem;
  background: #fff;
  font-weight: bold;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  position: relative;
  transition: 0.3s;
}

footer .btn_top>a:hover {
  opacity: 0.5;
}

footer .btn_top>a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #B10F41;
  border-right: 2px solid #B10F41;
  transform: rotate(-45deg);
}

/*----- footer END -----*/


/*----- slickスライダー START -----*/

.slick_common a {
  display: block;
  position: relative;
  transition: 0.3s;
}

.slick_common a:hover {
  opacity: 0.5;
}

.slick_common a>div {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  color: #fff;
  background: rgba(0, 0, 0, 70%);
  border-radius: 0 0 20px 0;
  position: absolute;
  bottom: 0;
  padding: 15px;
}

.slick_common a>div>p {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  margin-bottom: 10px;
}

.slick_common a>div>p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

.slick_common a>div>ul {
  display: flex;
  color: #fff;
  font-size: 0.8rem;
  line-height: 24px;
}

.slick_common a>div>ul>li:nth-of-type(1) {
  font-family: 'Inter RB', 'Noto Sans JP', sans-serif;
  font-weight: 600;
  position: relative;
  padding: 0 20px 0 0;
  margin: 0 5px 0 0;
}


.slick_common a>div>ul>li:nth-of-type(1)::after {
  content: "｜";
  position: absolute;
  right: 0;
}

.slick_common a>div>ul>li:nth-of-type(2) {
  margin: 0 10px 0 0;
}

.slick_common a>p::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.slick_common a>p>img {
  width: 100%;
  height: 100%;
  border-radius: 20px 0 20px 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.slick_common a>p>img.contain {
  object-fit: contain;
  margin-top: 20px;
}

.slick_common .slick-slide {
  margin: 0 1px;
}

.slick_common .slick-dots,
.slick_single .slick-dots {
  display: flex;
  gap: 3px;
  text-align: left;
  bottom: -30px;
}

.slick_common .slick-dots li,
.slick_single .slick-dots li {
  width: 100%;
  max-width: 70px;
  height: auto;
  margin: 0;
  padding: 0;
}

.slick_common .slick-dots li button::before,
.slick_single .slick-dots li button::before {
  display: none;
}

.slick_common .slick-dots li button,
.slick_single .slick-dots li button {
  width: 100%;
  height: 3px;
  padding: 0;
  background: #000;
}

.slick_common .slick-dots li.slick-active button,
.slick_single .slick-dots li.slick-active button {
  background: #B10F41;
}

/*----- slickスライダー END -----*/


/*----- 働く環境、募集要項 START -----*/

.tab_nav {
  display: grid;
  gap: 5px;
  margin-bottom: 60px;
}

.tab_nav>a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #eee;
  border-radius: 20px 0 20px 0;
  position: relative;
  padding: 10px;
  padding: 15px 10px;
  transition: 0.3s;
}

.tab_nav>a:hover {
  opacity: 0.5;
}

.tab_nav>a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #0027B5;
  border-right: 2px solid #0027B5;
  transform: rotate(135deg);
  margin: 0 20px 2px 0;
}

.gray_box {
  background: #eee;
  border-radius: 20px 0 20px 0;
  padding: 40px 30px;
  margin-bottom: 40px;
}

.gray_box>h2 {
  margin-bottom: 30px;
}

/*----- 働く環境、募集要項 END -----*/


@media (max-width: 1200px) {

  /*----- header START -----*/

  header .content>div {
    gap: 20px;
    font-size: 12px;
  }

  header .h_nav>ul {
    gap: 10px 20px;
  }

  header .btn_entery {
    width: 80px;
  }

  /*----- header END -----*/
}

@media (max-width: 1024px) {

  .breadcrumbs {
    padding: 0 20px;
  }

  .grid_content {
    grid-template-columns: 1fr;
  }

  .grid_auto_1fr {
    grid-template-columns: 1fr;
  }

  .padding_box {
    padding: 40px 20px;
  }

  /*----- header START -----*/

  header {
    height: 40px;
  }

  header .g_nav {
    height: 40px;
  }

  header .content {
    height: 40px;
    padding-left: 20px;
  }

  header .content>div {
    gap: 0;
  }

  header .content>a>span>img {
    max-width: 150px;
  }

  header .content>a>span {
    font-size: 12px;
  }

  header .h_nav {
    width: 100%;
    height: 100vh;
    color: #000;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }

  header .h_nav.active {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
  }

  header .h_nav.active::after {
    content: "";
    width: 100vw;
    height: 100vh;
    background: #fff;
    position: absolute;
    top: 0;
    left: -20px;
    z-index: -1;
  }

  header .h_nav a.link_blank::after {
    width: 14px;
    height: 14px;
    filter: brightness(0);
  }

  header .h_nav>ul {
    width: 100%;
    flex-flow: column;
    align-items: flex-start;
    position: absolute;
    top: 60px;
  }

  header .h_nav>ul>li {
    width: 100%;
    height: 40px;
    position: initial;
  }

  header .h_nav>ul>li:last-of-type {
    display: flex;
  }

  header .h_nav>ul>li>a.btn_drop {
    font-size: 1.2rem;
    font-weight: bold;
  }

  header .h_nav>ul>li>a.btn_drop::before {
    height: 2px;
    background: #000000;
  }

  header .h_nav>ul>li>div {
    width: 100%;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    top: 0;
    left: -10px;
  }

  header .h_nav>ul>li>div.active {
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
  }

  header .h_nav>ul>li>div>p {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 20px 0;
  }

  header .h_nav>ul>li>div>ul {
    align-items: center;
    padding: 0;
  }

  header .h_nav>ul>li>div>ul>li>a {
    color: #000;
    font-size: 1rem;
  }

  header .h_nav .btn_h_back {
    width: fit-content;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin: 0 0 20px 0;
    transition: 0.3s;
  }

  header .h_nav .btn_h_back:hover {
    opacity: 0.5;
  }

  header .h_nav .btn_h_back::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #B10F41;
    border-right: 2px solid #B10F41;
    transform: rotate(-135deg);
    margin: 0 10px 0 0;
  }

  header .btn_entery {
    height: 40px;
    position: relative;
  }

  header .btn_sp {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
  }

  header .btn_sp:hover {
    opacity: 0.3;
  }

  header .btn_sp>div {
    display: flex;
    flex-flow: column;
    gap: 5px;
    position: relative;
  }

  header .btn_sp>div span:nth-of-type(1) {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }

  header .btn_sp>div span:nth-of-type(2) {
    width: 18px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }

  header .btn_sp>div span:nth-of-type(3) {
    width: 12px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }

  header .btn_sp.active>div span:nth-of-type(1) {
    transform: rotate(45deg);
    position: absolute;
    left: -3px;
  }

  header .btn_sp.active>div span:nth-of-type(2) {
    opacity: 0;
  }

  header .btn_sp.active>div span:nth-of-type(3) {
    width: 24px;
    transform: rotate(-45deg);
    position: absolute;
    left: -3px;
  }

  header a.btn_mynavi {
    max-width: 250px;
    display: block;
    background: #fff;
    border: 2px solid #00abeb;
    padding: 20px;
    margin: 30px auto 0;
    transition: 0.3s;
  }

  header a.btn_mynavi:hover {
    opacity: 0.5;
  }

  header a.btn_mynavi.active {
    visibility: visible;
  }

  /*----- header END -----*/

  /*----- footer START -----*/

  footer .content {
    grid-template-columns: 1fr;
  }

  footer .content .left,
  footer .content .right {
    padding: 40px 20px;
  }

  footer .content .left>div {
    padding: 30px 20px;
  }

  footer .btn_top {
    bottom: 10px;
    right: 10px;
  }

  /*----- footer END -----*/

  /*----- 働く環境、募集要項 END -----*/

  .gray_box {
    padding: 40px 20px;
  }

  /*----- 働く環境、募集要項 END -----*/


}





@media (max-width: 768px) {}