/*--------------------------------------------------
ini
--------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");
/*--------------------------------------------------
mixin
--------------------------------------------------*/
section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
}

section.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

a:hover {
  opacity: 0.8;
  transition: 0.4s;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/*--------------------------------------------------
  component
--------------------------------------------------*/
.c-flex {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
}
.c-flex .c-flex, .c-flex .c-flex__sb, .c-flex .c-fllex__sa {
  margin: 0;
}

.c-flex__sb {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}
.c-flex__sb .c-flex, .c-flex__sb .c-flex__sb, .c-flex__sb .c-fllex__sa {
  margin: 0;
}

.c-flex__rev {
  flex-direction: row-reverse;
}

.c-flex__center {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  flex-wrap: wrap;
}

.c-flex__sa {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  flex-wrap: wrap;
}
.c-flex__sa .c-flex, .c-flex__sa .c-flex__sb, .c-flex__sa .c-fllex__sa {
  margin: 0;
}

br.brsp {
  display: none;
}

br.brpc {
  display: block;
}

img.sp {
  display: none;
}

img.pc {
  display: inline;
}

.c-img__full {
  line-height: 0;
}

.c-img__full img {
  width: 100%;
}

.c-img__scroll img {
  width: 100%;
}

.c-inline__center {
  text-align: center;
}

img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }
  br.brpc {
    display: none;
  }
  img.sp {
    display: inline;
  }
  img.pc {
    display: none;
  }
  .c-img__scroll img {
    width: 200%;
  }
  .c-flex__rev {
    flex-direction: row;
  }
}
/*--------------------------------------------------
  header
--------------------------------------------------*/
.l-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-left: 20px;
  }
}
.l-header__logo {
  width: 435px;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 70%;
    padding-top: 2px;
  }
}
.l-header__logoimg {
  width: 100%;
}
.l-header__entrybuttons {
  width: 220px;
}
@media screen and (max-width: 768px) {
  .l-header__entrybuttons {
    display: none;
  }
}
.l-header__entrybutton {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  width: 110px;
  height: 90px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
}
.l-header__newentry {
  background: #009fe8;
  padding-top: 24px;
}
.l-header__midentry {
  background: #12b7d2;
  padding-top: 16px;
}
.l-header__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  display: block;
}
.l-header__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  display: block;
}
.l-header .l-menubtn {
  position: relative;
  background: #182987;
  width: 90px;
  height: 90px;
  display: block;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .l-header .l-menubtn {
    margin: 0;
    width: 55px;
    height: 55px;
  }
}
.l-header .l-menubtn span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 24px;
  width: 42px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .l-header .l-menubtn span {
    left: 16px;
    width: 25px;
  }
}
.l-header .l-menubtn span:nth-of-type(1) {
  top: 28px;
}
@media screen and (max-width: 768px) {
  .l-header .l-menubtn span:nth-of-type(1) {
    top: 15px;
  }
}
.l-header .l-menubtn span:nth-of-type(2) {
  top: 42px;
}
@media screen and (max-width: 768px) {
  .l-header .l-menubtn span:nth-of-type(2) {
    top: 25px;
  }
}
.l-header .l-menubtn span:nth-of-type(3) {
  top: 55px;
}
@media screen and (max-width: 768px) {
  .l-header .l-menubtn span:nth-of-type(3) {
    top: 35px;
  }
}
.l-header .l-menubtn.active span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .l-header .l-menubtn.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
}
.l-header .l-menubtn.active span:nth-of-type(2) {
  opacity: 0;
}
.l-header .l-menubtn.active span:nth-of-type(3) {
  transform: translateY(-13px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .l-header .l-menubtn.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}

main {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 55px;
  }
}

