@charset "UFT-8";

body {
  width: 100%;
  font-family: "Noto Sans JP", "Noto serif JP";
  margin: 0 auto;
}

main {
  margin: 0 auto;
}

a{
  text-decoration: none;
}

li {
  list-style-type: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}


/* FV画像の配置-pc版 */
.first-v_content {
  position: absolute;
  background: url('../img/txt.png');
  width: 100%;
  padding-left: 200px;  /* 左側の余白を調整 */
}

.first-v {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: url('../img/mv_3840_2272.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
}

.first-v__img {
  position: absolute;
  width: 45%;
  height: auto;
  top: 32%;
  left: 5%;
}

/* スクロールダウン全体の場所 */
.scrolldown {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* スクロールテキストの描写 */
.scrolldown span{
  display: block;
  margin-bottom: 8px;
  font-family: Noto Sans JP;
  color: #fff;
  font-size: 12px;
  font-weight: 100;
  letter-spacing: 0.1em;
}

/* 線の描写 */
.scrolldown::after{
  content: "";
  /*描画位置*/
  position: absolute;
  left: 50%;
  /*線の形状*/
  bottom: -40px;
  width: 0.5px;
  height: 30px;
  background: #ffffff;
  transform: translateX(-50%);
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 2.0s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	30%{
		height:0;
		top:30px;
		opacity: 0;
	}
	50%{
		height:50px;
		opacity: 1;
	}
	100%{
		height:0;
		top:120px;
		opacity: 0;
	}
}

/* コンテンツ見出し一覧 */
.heading {
  margin-bottom: 80px;
}

.heading-inner {
  display: flex;
  flex-direction: column;
}

.sub-heading {
  position: relative;
  font-size: 20px;
  font-weight: 200;
  margin-top: 120px;
  margin-bottom: 16px;
  color: #20337A;
}

/* 見出し-横ライン */
.sub-heading::before {

  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -22vw;
  width: 20vw;
  height: 1px;
  background-color: #20337A;
}

.main-heading {
  font-family: "Noto serif JP";
  font-size: 40px;
  line-height: 150%;
  color: #20337A;
}

/* ourvisionの見出しだし分け */
.ourvision__head-pc{
  display: block;
}
.ourvision__head-sp{
    display: none;
}

/* 見出し-カラー白 */
.sub-heading-white {
  position: relative;
  font-size: 20px;
  font-weight: 200;
  margin-top: 120px;
  margin-bottom: 16px;
  color: #ffffff;
}

/* 見出し-横ライン */
.sub-heading-white::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -22vw;
  width: 20vw;
  height: 1px;
  background-color: #ffffff;
}

.main-heading-white {
  font-family: "Noto serif JP";
  font-size: 40px;
  line-height: 150%;
  color: #ffffff;
}



.dli-chevron-down {
  margin-top: 8px;
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  line-height: 1;
  width: 0.7em;
  height: 0.7em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

/* 私たちについて-pc版*/
#ourvision {
  position: relative;
  width: 100vw;
  background: url('../img/ourvision_pc.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  scroll-margin-top: 0px;
}

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

.heading-ourvision {
  margin-bottom: 80px;
}

.vision-description__01 {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.05em;
  margin-top: 80px;
  margin-bottom: 0;
}

.vision-description__02 {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.05em;
  margin-top: 32px;
  margin-bottom: 120px;
}


/* 働き方・制度-pc版 */
#workstylesystem {
  background-color: #ffffff;
  scroll-margin-top: 0px;
  display: flex;
}

/* カード親要素 */
.card-wrap {
  margin-top: 80px;
  margin-bottom: 120px;
  display: flex;
  justify-content:space-between;
}

.card {
  position: relative;
  border: #20337A 1px solid;
  height: auto;
  width: 31.5%;
}

.card__title {
  margin-top: 56px;
  margin-bottom: 28px;
  color: #20337A;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

.card__img {
  margin: 0 auto;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__text {
  color: #20337A;
  padding: 32px;
  font-size: 16px;
  max-width: 80%;
  margin: 0 auto;
}

/* 採用情報-pc版 */

#recruit {
/* display: block; */
width: 100vw;
background: url('../img/recruit_3840_1868.jpg');
background-size: cover;
background-position: center;
scroll-margin-top: 0px;
overflow: hidden;
}

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

    .recruit-content {
      /* display: flex; */
      position: relative;
      width: 100%
    }

    .job {
      /* margin-top: 120px auto; */
      margin: 0 5% 0 auto;
      width: 60%;
      color: white;
      row-gap: 88px;
      margin-bottom: 120px;
      display: grid;
    }

    .job_type {
      font-size: 24px;
      font-weight: 600;
    }

    .recruit_list {
      right: 0;
      list-style-type: none;
      /* color: white; */
      font-size: 18px;
      margin-top: 32px;

    }

    .recruit_item {
      display: flex;
      padding: 6px 32px;
      border-top: 1px solid white;
      transition-duration: 150ms;
      flex-direction: column;
    }

    .recruit_item:last-child {
      border-bottom: 1px solid white;
    }

    .recruit_item a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-decoration: none;
      /* width: 644px; */
      height: 72px;
    }

    .stickarrow {
      width: 32px;
      height: 12px;
      border-bottom: 2px solid #ffffff;
      border-right: 2px solid #ffffff;
      transform: skew(45deg);
      transition: background-color 0.3s ease;
    }

    .stickarrow::after {
      width: 36px;
      height: 12px;
      border-bottom: 2px solid #ffffff;
      border-right: 2px solid #ffffff;
      transform: skew(45deg);
      margin: auto 0;
      transition: border-color 0.3s ease;
    }

    .recruit_item:hover{
      background-color: #FFFFFF;
    }

    .recruit_item:hover a {
      color: #20337A;
      font-weight: bold;
    }
    .recruit_item:hover .stickarrow {
      border-color: #36F1E1;
    }

    .recruit_item:hover .stickarrow::after {
      border-color: #36F1E1;
    }


/* 会社メッセージ */
#corporatemessage {
  position: relative;
  width: 100%;
  background: url('../img/message_bg_pc.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  scroll-margin-top: 0px;
}

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

.ceo-content {
  justify-content: space-between;
  align-items: flex-start;
}

.heading {
  flex: 0 0 auto;
}

.sub-heading-white {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.main-heading-white {
  font-size: 36px;
  color: #ffffff;
  margin: 0;
}

.ceo-text {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 20px;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 120px;
}

.message {
  font-size: 16px;
  line-height: 1.8;
  padding-bottom: 72px;
}

.message__text-head {
  padding-top: 16px;
  font-weight: bold;
  display: block;
}

.message__text-in {
  display: inline-block;
  padding-left: 30px;
}

.prof {
  font-family: Noto serif JP;
  display: flex;
  text-align: right;
  margin: 0 0 0 auto;
  align-self: end;
  align-items: center;
}

.position {
  font-size: 16px;
  margin-right: 20px;
  letter-spacing: 0.05em;
}

.name {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: normal;
  margin: 0;
}

/* 会社概要-pc版 */

#corporate_profile{
  scroll-margin-top: 0px;
  display: flex;
}

/*テーブル*/
.table__color{
  margin-top: 80px;
  font-family: 'Noto sans JP';
  font-size: 16px;
  text-align: left;
  border-left: #485A9C 2px solid;
  border-spacing:0;
}

.column-1{
  font-weight: 600;
  background-color: #FAFAFD;
  padding: 28px;
  width: 155px;
  border-bottom: 1px solid #F5F5FB;
}

.column-2{
  font-weight: 400;
  background-color: #FFFFFF;
  padding: 28px;
  border-top: #EEEEF0 solid 1px;
  border-right: #EEEEF0 solid 1px;
}

.row-7 .column-2  {
  border-bottom: #EEEEF0 solid 1px;
}

/* お知らせ-pc版 */
.news__list-item {
  background-color: #FFFFFF;
  padding: 34px 0;
  border-top: #989898 solid 1px;
  border-bottom: #989898 solid 1px;
  display: flex;
}

.news__list {
  padding: 0;
}

.news__list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 120px;
}

