/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
main {
  overflow: hidden;
}
.mv {
  margin: 70px auto 0;
  position: relative;
  padding: 0 0 3em;
}
.mv::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  content: '';
  background: #F4F4F4;
  z-index: -1;
}
.mv img {
  width: 90%;
  margin: 0 0 0 10%;
  height: 250px;
  object-fit: cover;
}
.mv_en {
  position: absolute;
  bottom: 2em;
  left: 5px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: left;
  font-family: effra, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 3px;
  -webkit-text-stroke: 1px #004B8B;
  text-stroke: 1px #004B8B;
  color: rgba(255, 255, 255, 0.0);
}
.mv_txt {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  text-align: left;
  width: 280px;
}
.mv_txt div {
  display: inline-block;
  background: #0A3B94;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  padding: 3px 20px;
  margin: 0 auto 5px;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 6% 100%);
}
.mv_txt p {
  display: inline-block;
  background: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 3px 20px;
  clip-path: polygon(0 0, 96% 0, 100% 100%, 4% 100%);
}
.flow_top {
  width: 80%;
  margin: 3em auto 2em;
  text-align: left;
}
.flow_top span {
  text-align: center;
  display: block;
  font-weight: bold;
  color: #0A3B94;
  margin: 0 auto 0.5em;
  font-size: 1.7rem;
}
/*tabの形状*/
.tab {
  width: 95%;
  margin: 1.5em auto 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  border-bottom: 1px solid #0A3B94;
}
.tab li a {
  position: relative;
  display: block;
  background: #A3A3A3;
  color: #fff;
  padding: 7px 10px;
  font-size: 1.2rem;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #0A3B94;
  padding: 10px 15px;
  font-size: 1.4rem;
}
.tab li.active a::before {
  position: absolute;
  content: '';
  background: #0A3B94;
  width: 15px;
  height: 10px;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
}
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.flow_head {
  position: relative;
}
.flow_head > p {
  color: #0A3B94;
  font-family: effra, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 auto 0.5em;
}
.flow_head img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.flow_head_txt {
  position: absolute;
  bottom: 0;
  right: 3%;
  background: #0A3B94;
  color: #fff;
  padding: 15px 40px;
  clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
}
.flow_head_txt div {
  position: relative;
  font-weight: bold;
  padding: 0 0 8px;
  margin: 0 auto 10px;
  letter-spacing: 2px;
  font-size: 1.6rem;
}
.flow_head_txt div:before {
  position: absolute;
  bottom: 0px;
  left: calc(50% - 10px);
  width: 20px;
  height: 1px;
  content: '';
  background: #fff;
}
.flow_head_txt p {
  letter-spacing: 2px;
}
.flow_head_txt p span {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 1px 15px;
  margin: 0 3px 0.5em;
  font-size: 1.1rem;
}
.flow_wrap {
  width: 90%;
  margin: auto;
  padding: 3em 0 1em;
}
.flow_wrap h2 {
  background: #0A3B94;
  color: #fff;
  border-radius: 30px;
  font-size: 1.5rem;
  padding: 5px 0;
}
/*タイムライン全体の設定*/
.timeline {
  margin: 2em auto 0;
}
.timeline li {
  position: relative;
  list-style: none;
  padding: 0 0 40px 0;
}
/*絶対配置で線を設定*/
.border-line {
  /*線の位置*/
  position: absolute;
  left: 60px;
  top: 0;
  width: 1px; /*線の太さ*/
  height: 0; /*はじめは高さを0に*/
  background: #0A3B94;
}
/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 55.5px;
  width: 10px;
  height: 10px;
  background: #0A3B94;
  border-radius: 50%;
}
.timeline dl {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0px auto 0em;
  justify-content: space-between;
}
.timeline dl dt {
  width: 45px;
  text-align: right;
  margin: -4px 0 0;
  color: #0A3B94;
  font-weight: bold;
}
.timeline dl dd {
  text-align: left;
  width: calc(100% - 80px);
  margin: -8px 0 0;
}
.timeline_spot {
  margin: 0 auto 0.5em;
}
.timeline_spot span {
  display: inline-block;
  border: 1px solid #0A3B94;
  color: #0A3B94;
  background: #F4F4F4;
  font-weight: bold;
  padding: 4px 25px 2px;
  border-radius: 30px;
}
.timeline_spot span.blue {
  background: #0A3B94;
  color: #fff;
}
.timeline_txt {}
.timeline_txt div {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin: 0 auto 0.3em;
}
.timeline_txt p {}
.timeline_txt img {
  display: block;
  margin: 0.7em auto 0em;
}
.rewarding_wrap {
  position: relative;
}
.rewarding_wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #0A3B94;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  z-index: -1;
}
.rewarding_bg {
  z-index: 1;
  background: #F4F4F4;
  padding: 5em 0;
  position: relative;
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
}
.rewarding_bg h2 {
  width: 80%;
  margin: auto;
  text-align: right;
  color: #0A3B94;
  font-size: 1.5rem;
  letter-spacing: 2px;
}
.rewarding_bg h2 span {
  display: block;
  font-family: effra, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3px;
  font-size: 2.8rem;
}
.rewarding {
  width: 85%;
  margin: 0 auto 3em;
}
.rewarding li {
  position: relative;
  overflow: hidden;
  margin: 1em auto 0;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  align-items: center;
}
.rewarding li::before {
  position: absolute;
  content: '';
  width: 80px;
  height: 150%;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0, 206, 255, 1) 0%, rgba(10, 59, 148, 1)100%);
  clip-path: polygon(85% 0, 85% 33%, 100% 67%, 85% 100%, 0 100%, 0 0);
}
.rewarding li div {
  width: 70px;
  font-family: effra, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 2.5rem;
  padding: 0 10px 0 0;
}
.rewarding li p {
  width: calc(100% - 110px);
  text-align: left;
  padding: 15px 15px 15px 0;
}
.profile {
  width: 80%;
  margin: 3em auto 0;
}
.profile_img {
  display: none;
}
.profile_txt {
  text-align: left;
}
.profile_name {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin: 0 auto 0.5em;
}
.profile_name span {
  color: #0A3B94;
  font-family: effra, sans-serif;
  font-weight: 700;
  padding: 0 0 0 5px;
  font-size: 1.3rem;
}
.profile_comment {
  margin: 1em auto 0;
  line-height: 1.8;
}
.profile_comment span {
  display: block;
  color: #0A3B94;
  font-weight: bold;
  margin: 0 auto 0.5em;
  font-size: 1.6rem;
  letter-spacing: 2px;
  line-height: 1.6;
}
.profile_overview {
  margin: 1em auto 0em;
  border-left: 2px solid #0A3B94;
  padding: 0 0 0 15px;
}
.profile_overview div {
  margin: 0 auto 0.5em;
  color: #0A3B94;
  font-family: effra, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
}
.profile_overview div span {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  display: inline-block;
  border: 1px solid #0A3B94;
  border-radius: 30px;
  padding: 2px 10px 1px;
  margin: 0 5px 0 0;
  color: #0A3B94;
  font-size: 1.2rem;
}
.profile_overview div span:last-child {
  background: #0A3B94;
  color: #fff;
}
.profile_overview p {}
.profile_overview p span {
  display: block;
  color: #0A3B94;
  font-weight: bold;
  font-size: 1.4rem;
  margin: 0 auto 0.3em;
}
.link_bnr {
  width: 85%;
  margin: 5em auto 0;
}
.link_bnr li {
  position: relative;
}
.link_bnr li a {
  color: #fff;
}
.link_bnr li a:hover img {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
}
.link_bnr_img {
  position: relative;
  overflow: hidden;
}
.link_bnr_img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: #000;
  opacity: 0.4;
  transition: ease .2s;
  z-index: 1;
}
.link_bnr li:hover .link_bnr_img::before {
  opacity: 0;
}
/*
.link_bnr_img img {
  transform: scale(1);
  transition: .3s ease-in-out;
}
.link_bnr_img:hover img {
  transform: scale(1.1);
}
*/
.link_bnr_txt {
  position: absolute;
  text-align: left;
  top: 20px;
  left: 20px;
  z-index: 3;
}
.link_bnr_txt p {
  font-weight: bold;
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 2px;
  margin: 0 auto 0.5em;
}
.link_bnr_txt p span {
  display: block;
  font-family: effra, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.link_bnr_arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
}
/* ------------------------------------ */
/* ▼PC用デザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .mv {
    padding: 0 0 5em;
  }
  .mv::before {
    width: 95%;
  }
  .mv img {
    height: 500px;
  }
  .mv_en {
    left: 5%;
    font-size: 3.5rem;
  }
  .mv_txt {
    top: 80px;
    left: 5%;
    width: 400px;
  }
  .mv_txt div {
    letter-spacing: 2px;
    font-size: 3.8rem;
    line-height: 1.6;
    padding: 1px 30px;
    margin: 0 auto 10px;
  }
  .mv_txt p {
    letter-spacing: 2px;
    font-size: 1.7rem;
    padding: 5px 30px;
  }
  .flow_top {
    width: 90%;
    margin: 5em auto 4em;
    text-align: center;
    letter-spacing: 2px;
    font-size: 1.6rem;
  }
  .flow_top span {
    text-align: center;
    margin: 0 auto 0.5em;
    font-size: 2.5rem;
  }
  .tab {
    width: 90%;
    max-width: 1200px;
    margin: 3em auto 4em;
  }
  .tab li a {
    letter-spacing: 2px;
    padding: 9px 30px;
    font-size: 1.8rem;
  }
  .tab li.active a {
    padding: 10px 45px;
    font-size: 2.3rem;
  }
  .flow_head > p {
    font-size: 2.5rem;
  }
  .flow_head img {
    height: 500px;
  }
  .flow_head_txt {
    right: 5%;
    padding: 35px 120px;
    clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
  }
  .flow_head_txt div {
    padding: 0 0 8px;
    margin: 0 auto 15px;
    font-size: 2.3rem;
  }
  .flow_head_txt div:before {
    left: calc(50% - 15px);
    width: 30px;
  }
  .flow_head_txt p {
    font-size: 1.7rem;
  }
  .flow_head_txt p span {
    padding: 1px 20px;
    margin: 0 3px 0.4em;
    font-size: 1.3rem;
  }
  .flow_wrap {
    max-width: 1000px;
    padding: 5em 0 2em;
  }
  .flow_wrap h2 {
    letter-spacing: 2px;
    font-size: 2.3rem;
  }
  /*タイムライン全体の設定*/
  .timeline {
    margin: 3em auto 0;
  }
  .timeline li {
    padding: 0 0 70px 0;
  }
  /*絶対配置で線を設定*/
  .border-line {
    left: 95px;
  }
  /*タイムラインの見出し横の丸の位置と形状*/
  .timeline li::after {
    left: 90.5px;
  }
  .timeline dl dt {
    width: 70px;
    margin: -12px 0 0;
    font-size: 2rem;
  }
  .timeline dl dd {
    width: calc(100% - 120px);
    margin: -9px 0 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
  }
  .timeline_spot {
    width: 170px;
    margin: 0;
  }
  .timeline_spot span {
    display: block;
    text-align: center;
    padding: 4px 0px 2px;
  }
  .timeline_txt {
    width: calc(100% - 210px);
  }
  .timeline_txt div {
    font-size: 2rem;
    margin: 0 auto 0.2em;
  }
  .timeline_txt p {
    letter-spacing: 2px;
    font-size: 1.6rem;
  }
  .timeline_txt img {
    margin: 1em auto 0em;
  }
  .rewarding_wrap::before {
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
  }
  .rewarding_bg {
    padding: 8em 0;
    clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
  }
  .rewarding_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background: url("/img/staffday/rewarding.webp") center / cover;
  }
  .rewarding_img.case02 {
    background: url("/img/staffday/rewarding02.webp") center / cover;
  }
  .rewarding_bg h2 {
    text-align: right;
    font-size: 2rem;
  }
  .rewarding_bg h2 span {
    letter-spacing: 4px;
    font-size: 5.8rem;
    line-height: 1;
  }
  .rewarding {
    width: 60%;
    margin: 2em 10% 8em auto;
  }
  .rewarding li {
    margin: 1.5em auto 0;
  }
  .rewarding li::before {
    width: 140px;
  }
  .rewarding li div {
    width: 130px;
    font-size: 4rem;
    padding: 0 20px 0 0;
  }
  .rewarding li p {
    width: calc(100% - 200px);
    font-size: 1.7rem;
    letter-spacing: 2px;
    padding: 30px 30px 30px 0;
  }
  .profile {
    width: 80%;
    max-width: 1000px;
    margin: 3em auto 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-between;
    align-items: center;
  }
  .profile_img {
    display: block;
    width: 30%;
  }
  .profile_txt {
    width: 65%;
  }
  .profile_txt img {
    display: none;
  }
  .profile_name {
    font-size: 2.3rem;
    margin: 0 auto 0em;
  }
  .profile_name span {
    padding: 0 0 0 10px;
    font-size: 1.6rem;
  }
  .profile_comment {
    margin: 0.5em auto 0;
    line-height: 2;
    letter-spacing: 2px;
  }
  .profile_comment span {
    letter-spacing: 3px;
    font-size: 2.5rem;
  }
  .profile_overview {
    margin: 1em auto 0em;
    border-left: 3px solid #0A3B94;
    padding: 0 0 0 20px;
  }
  .profile_overview div {
    margin: 1em auto 0.5em;
    line-height: 1.4;
    font-size: 2.3rem;
  }
  .profile_overview div span {
    padding: 3px 20px 2px;
    margin: 0 5px 0 0;
    font-size: 1.4rem;
  }
  .profile_overview p span {
    font-size: 1.7rem;
    margin: 0 auto 0.3em;
  }
  .link_bnr {
    width: 90%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 8em auto 0em;
    justify-content: center;
  }
  .link_bnr li {
    margin: 0;
    width: calc(100% / 2 - 0px);
  }
  .link_bnr_txt {
    top: 20px;
    left: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 40px);
  }
  .link_bnr_txt p {
    font-size: 2.5rem;
    line-height: 1.5;
    letter-spacing: 4px;
  }
  .link_bnr_txt p span {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}