@charset "UTF-8";

/* ------------------------------------------------------------
 - Layout
-------------------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 80px;
  background-color: #fff;
  z-index: 100;
}

.l-main{
  margin-top: 80px;
}

.l-footer {
  padding: 2.5rem;
  background-color: #070F21;
}

.l-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.l-spacer.-primary {
  margin-top: 5rem;
}

@media screen and (max-width:940px){
  .l-header{
    overflow: visible;
  }
}

@media screen and (max-width:750px) {
  .l-header {
    height: 50px;
  }

  .l-main{
    margin-top: 50px;
  }

  .l-footer{
    padding: 1.5rem 1rem;
  }
}

/* ------------------------------------------------------------
 - Component
-------------------------------------------------------------- */
.c-button {
  position: relative;
  display: inline-block;
  text-align: center;
}

.c-grid {
  display: flex;
  flex-wrap: wrap;
}

.c-grid .-colum3 {
  width: 32%;
  margin-right: 2%;
}

.c-grid .-colum3:nth-child(3n) {
  margin-right: 0;
}

.c-grid__box {
  margin-bottom: 3rem;
}

.c-grid__img {
  width: 50%;
}

.c-grid__img.-left {
  margin-right: 3%;
  box-shadow: 16px 16px 0 rgba(25, 38, 67, 0.2);
}

.c-grid__img.-right {
  margin-left: 3%;
  box-shadow: -16px 16px 0 rgba(25, 38, 67, 0.2);
}

.c-grid__textbox {
  width: 47%;
  max-width: 540px;
  align-self: center;
}

.c-box {
  padding: 2.5rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width:750px){
  .c-grid{
    align-items: flex-start;
  }

  .c-grid .-colum3 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .c-grid__box {
    margin-bottom: 3rem;
  }

  .c-grid__img {
    order: 0;
    width: 80%;
  }

  .c-grid__img.-left {
    margin-right: auto;
  }

  .c-grid__img.-right {
    margin-left: auto;
  }

  .c-grid__textbox {
    order: 1;
    width: 100%;
    max-width: auto;
    margin-top: 1.5rem;
  }

  .c-box {
    padding: 1.5rem;
  }
}

/* ------------------------------------------------------------
 - Object
-------------------------------------------------------------- */
/* header */
.p-header__logo {
  display: inline-block;
  margin: 24px 16px;
}

.p-header__logo .-link {
  display: inline-block;
  vertical-align: middle;
}

.p-header__logo .-img {
  width: auto;
  height: 33px;
}

.p-header__logo .-text {
  display: inline-block;
  margin-left: 1rem;
  color: #070F21;
  font-size: 1.75em;
  font-weight: bold;
  vertical-align: middle;
}

.p-hamburgerBtn {
  display: none;
}

.p-globalNav {
  float: right;
  margin-right: 268px;
}

.p-globalNav__item {
  float: left;
  padding-right: 1rem;
}

.p-globalNav__link {
  display: inline-block;
  font-size: .875em;
  font-weight: bold;
  line-height: 80px;
}

.p-header__button-wrap {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}

.p-header__button-item {
  float: left;
}

.p-header__button {
  width: 130px;
  color: #fff !important;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 80px;
}

.p-header__button.-entry {
  background-color: #213257;
}

.p-header__button.-interview {
  background-color: #384665;
}

@media screen and (max-width:1155px) {
  .p-header__logo .-img {
    height: 30px;
  }

  .p-header__logo .-text {
    font-size: 1.25em;
  }

  .p-globalNav {
    margin-right: 180px;
  }

  .p-globalNav__link {
    font-size: .75em;
  }

  .p-header__button {
    width: 90px;
    font-size: .875em;
  }
}