/*--------------------------------------------------
  menu
--------------------------------------------------*/
#c-menu {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  background: #182987;
  color: #fff;
  box-sizing: border-box;
  padding-top: 140px;
  display: none;
  z-index: 999999;
}
@media screen and (max-width: 768px) {
  #c-menu .c-menu-block {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #c-menu {
    top: 55px;
    width: 100%;
    height: calc(100vh - 55px);
    padding-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  #c-menu .c-menu-scroll {
    overflow-y: scroll;
    height: 85vh;
  }
}
#c-menu .c-menu-top {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  padding: 0 0 45px 0;
}
@media screen and (max-width: 768px) {
  #c-menu .c-menu-top {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 25px;
    padding: 0 0 20px 0;
  }
}
#c-menu .c-menu-top__name {
  color: #fff;
  text-decoration: none;
}
#c-menu .c-menu-parent {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: #12b7d2;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #c-menu .c-menu-parent {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 5px;
  }
}
#c-menu .c-menu-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  border-left: 1px solid #fff;
  padding-left: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #c-menu .c-menu-child {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 25px;
    padding-left: 10px;
    margin-bottom: 20px;
  }
}
#c-menu .c-menu-child__name {
  color: #fff;
  text-decoration: none;
}
#c-menu .c-menu-child__blank {
  background: url("../img/common/icon_menublank.svg") right 10px no-repeat;
  background-size: 12px;
  padding-right: 20px;
}
#c-menu .c-menu-child__second {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  #c-menu .c-menu-child__second {
    padding-left: 15px;
  }
}

.c-menu-entrybuttons {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-menu-entrybuttons {
    display: flex;
    margin-bottom: 40px;
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .c-menu__entrybuttons {
    display: flex;
    margin: 0 auto;
  }
}
.c-menu__entrybutton {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
  width: 50%;
  height: 90px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  display: block;
}
.c-menu__newentry {
  background: #009fe8;
  padding-top: 24px;
}
.c-menu__midentry {
  background: #12b7d2;
  padding-top: 16px;
}
.c-menu__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  display: block;
}
.c-menu__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  display: block;
}

/*--------------------------------------------------
  footer
--------------------------------------------------*/
.c-cta {
  background: url("../img/common/bg_cta.png") center center no-repeat;
  background-size: cover;
  height: 516px;
  text-align: center;
  color: #fff;
  padding-top: 150px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .c-cta {
    height: 260px;
    padding-top: 75px;
  }
}
.c-cta .c-cta-title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 68px;
}
@media screen and (max-width: 768px) {
  .c-cta .c-cta-title {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
  }
}
.c-cta .c-cta-subtitle {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 68px;
  padding: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .c-cta .c-cta-subtitle {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 34px;
    padding: 0 0 20px 0;
  }
}
.c-cta .c-cta-button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 90px;
  width: 42%;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-cta .c-cta-button {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 45px;
  }
}
.c-cta .c-cta-button span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  display: block;
  margin-left: -30%;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .c-cta .c-cta-button span {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 10px;
    margin-top: -15px;
  }
}
.c-cta .c-cta__newentry {
  background: url("../img/common/btn-arrow_rightwhite.svg") 95% center no-repeat #009fe8;
  background-size: 12px;
}
@media screen and (max-width: 768px) {
  .c-cta .c-cta__newentry {
    background-size: 6px;
  }
}
.c-cta .c-cta__midentry {
  background: url("../img/common/btn-arrow_rightwhite.svg") 95% center no-repeat #12b7d2;
  background-size: 12px;
}
@media screen and (max-width: 768px) {
  .c-cta .c-cta__midentry {
    background-size: 6px;
  }
}

/*--------------------------------------------------
  footer
--------------------------------------------------*/
.l-footer__pagetop {
  width: 90px;
  margin-left: auto;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .l-footer__pagetop {
    width: 45px;
  }
}

.l-footer-logo {
  width: 435px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer-logo {
    width: 210px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer-block {
    width: 50%;
  }
}

.l-footer-top {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  padding: 0 0 45px 0;
}
@media screen and (max-width: 768px) {
  .l-footer-top {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 25px;
    padding: 0 0 20px 0;
  }
}
.l-footer-top__name {
  color: #000;
  text-decoration: none;
}

.l-footer-parent {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: #12b7d2;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .l-footer-parent {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 5px;
  }
}
.l-footer-parent__blue {
  color: #009fe8;
}

.l-footer-child {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  border-left: 1px solid #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .l-footer-child {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 25px;
    padding-left: 0px;
    margin-bottom: 20px;
  }
}
.l-footer-child__blank {
  background: url("../img/common/icon_blank.svg") right 10px no-repeat;
  background-size: 12px;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .l-footer-child__blank {
    background: url("../img/common/icon_blank.svg") right 5px no-repeat;
    background-size: 10px;
    padding-right: 12px;
  }
}
.l-footer-child__name {
  color: #000;
  text-decoration: none;
}
.l-footer-child__second {
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .l-footer-child__second {
    padding-left: 8px;
  }
}