.news__list-title {
  font-size: 16px;
  color: #20337A;
  position: center;
  margin: auto;
}

/* pcフッター */

footer{
  padding: 16px;
  background-color: #F4F4F4;
}

.footer__void-class img{
  display: inline;
  height: 12px;
  /* flex-direction: row;
  align-items: center; */
}

.footer__text-flex{
  display: flex;
  justify-content: flex-end;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}

.footer__menu-text{
  /* display: flex; */

  flex-direction: column;
}

footer span{
  font-size: 12px;
  padding-right: 4px;
  color: #485A9C;
}

footer small{
  font-size: 14px;
  font-weight: 300;
  color: #a9a9a9;
}

footer img{
  padding-right: 24px;
}


/* 以下メディアクエリ-sp版 */
@media (max-width: 767px) {

/* コンテンツ幅一覧 */
.container,.container-ourvision,.container-recruit,.container-corporatemessage{
  max-width: 80%;
  margin: 0 auto;
}

/* 見出し */
.heading {
  margin-bottom: 20px;
}

.heading-ourvision {
  margin-bottom: 40px;
}

.sub-heading::before {
  content: none;
}

.sub-heading-white::before {
  content: none;
}


/* 画像SP版サイズ */
.first-v {
  background: url('../img/mv_750_1028.jpg');
}

#ourvision {
  background: url('../img/ourvision_sp.jpg');
}