@media screen and (max-width:940px) {
  .p-hamburgerBtn {
    display: block;
    position: relative;
    float: right;
    margin-right: 180px;
    width: 80px;
    height: 80px;
  }

  .p-hamburger__line {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 3px;
    background-color: #070F21;
    transition: .3s;
  }

  .p-hamburger__line::before,
  .p-hamburger__line::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #070F21;
    transition: .3s;
  }

  .p-hamburger__line::before {
    top: -8px;
  }

  .p-hamburger__line::after {
    top: 8px;
  }

  .is-show .p-hamburger__line{
    background-color: transparent;
  }

  .is-show .p-hamburger__line::before{
    transform: rotate(-45deg);
    top: 0;
  }

  .is-show .p-hamburger__line::after{
    transform: rotate(45deg);
    top: 0;
  }

  .p-globalNav__inner {
    float: none;
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    margin-right: 0;
    background-color: #fff;
    transition: .5s;
  }

  .is-show .p-globalNav__inner{
    right: 0;
  }

  .p-globalNav__item {
    float: none;
    padding: 0;
  }

  .p-globalNav__link {
    width: 100%;
    padding: 0 2rem;
    color: #070F21;
    font-size: 1em;
    line-height: 60px;
  }
}

@media screen and (max-width:750px) {
  .p-header__logo {
    margin: 14px .5rem;
  }

  .p-header__logo .-link{
    vertical-align: sub;
  }

  .p-header__logo .-img {
    height: 20px;
  }

  .p-header__logo .-text {
    margin-left: .5rem;
    font-size: .875em;
  }

  .p-hamburgerBtn {
    margin-right: 120px;
    width: 60px;
    height: 50px;
  }

  .p-hamburger__line {
    width: 20px;
    height: 2px;
  }

  .p-hamburger__line::before {
    top: -5px;
  }

  .p-hamburger__line::after {
    top: 5px;
  }

  .p-header__button {
    width: 60px;
    font-size: .75rem;
    line-height: 50px;
  }

  .p-globalNav__inner{
    top: 50px;
  }

  .p-globalNav__link {
    font-size: .875em;
  }
}

@media screen and (max-width:346px) {
  .p-hamburgerBtn {
    margin-right: 100px;
    width: 50px;
  }

  .p-header__button {
    width: 50px;
    font-size: .625em;
  }
}

/* footer */
.p-footer__copy {
  color: #fff;
  text-align: right;
  font-size: .875em;
}

@media screen and (max-width:750px){
  .p-footer__copy{
    font-size: .75rem;
  }
}

/* common */
.p-button__primary {
  width: 200px;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 2.25;
  pointer-events: auto;
}

.p-button__primary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(-45deg);
}

.p-button__primary.-wh {
  background-color: #fff;
  color: #070F21;
}

.p-button__primary.-wh::after {
  border-right: 2px solid #070F21;
  border-bottom: 2px solid #070F21;
}

.p-button__primary.-bl {
  background-color: #070F21;
  color: #fff;
}

.p-button__primary.-bl::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.p-button__primary.-clea {
  border: 1px solid #fff;
  color: #fff;
}

.p-button__primary.-clea::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.p-button__wrap {
  margin-top: 6.5rem;
  padding: 4.5rem 0;
  background-color: #192643;
}

.p-button__inner {
  display: flex;
  justify-content: center;
}

.p-button__item {
  width: 40%;
  max-width: 400px;
}

.p-button__item+.p-button__item {
  margin-left: 4%;
}

.p-button__secondary {
  width: 100%;
  background-color: #fff;
  color: #070F21;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 80px;
}

.p-button__secondary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 3px solid #070F21;
  border-bottom: 3px solid #070F21;
}

