@charset "UTF-8";
/* Scss Document */
/*英字*/
/* Scss Document */
/*naga add*/
/* 下からフェードイン(初期値) */
.js-fadeUp, .js-fadeUpSlow {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* 下からフェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0s;
  /*開始を遅らせる */
}

.js-fadeUpSlow.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: .5s;
  /* 開始を遅らせる */
}

/* 左からフェードイン(初期値) */
.js-fadeIn, .js-fadeInSlow {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateX(-100px);
  /* 左に100pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* 左からフェードイン(スクロールした後) */
.js-fadeIn.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 100px右に移動する */
  transition-delay: 0s;
  /* 開始を遅らせる */
}

.js-fadeInSlow.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 100px右に移動する */
  transition-delay: .5s;
  /* 開始を遅らせる */
}

/* 用紙サイズの指定（A4） */
@page {
  margin: 8mm;
  size: 210mm 297mm;
  /* A4縦 */
}
@media print {
  /* 全体設定 */
  body {
    -webkit-print-color-adjust: exact;
    /* 印刷時でも背景色や背景画像を表示 */
    width: 1400px;
    /* 印刷時の全ページ幅を統一 */
    zoom: 0.8;
    /* なるべく多くのブラウザで切れないようにするため */
    /*no animation*/
  }
  body header {
    position: absolute !important;
    max-width: 1400px;
    width: 1400px !important;
  }
  body .header--flex {
    width: 1400px !important;
  }
  body .btnBox {
    display: none;
  }
  body #btn_pagetop {
    display: none;
  }
  body .js-fadeUp,
  body .js-fadeIn,
  body .js-fadeUpSlow,
  body .js-fadeInSlow {
    opacity: 1;
  }
  body .js-fadeIn,
  body .js-fadeInSlow {
    transform: translateX(0);
  }
  body .js-fadeUp,
  body .js-fadeUpSlow {
    transform: translateY(0);
  }
  body .js-fadeUp.is-view,
  body .js-fadeIn.is-view,
  body .js-fadeUpSlow.is-view,
  body .js-fadeInSlow.is-view {
    animation-name: none;
  }
}
.header {
  background-color: #ffefe7 !important;
  box-shadow: 0px 3px 3.7px 0.3px rgba(90, 90, 90, 0.1);
}