#recruit {
  background: url('../img/recruit_750_964.jpg');
}

#corporatemessage {
  background: url('../img/message_bg_sp.jpg');
  background-size: cover
}


.first-v__img {
  position: absolute;
  width: 80%;
  top: 36%;
  left: 5%;
}

.scrolldown span {
  font-size: 70%;
  margin-bottom: 96px;
}

/* 見出し */
.main-heading, .main-heading-white {
  font-size: 20px;
}

.sub-heading, .sub-heading-white {
  font-size: 12px;
  margin: 40px 0 8px;
}

  /* ourvisionの見出しだし分け */
    .ourvision__head-pc{
      display: none;
    }
    .ourvision__head-sp{
        display: block;
    }

.vision-description__01, .vision-description__02 {
  margin: auto;
  font-size: 12px;
  letter-spacing: 0;
  br {
    display: none;
  }
  margin-bottom: 20px;
}

.vision-description__02 {
  margin-bottom: 40px;
}

/* カードリスト */
.card-wrap {
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.card {
  height: 50%;
  width: 100%;
}

.card__title {
  font-size: 16px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.card__img {
  width: 50%;
  padding-bottom: 50%; /* アスペクト比を保つ */
  height: 0;
  position: relative;
}

.card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card__text p {
  font-size: 12px;
  padding: 0;
  display: grid;
  place-items: center;
}


/* 採用情報 */

.recruit-content {
  display: inline-block;
}

.job{
  margin: 0 0 0 auto;
  width: 100%;
  row-gap: 52px;
}

.job_list:first-child{
  padding-top: 32px;
}

.job_list:last-child{
  margin-bottom: 70px;
}

.job_type{
  font-size: 16px;
}

.recruit_list {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.recruit_item {
  display: flex;
  padding: 16px 0;
}

.recruit_item a {
  padding: 12px 12px;
  height: 0;
}

.recruit_item {
  display: flex;
  border-top: 1px solid white;
  transition-duration: 150ms;
}

.recruit_item:last-child {
  border-bottom: 1px solid white;
}

.stickarrow {
  width: 24px;
  height: 8px;
}

/* 会社メッセージ */

.ceo-text {
  display: block;
  margin-bottom: auto;
}

.message {
  font-size: 12px;
  width: 100%;
  padding-bottom: 0px;
}

.message__text-in{
  padding-left: 20px;
}

.prof {
  justify-content:right
}

.position {
  font-size: 12px;
  margin-top: 10%;
  margin-bottom: 40px;
}

.name {
  font-size: 14px;
  margin-top: 10%;
  margin-bottom:  40px;
}

.table__color {
  margin-top: 0;
  font-size: 12px;
}

.column-1, .column-2 {
  padding: 16px;
}

.column-1{
  width: 105px;
}


/* お知らせ */
.news__list-item {
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 14px;
}

.news__list-title {
  font-size: 10px;
}

     /* sp版フッター */
  .footer{
      padding: 8px;
      background-color: #F4F4F4;
  }

  .footer__void-class img{
      display: inline;
      height: 10px;
      width: 12px;
  }

  .footer__menu-text{
      display: flex;
      justify-content: flex-end;
  }

  footer span{
      font-size: 10px;
      color: #485A9C;
      padding-right: 4px;
  }

  footer small{
      padding-left: 8px;
      color: #C5C5C5;
      font-size: 8px;
      font-weight: 300;
  }

  footer img{
      padding-right: 2px;
      height: 14px;
  }


}

@media (max-width: 767px) {

}