.p-heading__box {
  display: flex;
  height: 186px;
  margin-bottom: 5rem;
  background: -moz-linear-gradient(300deg, #192643, #192643 45%, #fff 45%, #fff);
  background: -webkit-linear-gradient(300deg, #192643, #192643 45%, #fff 45%, #fff);
  background: linear-gradient(300deg, #192643, #192643 45%, #fff 45%, #fff);
}

.p-heading__primary {
  display: flex;
  align-items: center;
  width: 50%;
  height: 186px;
  color: #070F21;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.5;
}

.p-heading__primary .-small {
  margin-left: 1.5rem;
  font-size: 0.6em;
}

.p-heading__secondary {
  margin-bottom: 2rem;
  text-align: center;
  color: #070F21;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.5;
}

.p-heading__secondary .-marker {
  padding: 0 4px 4px;
  background: -moz-linear-gradient(#fff 50%, rgba(25, 38, 67, 0.2) 0);
  background: -webkit-linear-gradient(#fff 50%, rgba(25, 38, 67, 0.2) 0);
  background: linear-gradient(#fff 50%, rgba(25, 38, 67, 0.2) 0);
}

.p-heading__third {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
  padding-left: 6.5rem;
  color: #070F21;
}

.p-heading__third::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 80px;
  height: 3px;
  background-color: #54607C;
}

.p-heading__third .-en {
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 2em;
  font-weight: bold;
}

.p-heading__third .-ja {
  margin-left: 1.5rem;
  font-size: 1.25em;
  font-weight: bold;
}

.p-heading__fourth {
  margin-bottom: 1.5rem;
  color: #070F21;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.5;
}

.p-box__title {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.125em;
  font-weight: bold;
}

.p-box__title .-small {
  font-size: .875rem;
}

.p-bnr__wrap {
  margin-top: 6.5rem;
}

.p-button__wrap+.p-bnr__wrap {
  margin-top: 0;
}

.p-bnr {
  position: relative;
  width: 50%;
  height: 230px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-bnr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(7, 15, 33, 0.3);
  width: 100%;
  height: 100%;
  transition: .3s;
}

.p-bnr.-job {
  background-image: url(../img/common/bnr01.jpg);
}

.p-bnr.-strengths {
  background-image: url(../img/common/bnr02.jpg);
}

.p-bnr.-interview {
  background-image: url(../img/common/bnr06.png);
}

.p-bnr.-culture {
  background-image: url(../img/common/bnr04.jpg);
}

.p-bnr.-recruit {
  background-image: url(../img/common/bnr05.jpg);
}

.p-bnr__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-bnr__title {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
}

@media screen and (max-width:750px){
  .p-button__primary {
    width: 100%;
    max-width: 200px;
    font-size: .875em;
  }

  .p-button__primary::after {
    right: 8px;
    width: 8px;
    height: 8px;
  }

  .p-button__primary.-cl{
  }

  .p-button__wrap {
    margin-top: 6.5rem;
    padding: 3rem 0;
    background-color: #192643;
  }

  .p-button__inner {
    flex-direction: column;
  }

  .p-button__item {
    width: 100%;
    margin: auto;
  }

  .p-button__item+.p-button__item {
    margin-left: 0;
    margin-top: 1rem;
  }

  .p-button__secondary {
    width: 100%;
    font-size: 1em;
    line-height: 60px;
  }

  .p-button__secondary::after {
    width: 12px;
    height: 12px;
  }

  .p-heading__box {
    height: 90px;
    margin-bottom: 2.5rem;
    background: -moz-linear-gradient(300deg, #192643, #192643 40%, #fff 40%, #fff);
    background: -webkit-linear-gradient(300deg, #192643, #192643 40%, #fff 40%, #fff);
    background: linear-gradient(300deg, #192643, #192643 40%, #fff 40%, #fff);
  }

  .p-heading__primary {
    flex-direction: column;
    align-items: flex-start;
    width: 55%;
    height: auto;
    font-size: 1.25em;
  }

  .p-heading__primary .-small {
    display: block;
    margin-left: 0;
    margin-top: .5rem;
    font-size: 0.6em;
  }

  .p-heading__secondary {
    font-size: 1.125em;
  }

  .p-heading__secondary .-marker {
    padding: 0 4px 4px;
    background: -moz-linear-gradient(#fff 50%, rgba(25, 38, 67, 0.2) 0);
    background: -webkit-linear-gradient(#fff 50%, rgba(25, 38, 67, 0.2) 0);
    background: linear-gradient(#fff 50%, rgba(25, 38, 67, 0.2) 0);
  }

  .p-heading__third {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
  }

  .p-heading__third::before {
    width: 16px;
    height: 2px;
  }

  .p-heading__third .-en {
    font-size: 1.25em;
  }

  .p-heading__third .-ja {
    margin-left: .5rem;
    font-size: 1em;
    font-weight: bold;
  }

  .p-heading__fourth {
    margin-bottom: 1rem;
    font-size: 1em;
  }

  .p-box__title {
    margin-bottom: 1.5rem;
    font-size: 1em;
  }

  .p-box__title .-small {
    font-size: .75rem;
  }

  .p-bnr__wrap {
    margin-top: 4rem;
  }

  .p-bnr {
    width: 100%;
    height: 140px;
  }

  .p-bnr__title {
    margin-bottom: 1rem;
    font-size: 1em;
  }
}

/* top */
.p-top__hero {
  position: relative;
  background-image: url(../img/top/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.p-top__hero::before {
  content: "";
  display: block;
  padding-top: 50.2928258%;
}

.p-top__copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48%;
  font-family: sans-serif;
}

.p-top__link{
  transform: opacity .3s;
}

.p-top__link-item {
  position: relative;
  margin-top: 5rem;
}

.p-top__link-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.p-top__link-item.-left::before {
  background: -moz-linear-gradient(290deg, transparent, transparent 60%, rgba(7, 15, 33, 0.3) 60%, rgba(7, 15, 33, 0.3));
  background: -webkit-linear-gradient(290deg, transparent, transparent 60%, rgba(7, 15, 33, 0.3) 60%, rgba(7, 15, 33, 0.3));
  background: linear-gradient(290deg, transparent, transparent 60%, rgba(7, 15, 33, 0.3) 60%, rgba(7, 15, 33, 0.3));
}

.p-top__link-item.-right::before {
  background: -moz-linear-gradient(110deg, transparent, transparent 60%, rgba(7, 15, 33, 0.3) 60%, rgba(7, 15, 33, 0.3));
  background: -webkit-linear-gradient(110deg, transparent, transparent 60%, rgba(7, 15, 33, 0.3) 60%, rgba(7, 15, 33, 0.3));
  background: linear-gradient(110deg, transparent, transparent 60%, rgba(7, 15, 33, 0.3) 60%, rgba(7, 15, 33, 0.3));
}

.p-top__link-item.-interview::before {
  background-color: rgba(7, 15, 33, 0.3);
}

.p-top__link-item::after {
  position: absolute;
  bottom: -20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 100px;
  font-weight: bold;
  pointer-events: none;
  z-index: 10;
}

.p-top__link-item.-job::after {
  content: "ABOUT";
  right: 0;
}

.p-top__link-item.-strengths::after {
  content: "STRENGTHS";
  left: 0;
}

.p-top__link-item.-interview::after {
  content: "INTERVIEW";
  right: 0;
}

.p-top__link-item.-culture::after {
  content: "DATA";
  left: 0;
}

.p-top__link-item.-recruit::after {
  content: "RECRUIT";
  right: 0;
}

.p-top__link-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 1.5rem;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.-left .p-top__link-box {
  left: 5%;
}

.-right .p-top__link-box {
  right: 5%;
}

.-interview .p-top__link-box {
  right: 5%;
}

.p-top__link-title {
  margin-bottom: 2.5rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width:750px){
  .p-top__copy{
    width: 54%;
  }

  .p-top__link-item {
    margin-top: 2.5rem;
    overflow: hidden;
  }

  .p-top__link-item.-left::before {
    background: -moz-linear-gradient(290deg, transparent, transparent 45%, rgba(7, 15, 33, 0.3) 45%, rgba(7, 15, 33, 0.3));
    background: -webkit-linear-gradient(290deg, transparent, transparent 45%, rgba(7, 15, 33, 0.3) 45%, rgba(7, 15, 33, 0.3));
    background: linear-gradient(290deg, transparent, transparent 45%, rgba(7, 15, 33, 0.3) 45%, rgba(7, 15, 33, 0.3));
  }

  .p-top__link-item.-right::before {
    background: -moz-linear-gradient(110deg, transparent, transparent 45%, rgba(7, 15, 33, 0.3) 45%, rgba(7, 15, 33, 0.3));
    background: -webkit-linear-gradient(110deg, transparent, transparent 45%, rgba(7, 15, 33, 0.3) 45%, rgba(7, 15, 33, 0.3));
    background: linear-gradient(110deg, transparent, transparent 45%, rgba(7, 15, 33, 0.3) 45%, rgba(7, 15, 33, 0.3));
  }

  .p-top__link-item::after {
    bottom: -10px;
    font-size: 40px;
  }

  .-left .p-top__link-box {
    left: 0;
  }

  .-right .p-top__link-box {
    right: 0;
  }

  .-interview .p-top__link-box {
    right: 0;
  }

  .p-top__link-title {
    margin-bottom: .5rem;
    font-size: 1rem;
  }

  .p-top__link-box .p-button__primary{
    width:130px;
  }
}

/* job */
.p-schedule {
  align-self: center;
  width: 65%;
  margin-left: 5%;
}

.p-schedule__item+.p-schedule__item {
  padding-top: 1.5rem;
}

.p-schedule__inner{
  align-items: initial;
}

.p-schedule__time {
  position: relative;
  width: 100px;
  padding-right: 2rem;
}

.p-schedule__time::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background-color: #54607C;
}

.p-schedule__time::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 14px;
  width: 1px;
  height: calc(100% + 14px);
  background-color: #54607C;
}

.p-schedule__item:last-child .p-schedule__time::after {
  content: none;
}

.p-schedule__detail {
  position: relative;
  width: 70%;
  padding-left: 3rem;
}

.p-schedule__imgbox {
  width: 25%;
  margin-left: auto;
  margin-right: 5%;
}

.p-schedule__img+.p-schedule__img {
  margin-top: 1rem;
}

@media screen and (max-width:750px){
  .p-schedule {
    align-self: center;
    width: 100%;
    margin-left: 0;
  }

  .p-schedule__item+.p-schedule__item {
    padding-top: 1.5rem;
  }

  .p-schedule__time {
    position: relative;
    width: 30%;
    padding-right: 2rem;
  }

  .p-schedule__detail {
    width: 70%;
    padding-left: 2rem;
    font-size: .875rem;
  }

  .p-schedule__imgbox {
    display: flex;
    width: 100%;
    margin-right: 0;
    margin-top: 1rem;
  }

  .p-schedule__img{
    width: 48%;
  }

  .p-schedule__img+.p-schedule__img {
    margin-top: 0;
    margin-left: auto;
  }
}

/* ケイアイの強み */
.p-strengths__img {
  width: 57%;
  align-self: flex-start;
}

.p-strengths__textbox {
  width: 40%;
}

.p-strengths__textbox.-left {
  margin-right: auto;
}

.p-strengths__textbox.-right {
  margin-left: auto;
}

.p-flow__box {
  width: 57%;
}

.p-flow__title {
  padding: 1.125rem;
  background-color: #070F21;
  color: #fff;
  text-align: center;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.5;
}

.p-slider__wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: auto;
  box-sizing: content-box;
  margin: 0 auto .5em;
}

.p-slider__wrap::before {
  content: "";
  display: block;
  padding-top: 66.7%;
}

.p-slider__main {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.p-slider__list {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.p-slide__thum {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.p-thum__list {
  padding: 0 0 0 2px;
  text-align: right;
  width: calc(100% / 7);
  cursor: pointer;
}

.p-thum__list.active {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha( opacity=50 )";
}

.p-award {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.p-award__title {
  width: 25%;
  text-align: center;
}

.p-award__list {
  width: 70%;
  margin-left: auto;
  line-height: 1.5;
}

.p-archive__box {
  margin-bottom: 3rem;
}

.p-archive__wrap {
  justify-content: space-between;
}

.p-archive__list {
  width: 24.5%;
}

.p-archive__title {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: bold;
}

.p-archive__item {
  font-size: .875em;
  line-height: 1.7;
}

.p-attention {
  margin-top: .5rem;
  text-align: right;
  font-size: .75em;
  line-height: 1.25;
}

.p-strengths__img-wrap {
  justify-content: space-between;
  align-items: flex-start;
}

.u-text+.p-strengths__img-wrap {
  margin: 3rem 0;
}

.p-strengths__img-wrap .-w250 {
  width: 20.57%;
}

.p-strengths__img-wrap .-w300 {
  width: 25.25%;
}

.p-strengths__img-wrap .-w450 {
  width: 39%;
}

.p-strengths__img-wrap .-w575 {
  width: 48%;
}

@media screen and (max-width:750px){
  .p-strengths__img {
    order: 0;
    width: 100%;
  }

  .p-strengths__textbox {
    order: 1;
    width: 100%;
    margin-top: 1rem;
  }

  .p-strengths__textbox.-left {
    margin-right: auto;
  }

  .p-strengths__textbox.-right {
    margin-left: auto;
  }

  .p-flow__box {
    width: 100%;
  }

  .p-flow__title {
    padding: 1.125rem;
    font-size: .875em;
  }

  .p-award__title {
    width: 100%;
    margin-bottom: 1rem;
  }

  .p-award__list {
    width: 100%;
    font-size: .875rem;
  }

  .p-archive__box {
    margin-bottom: 3rem;
  }

  .p-archive__wrap {
    justify-content: space-between;
  }

  .p-archive__list {
    width: 100%;
  }

  .p-archive__list + .p-archive__list{
    margin-top: 1rem;
  }

  .p-archive__title {
    font-size: .875rem
  }

  .p-archive__item {
    font-size: .875em;
  }

}

/* インタビュー */
.p-card {
  width: 32%;
  margin-right: 1.5%;
  margin-bottom: 2.5rem;
  padding: 1rem;
  border: 2px solid #54607C;
  text-align: center;
  overflow: hidden;
  transition: .3s;
}

.p-card a{
  display: inline-block;
  width: 100%;
  height: 100%;
}

.p-card:nth-child(3n) {
  margin-right: 0;
}

.p-card__num {
  float: left;
  color: #070F21;
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 3em;
  font-weight: bold;
}

.p-card__detail {
  float: right;
  margin-top: 6px;
  text-align: right;
  color: #070F21;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.25;
}

.p-card__avatar {
  margin: 0 0 1.5rem;
}

.p-interview__read {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 5rem;
  color: #070F21;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.p-interview__details {
  position: relative;
  align-items: flex-start;
  padding: 3rem;
}

.p-interview__details.-left {
  background: -moz-linear-gradient(290deg, transparent, transparent 20%, rgba(25, 38, 67, 0.1) 20%, rgba(25, 38, 67, 0.1));
  background: -webkit-linear-gradient(290deg, transparent, transparent 20%, rgba(25, 38, 67, 0.1) 20%, rgba(25, 38, 67, 0.1));
  background: linear-gradient(290deg, transparent, transparent 20%, rgba(25, 38, 67, 0.1) 20%, rgba(25, 38, 67, 0.1));
}

.p-interview__details.-right {
  background: -moz-linear-gradient(110deg, transparent, transparent 20%, rgba(25, 38, 67, 0.1) 20%, rgba(25, 38, 67, 0.1));
  background: -webkit-linear-gradient(110deg, transparent, transparent 20%, rgba(25, 38, 67, 0.1) 20%, rgba(25, 38, 67, 0.1));
  background: linear-gradient(110deg, transparent, transparent 20%, rgba(25, 38, 67, 0.1) 20%, rgba(25, 38, 67, 0.1));
}

.p-interview__details+.p-interview__details {
  margin-top: 6.5rem;
}

.p-interview__img {
  width: 52%;
  margin-top: -6rem;
}

.-left .p-interview__img {
  margin-left: auto;
}

.-right .p-interview__img {
  margin-right: auto;
}

.p-interview__textbox {
  width: 45.5%;
  max-width: 544px;
  margin: auto;
}

.p-interview__slider .p-card {
  margin-left: 16px;
  margin-right: 16px;
}

.p-prevArrow {
  position: absolute;
  top: 50%;
  left: -3%;
  transform: translateY(-50%);
}

.p-nextArrow {
  position: absolute;
  top: 50%;
  right: -3%;
  transform: translateY(-50%);
}

.p-prevArrow__line {
  display: block;
  width: 18px;
  height: 18px;
  border-left: 3px solid #54607C;
  border-top: 3px solid #54607C;
  transform: rotate(-45deg);
}

.p-nextArrow__line {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 3px solid #54607C;
  border-bottom: 3px solid #54607C;
  transform: rotate(-45deg);
}

@media screen and (max-width:750px){
  .p-card {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 1rem;
    padding: .5rem;
  }

  .p-card:nth-child(even) {
    margin-right: 0%;
  }

  .p-card:nth-child(odd) {
    margin-right: 2%;
  }

  .p-card__num {
    font-size: 1.5em;
  }

  .p-card__detail {
    margin-top: 0;
    font-size: .75em;
  }

  .p-card__avatar {
    margin: 0 0 1rem;
  }

  .p-interview__read {
    margin: 0 auto 8rem;
    font-size: 1.125rem;
    font-weight: bold;
  }

  .p-interview__details {
    position: relative;
    align-items: flex-start;
    padding: 1.5rem 5%;
  }

  .p-interview__details.-left {
    background: -moz-linear-gradient(172deg, transparent, transparent 10%, rgba(25, 38, 67, 0.1) 10%, rgba(25, 38, 67, 0.1));
    background: -webkit-linear-gradient(172deg, transparent, transparent 10%, rgba(25, 38, 67, 0.1) 10%, rgba(25, 38, 67, 0.1));
    background: linear-gradient(172deg, transparent, transparent 10%, rgba(25, 38, 67, 0.1) 10%, rgba(25, 38, 67, 0.1));
  }

  .p-interview__details.-right {
    background: -moz-linear-gradient(172deg, transparent, transparent 10%, rgba(25, 38, 67, 0.1) 10%, rgba(25, 38, 67, 0.1));
    background: -webkit-linear-gradient(172deg, transparent, transparent 10%, rgba(25, 38, 67, 0.1) 10%, rgba(25, 38, 67, 0.1));
    background: linear-gradient(172deg, transparent, transparent 10%, rgba(25, 38, 67, 0.1) 10%, rgba(25, 38, 67, 0.1));
  }

  .p-interview__details+.p-interview__details {
    margin-top: 8rem;
  }

  .p-interview__img {
    order: 0;
    width: 80%;
    margin-top: -6rem;
  }

  .-left .p-interview__img {
    margin-left: auto;
  }

  .-right .p-interview__img {
    margin-right: auto;
  }

  .p-interview__textbox {
    order: 1;
    width: 100%;
    max-width: 544px;
    margin: 1.5rem auto 0;
  }

  .p-interview__slider .p-card {
    margin-left: 8px;
    margin-right: 8px;
  }

  .p-prevArrow {
    position: absolute;
    top: 50%;
    left: -3%;
    transform: translateY(-50%);
  }

  .p-nextArrow {
    position: absolute;
    top: 50%;
    right: -3%;
    transform: translateY(-50%);
  }

  .p-prevArrow__line {
    display: block;
    width: 12px;
    height: 12px;
    border-left: 3px solid #54607C;
    border-top: 3px solid #54607C;
    transform: rotate(-45deg);
  }

  .p-nextArrow__line {
    display: block;
    width: 12px;
    height: 12px;
    border-right: 3px solid #54607C;
    border-bottom: 3px solid #54607C;
    transform: rotate(-45deg);
  }
}

/* データで見るKEIAI */
.p-data__list {
  width: 50%;
  border: 40px solid transparent;
}

.p-data__wrap {
  margin: -40px;
}

.p-data__title {
  position: relative;
  margin-bottom: 1em;
  padding-bottom: 4px;
  border-bottom: 5px solid #54607C;
  color: #070F21;
  font-size: 1.75em;
  font-weight: bold;
  letter-spacing: 2px;
}

.p-data__title .-small {
  position: absolute;
  right: 0;
  bottom: 4px;
  font-size: 0.5em;
  line-height: 1.25;
}

#page-content {
  overflow: hidden;
}

@media screen and (max-width:750px){
  .p-data__list {
    width: 100%;
    border: none;
  }

  .p-data__list + .p-data__list{
    margin-top: 3rem;
  }

  .p-data__wrap {
    margin: 0;
  }

  .p-data__title {
    border-bottom: 3px solid #54607C;
    font-size: 1.125em;
  }

  .p-data__title .-small {
    bottom: 4px;
    font-size: 0.5em;
  }
}

/* 募集要項 */
.p-recruit__hero {
  position: relative;
  margin-bottom: 2.5rem;
  background-image: url(../img/recruit/hero.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.p-recruit__hero::before {
  content: "";
  display: block;
  padding-top: 55.75%;
}

.p-recruit__read {
  position: absolute;
  top: 50%;
  left: -4%;
  transform: translateY(-50%);
  width: 52%;
}

.p-recruit__item {
  margin: 0 3rem 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #54607C;
}

.p-recruit__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.p-recruit__cat {
  width: 20%;
  font-size: 1.125rem;
}

.p-recruit__detail {
  width: 80%;
  font-size: 1.125rem;
  line-height: 1.5;
}

.p-recruit__link {
  text-decoration: underline;
}

@media screen and (max-width:750px){
  .p-recruit__read {
    width: 56%;
  }

  .p-recruit__item {
    margin: 0 0 2rem;
  }

  .p-recruit__cat {
    width: 100%;
    margin-bottom: .5rem;
    font-size: 1rem;
  }

  .p-recruit__detail {
    width: 100%;
    font-size: .875rem;
  }

}


@media screen and (min-width:1024px){
  .p-globalNav__link:hover{
    opacity: .7;
  }
  .p-header__button:hover{
    background-color: #070F21;
  }

  .p-button__primary.-wh:hover,
  .p-button__secondary:hover{
    background-color: #070F21;
    color: #fff;
  }
  .p-button__primary.-wh:hover::after,
  .p-button__secondary:hover::after{
    border-color: #fff
  }

  .p-top__link:hover{
    opacity: .85;
  }

  .p-card:hover{
    box-shadow: 3px 3px 0 #54607C;
  }

  .p-bnr:hover::before {
    background-color: rgba(7, 15, 33, 0.4);
  }

  .p-recruit__link:hover{
    opacity: 0.7;
  }

}

/* ------------------------------------------------------------
 - Utility
-------------------------------------------------------------- */
.u-visuallyhidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

.u-text {
  font-size: 1em;
  line-height: 2;
}

.u-text.-center {
  text-align: center;
}

@media screen and (max-width:750px) {
  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

  .u-text{
    font-size: .875rem;
  }
}