.mv {
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 100px auto 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 80px;
  }
}
.mv__bg {
  width: 100%;
  height: 220px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 40px;
  background-image: url("../img/recruit/bg_tmv.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media screen and (max-width: 479px) {
  .mv__bg {
    height: 160px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.mv__flex {
  width: 100%;
  height: 220px;
  margin: 0 auto;
  max-width: 1720px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 479px) {
  .mv__flex {
    height: 160px;
  }
}
.mv__cc {
  font: 400 60px/1.5 "Poiret One", sans-serif;
  color: #ff9a24;
  padding-left: 80px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 1279px) {
  .mv__cc {
    font-size: 48px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv__cc {
    font-size: 36px;
  }
}
@media screen and (max-width: 479px) {
  .mv__cc {
    padding-bottom: 60px;
  }
}
.mv__cc br {
  display: none;
}
@media screen and (max-width: 767px) {
  .mv__cc br {
    display: block;
  }
}
.mv__image {
  display: block;
  height: auto;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  right: 40px;
}
@media screen and (max-width: 1279px) {
  .mv__image {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv__image {
    width: 200px;
  }
}
@media screen and (max-width: 479px) {
  .mv__image {
    width: 180px;
  }
}
@media screen and (max-width: 329px) {
  .mv__image {
    width: 48%;
  }
}

/*背景がある場合は、背景を指定するdivでsectionを囲む*/
section:not(section section) {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 120px;
}
@media screen and (min-width: 1441px) {
  section:not(section section) {
    max-width: 1680px;
  }
}
@media screen and (max-width: 1279px) {
  section:not(section section) {
    padding: 0 40px;
  }
}
@media screen and (max-width: 479px) {
  section:not(section section) {
    padding: 0 15px;
  }
}

body section:first-of-type {
  margin-top: 50px;
}

body section:last-of-type {
  margin-bottom: 200px;
}

.hl {
  margin-top: 30px;
  /*this page only*/
}
.hl__title {
  font: 500 32px/1.5 "M PLUS 1", sans-serif;
  color: #1d1d1d;
  display: block;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 767px) {
  .hl__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 479px) {
  .hl__title {
    font-size: 24px;
  }
}
.hl__title2 {
  margin-top: 100px;
  text-align: center;
  font: 500 28px/1.5 "M PLUS 1", sans-serif;
  color: #ff9a24;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 10px 25px;
  background-color: #fffaec;
  border-bottom: 4px dotted #ff9a24;
}
@media screen and (max-width: 479px) {
  .hl__title2 {
    font-size: 22px;
    padding: 15px 10px;
  }
}
.hl__title3 {
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
  font: 500 20px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #ff9a24;
}
@media screen and (max-width: 767px) {
  .hl__title3 {
    padding-left: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 479px) {
  .hl__title3 {
    padding-left: 25px;
  }
}
.hl__title3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 39px;
  height: 100%;
  background-image: url("../img/common/headline-mark.png");
  background-size: 39px;
  background-repeat: no-repeat;
  background-position: top left;
}
@media screen and (max-width: 479px) {
  .hl__title3:before {
    width: 20px;
    background-size: 20px;
    background-position: top 6px left;
  }
}
@media screen and (max-width: 479px) {
  .hl__title3 {
    font-size: 18px;
  }
}
.hl__title3 br {
  display: block;
}
@media screen and (max-width: 479px) {
  .hl__title3 br {
    display: none;
  }
}

.msg {
  margin-top: 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 120px;
}
@media screen and (max-width: 1279px) {
  .msg {
    padding: 0 40px;
  }
}
@media screen and (max-width: 479px) {
  .msg {
    padding: 0 15px;
  }
}
.msg img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.bg-img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 60px auto 0;
  padding: 80px 120px 120px;
  background-image: url("../img/project/bg_image.jpg");
  background-size: cover;
  background-repeat: repeat;
  background-position: top left;
}
@media screen and (min-width: 1441px) {
  .bg-img {
    max-width: 1680px;
  }
}
@media screen and (max-width: 1279px) {
  .bg-img {
    padding: 40px 40px 80px;
  }
}
@media screen and (max-width: 767px) {
  .bg-img {
    background-size: contain;
  }
}
@media screen and (max-width: 479px) {
  .bg-img {
    padding: 30px 15px 60px;
  }
}

.secAbout {
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 50px 25px 100px;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 479px) {
  .secAbout {
    padding: 50px 15px 50px;
  }
}
.secAbout__cc {
  margin: 0 auto;
  text-align: center;
  font: 500 24px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #ff9a24;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.05em;
}
.secAbout__cc span {
  display: inline-block;
  border-bottom: 4px dotted #ff9a24;
}
@media screen and (max-width: 1279px) {
  .secAbout__cc span {
    padding-bottom: 3px;
  }
}
@media screen and (max-width: 479px) {
  .secAbout__cc {
    font-size: 18px;
  }
}
.secAbout__paragraph {
  margin-top: 50px;
  font: 500 16px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
}
@media screen and (max-width: 479px) {
  .secAbout__paragraph {
    font-size: 14px;
  }
}
.secAbout .flex {
  display: flex;
  margin-top: 80px;
  column-gap: 130px;
}
@media screen and (max-width: 1279px) {
  .secAbout .flex {
    column-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .secAbout .flex {
    display: block;
  }
}
.secAbout .flex--lt {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .secAbout .flex--lt {
    margin-bottom: 30px;
  }
}
.secAbout .flex--lt p {
  font: 500 16px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
}
@media screen and (max-width: 479px) {
  .secAbout .flex--lt p {
    font-size: 14px;
  }
}
.secAbout .flex--rt {
  flex-shrink: 0;
}
.secAbout .flex--rt img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .secAbout .flex--rt img {
    width: 240px;
  }
}

.secProject .pj__list {
  list-style: none;
  padding: 0;
  margin: 0 0 100px;
}
.secProject .pj__item {
  padding-left: 70px;
  position: relative;
  margin-top: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #c0c0c0;
}
@media screen and (max-width: 767px) {
  .secProject .pj__item {
    padding-left: 50px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 479px) {
  .secProject .pj__item {
    padding-left: 25px;
  }
}
.secProject .pj__item:last-child {
  margin-bottom: 0;
}
.secProject .pj__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 39px;
  height: 100%;
  background-image: url("../img/common/headline-mark.png");
  background-size: 39px;
  background-repeat: no-repeat;
  background-position: top left;
}
@media screen and (max-width: 479px) {
  .secProject .pj__item:before {
    width: 20px;
    background-size: 20px;
    background-position: top 6px left;
  }
}
.secProject .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 20px;
}
@media screen and (max-width: 767px) {
  .secProject .flex {
    display: block;
  }
}
.secProject .flex__lt {
  flex: 1 1 auto;
  font: 500 18px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
  margin-bottom: 20px;
}
.secProject .flex__lt span {
  background: linear-gradient(transparent 60%, #ffd700 60%);
}
@media screen and (max-width: 479px) {
  .secProject .flex__lt {
    font-size: 16px;
  }
}
.secProject .flex__rt {
  flex: 0 0 40%;
  text-align: right;
}
.secProject .flex__rt .department,
.secProject .flex__rt .name {
  display: inline-block;
  font: 500 16px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #626262;
}
@media screen and (max-width: 479px) {
  .secProject .flex__rt .department,
  .secProject .flex__rt .name {
    font-size: 14px;
  }
}
.secProject .flex__rt .name {
  padding-left: 15px;
}

.secWrap__btn {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 479px) {
  .secWrap__btn {
    padding-bottom: 0;
  }
}
.secWrap__btn--anchor {
  display: block;
  width: 260px;
  height: 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 30px;
  border: 1px solid #fff;
  background: #ff9a24;
  font: 500 18px/1.5 "M PLUS 1", sans-serif;
  color: #fff !important;
  padding: calc(20px - (18px * 1.5 - 18px) / 2) 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.secWrap__btn--anchor img {
  height: auto;
  max-width: 100%;
  padding-left: 8px;
  vertical-align: middle;
  padding-bottom: 4px;
}
@media screen and (max-width: 479px) {
  .secWrap__btn--anchor img {
    padding-left: 7px;
    width: 14px;
  }
}
@media screen and (max-width: 479px) {
  .secWrap__btn--anchor {
    width: 240px;
    height: auto;
    min-height: 60px;
    max-width: 100%;
    font-size: 16px;
    padding: calc(20px - (16px * 1.5 - 16px) / 2) 10px;
  }
}
.secWrap__btn--anchor:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .secWrap__btn--anchor:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: alpha(opacity=70);
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.secWrap__btn--anchor:nth-of-type(2) {
  margin-top: 20px;
}