.l-footer__corporate {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 32px;
  padding-bottom: 20px;
  background: url("../img/common/icon_blank.svg") right 10px no-repeat;
  background-size: 12px;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .l-footer__corporate {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 10px;
    line-height: 22px;
    padding-bottom: 10px;
  }
}
.l-footer__corporate a {
  color: #000;
}
.l-footer__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 10px;
    line-height: 20px;
  }
}

/*--------------------------------------------------
  commmon
--------------------------------------------------*/
.c-inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

.c-hero__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 56px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-hero__title {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 39px;
  }
}
.c-hero__title span {
  display: inline-block;
  margin-bottom: 5px;
  padding: 0 10px;
  background: linear-gradient(to right, #009fe8, #182987);
}

.c-company__sholders {
  align-items: center;
  padding-bottom: 10px;
}
.c-company__sholders .c-company-sholer__img {
  width: 70px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .c-company__sholders .c-company-sholer__img {
    width: 60px;
    padding-right: 10px;
  }
}
.c-company__sholders .c-company-sholer__header {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100px;
  color: #009fe8;
}
@media screen and (max-width: 768px) {
  .c-company__sholders .c-company-sholer__header {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 17px;
    line-height: 70px;
  }
}

.c-company-card {
  width: 410px;
  padding: 30px;
  box-sizing: border-box;
  background: linear-gradient(#fff, #ccecfa);
}
@media screen and (max-width: 768px) {
  .c-company-card {
    width: 100%;
    padding: 15px;
  }
}

body.message .c-hero__title span, body.corporate .c-hero__title span, body.interview_index .c-hero__title span, body.movie .c-hero__title span, body.training .c-hero__title span {
  background: linear-gradient(to right, #12b7d2, #00505d);
}
body.message .c-company-card, body.corporate .c-company-card, body.interview_index .c-company-card, body.movie .c-company-card, body.training .c-company-card {
  background: linear-gradient(#fff, #d0f1f6);
}

body.interview_index .c-company-sholer__header {
  color: #12b7d2;
}

.c-button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 46px;
  border: 1px solid #182987;
  background: url("../img/common/btn_arrow-blue.svg") 95% center no-repeat #fff;
  background-size: 12px;
  color: #182987;
  border-radius: 23px;
  width: 250px;
  text-decoration: none;
  box-sizing: border-box;
  padding-left: 20px;
  display: block;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .c-button {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 32px;
    width: 50%;
    padding-left: 10px;
  }
}

.c-button:hover {
  background: url("../img/common/btn_arrow-blue.svg") 98% center no-repeat #fff;
  background-size: 12px;
}

.c-button__center {
  width: 250px;
  margin: 0 auto 80px auto;
}
@media screen and (max-width: 768px) {
  .c-button__center {
    width: 50%;
    margin: 0 auto 40px auto;
  }
  .c-button__center .c-button {
    width: 100%;
  }
}

.slick-arrow:before {
  content: "" !important;
}

.slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-next:before {
  background: url("../img/interview-common/icon_next.svg") no-repeat;
  background-size: contain;
}

.slick-prev:before {
  background: url("../img/interview-common/icon_prev.svg") no-repeat;
  background-size: contain !important;
}

.slick-prev, .slick-next {
  top: 40%;
}

.slick-prev {
  left: -5%;
}

.slick-next {
  right: -8%;
}

.a-text-underline {
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}

.a-text-underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.a-text-underline:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

footer .a-text-underline::before {
  background: #000;
}

.c-pagenavi {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  padding: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  .c-pagenavi {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 22px;
  }
}
.c-pagenavi__link {
  color: #000;
  margin-left: 1em;
}
.c-pagenavi__foot {
  justify-content: right;
  margin: -20px 0 50px 0;
}
@media screen and (max-width: 768px) {
  .c-pagenavi__foot {
    margin: -10px 0 25px 0;
  }
}

.c-blog-detail {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 44px;
  padding: 0 0 50px 0;
}
@media screen and (max-width: 768px) {
  .c-blog-detail {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 31px;
    padding: 0 0 25px 0;
  }
}/*# sourceMappingURL=common.original.css.map */