@charset "utf-8";
/*--------------------

	ＴＯＰページ
	
--------------------*/
@media only screen and (max-width: 1200px) {
  /* 1200px以上用（タブレット／スマートフォン用）の記述 */
  body {
    margin: 0;
    padding: 0;
    font-size: 16px;
  }
  #WRAPPER {
    margin: 0;
    padding: 0 0;
    width: 100%;
    overflow: hidden;
  }
  .pc_br {
    display: none;
  }
  .sp_br {
    display: block;
  }
  header#HEADER {
    width: 100%;
    height: 76px;
    margin: 0 auto;
    padding: 0;
    background: #fff;
  }
  .HeaderCont {
    width: 100%;
    padding: 12px 20px 8px 20px;
  }
  .HeaderCont .head_top {
    margin-bottom: 0;
    justify-content: space-between;
  }
  .HeaderCont .head_top .logo a {
    margin-top: 0px;
    align-items: flex-start;
    flex-direction: column;
  }
  .HeaderCont .head_top .logo a img {
    width: auto;
    height: 33px;
  }
  .HeaderCont .head_top .logo a .logotxt {
    font-weight: 500;
    font-size: 16px;
    margin-top: -3px;
  }
  .HeaderCont .head_right {
    display: none;
  }
  #globalnav {
    display: none;
  }
  /*横から出るメニュー*/
  div.globalNavCont_sp {
    display: block;
  }
  #nav_toggle {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    z-index: 9999;
    top: 18px;
    right: 20px;
  }
  #nav_toggle span:nth-child(1) {
    top: 12px;
  }
  #nav_toggle span:nth-child(2) {
    top: 20px;
  }
  #nav_toggle span:nth-child(3) {
    top: 28px;
  }
  .open #nav_toggle span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav_toggle span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #nav_toggle span {
    display: block;
    height: 1px;
    background: #555555;
    position: absolute;
    width: 80%;
    margin: 0 10%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  nav#globalNav_sp {
    display: block;
    z-index: 9998;
    margin-left: 100vw;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .globalNavCont_sp.open nav#globalNav_sp {
    margin-left: 0;
  }
  /*トグルの中身*/
  .globalNavCont_sp .accbox {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    height: calc(100vh - 76px);
  }
  .globalNavCont_sp .accbox .accbox_inner {
    padding: 40px 5% 20px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: calc(100vh - 76px - 62px - 54px);
  }
  .globalNavCont_sp .accbox .accbox_inner > p {
    padding-bottom: 8px;
    text-align: center;
  }
  .globalNavCont_sp .accbox ul.drower-menu-list {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #555555;
    border-bottom: 1px solid #555555;
  }
  .globalNavCont_sp .accbox ul.drower-menu-list li {
    width: 100%;
  }
  .globalNavCont_sp .accbox ul.drower-menu-list li > a {
    display: block;
    position: relative;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 50px;
  }
  .globalNavCont_sp .accbox .contact_link {
    width: 100%;
    box-sizing: border-box;
  }
  .globalNavCont_sp .accbox .contact_link li {
    opacity: 1;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
  }
  .globalNavCont_sp .accbox .contact_link li:last-child {
    margin-bottom: 0;
  }
  .globalNavCont_sp .accbox .contact_link a {
    display: block;
    width: 100%;
    height: 62px;
    line-height: 62px;
    box-sizing: border-box;
    background: #2b8ed8;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    position: relative;
  }
  .globalNavCont_sp .accbox .contact_link a:before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 16px;
    width: 12px;
    height: 1px;
    background: #fff;
    transform: translate(-30%, -50%) rotate(45deg);
    transform-origin: center;
  }
  .globalNavCont_sp .accbox .contact_link a:after {
    content: "";
    position: absolute;
    top: calc(50% + 4px);
    right: 16px;
    width: 12px;
    height: 1px;
    background: #fff;
    transform: translate(-30%, -50%) rotate(-45deg);
    transform-origin: center;
  }
  .globalNavCont_sp .accbox .contact_link a span {
    margin-right: 16px;
  }
  .globalNavCont_sp .nav-foot {
    background: #555555;
    padding: 15px 35px;
    display: flex;
    justify-content: center;
  }
  .globalNavCont_sp .nav-foot p {
    color: #fff;
  }
  @media only screen and (max-width: 530px) {
    .HeaderCont .head_top .logo a img {
      height: 26px;
    }
    .globalNavCont_sp .accbox .accbox_inner {
      justify-content: flex-start;
    }
    .globalNavCont_sp .accbox .accbox_inner > p {
      text-align: left;
    }
    .globalNavCont_sp .accbox ul.drower-menu-list {
      padding: 12px 0;
      margin-bottom: 24px;
    }
    .globalNavCont_sp .accbox ul.drower-menu-list li > a {
      line-height: 32px;
      text-align: left;
      padding-left: 24px;
      position: relative;
    }
    .globalNavCont_sp .accbox ul.drower-menu-list li > a:before {
      content: "・";
      position: absolute;
      top: 0;
      left: 0;
      width: 12px;
      height: 32px;
      font-size: 16px;
    }
  }
  /*横から出るメニューここまで*/
  .firstview {
    height: calc(60vh - 76px);
  }
  @media only screen and (max-width: 770px) {
    .firstview {
      height: calc(60vh - 76px);
    }
  }
  @media only screen and (max-width: 570px) {
    .firstview {
      height: calc(45vh - 76px);
    }
  }
  .firstview .firstview_inner {
    width: 520px;
    left: calc(50% - 260px);
    top: 14vh;
  }
  .fv_people {
    width: 460px;
    left: calc(50% - 230px);
  }
	@media only screen and (max-height: 800px) {
  .firstview .firstview_inner {
    top: 12vh;
  }
}
  @media only screen and (max-width: 570px) {
    .firstview .firstview_inner {
      width: 70vw;
      left: calc(50% - 35vw);
      top: 9vh;
    }
    .fv_people {
      width: 320px;
      left: calc(50% - 160px);
    }
  }
  /*コンテンツ*/
  .TopCont_inner {
    width: 100%;
  }
  .TopCont_1 .TopCont_lead > .ttl_big {
    margin: 44px auto 17px;
    line-height: 1.4em;
    letter-spacing: -0.05em;
  }
  .TopCont_lead_name {
    margin-right: 0;
  }
  .TopCont_2 .TopCont_inner {
    width: 100%;
  }
  .TopCont_appeal_block {
    width: calc(100% - 52px);
    padding: 15px 26px;
    margin-top: 56px;
    border-radius: 40px;
  }
  .TopCont_appeal_block::after {
    display: none;
  }
  .TopCont_10 .TopCont_inner {
    padding: 72px 5%;
  }
  .job_description_btn {
    width: 100%;
  }
  .job_description_btn ul li {
    display: flex;
    align-items: center;
  }
  .job_description_btn span {
    font-weight: 900;
    -webkit-text-shadow: 1px 1px 0 #fff;
    text-shadow: 1px 1px 0 #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    -webkit-text-fill-color: currentColor;
  }
  .job_description_btn a {
    position: relative;
  }
  .job_description_btn a:before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    right: 16px;
    width: 20px;
    height: 3px;
    background: #2B8ED8;
    transform: translate(-30%, -50%) rotate(45deg);
    transform-origin: center;
  }
  .job_description_btn a:after {
    content: "";
    position: absolute;
    top: calc(50% + 6px);
    right: 16px;
    width: 20px;
    height: 3px;
    background: #2B8ED8;
    transform: translate(-30%, -50%) rotate(-45deg);
    transform-origin: center;
  }
  @media only screen and (max-width: 930px) {
    .TopCont_2 {
      background-size: 147px 147px;
      background-position: right -8px top 30px;
    }
    .TopCont_point_list {
      margin-top: 30px;
    }
    .TopCont_point_list li.not-cont {
      display: none;
    }
    .TopCont_point_list li {
      width: calc(((100% - 16px) / 2) - 2px - 74px);
    }
    .TopCont_interview_list {
      padding: 56px 0;
    }
    .TopCont_interview_list li figcaption {
      padding: 54px 17px 0;
      width: calc(100% - 34px - 392px);
    }
    .TopCont_flow_list {
      flex-direction: column;
    }
    .TopCont_flow_list li {
      width: calc(100% - 50px);
      padding: 30px 25px 26px;
    }
    .TopCont_flow_list li:first-of-type {
      margin-bottom: 32px;
    }
    .TopCont_flow_list li dl dd {
      margin-left: 0;
      height: 96px;
    }
    .TopCont_flow_list li dl dd:last-of-type {
      height: fit-content;
    }
    .TopCont_4::after {
      width: 303px;
      height: 303px;
      top: inherit;
      bottom: 216px;
      left: -37px;
    }
    .TopCont_career_step {
      flex-direction: column;
    }
    .TopCont_career_step li, .TopCont_career_step li:nth-of-type(n + 2) {
      width: calc(100% - 80px);
      padding: 65px 40px 54px;
      border-left: 4px solid #fff;
      height: 99px;
    }
    .TopCont_career_step li::before {
      right: -4px;
      top: inherit;
      bottom: -34px;
      border-top: 26px solid #fff;
      border-bottom: 0;
      border-left: calc(50vw - 20px) solid transparent;
      border-right: calc(50vw - 20px) solid transparent;
    }
    .TopCont_career_step li::after {
      right: 0;
      top: inherit;
      bottom: -26px;
      border-top: 26px solid #ebfaff;
      border-bottom: 0;
      border-left: calc(50vw - 24px) solid transparent;
      border-right: calc(50vw - 24px) solid transparent;
    }
    .TopCont_career_step li:nth-of-type(2)::after {
      border-left: calc(50vw - 24px) solid transparent;
      border-top: 26px solid #d7feff;
    }
    .TopCont_career_step li:nth-of-type(3)::after {
      border-left: calc(50vw - 24px) solid transparent;
      border-top: 26px solid #ccffed;
    }
    /* 上から現れるアニメーション */
    @keyframes slideInLeft {
      0% {
        opacity: 0;
        transform: translateY(-50px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }
  @media only screen and (max-width: 768px) {
    .TopCont_interview_list li figcaption > p.medium.yellow {
      bottom: -14px;
    }
    .TopCont_1 .TopCont_inner {
      padding: 72px 5%;
      width: 100%;
      border-bottom: none;
    }
    .TopCont_lead::after {
      right: -159px;
    }
    .TopCont_lead::before {
      bottom: -40px;
      left: -150px;
    }
    .TopCont_1::before {
      right: -59px;
      bottom: inherit;
      top: -54px;
      opacity: 0.3;
    }
    .TopCont_1::after {
      display: none;
    }
    .TopCont_lead_name::after {
      bottom: -12px;
      left: 5px;
    }
    .TopCont_lead_name {
      flex-direction: column;
    }
    .TopCont_lead_name > p:first-of-type {
      margin-right: 0;
    }
    .TopCont_1 .TopCont_inner {
      padding: 72px 5% 35px;
      width: 100%;
    }
    .TopCont_point_list li {
      width: calc(100% - 2px - 74px);
    }
    .TopCont_point_list li:nth-of-type(3), .TopCont_point_list li:nth-of-type(4), .TopCont_point_list li:nth-of-type(5), .TopCont_point_list li:nth-of-type(6) {
      margin-top: 16px;
    }
    .TopCont_3::after {
      background: url(../images/recruit/nami-white-sp.png) no-repeat;
      background-size: contain;
    }
    .TopCont_3 .TopCont_inner {
      padding: 72px 5% 26px;
    }
    .TopCont_interview_list li {
      flex-direction: column;
    }
    .TopCont_interview_list li:nth-of-type(2n) {
      flex-direction: column-reverse;
    }
    .TopCont_interview_list li img {
      width: 100%;
      height: 62vw;
      object-fit: cover;
      border-radius: 8px 8px 0 0;
    }
    .TopCont_interview_list li figcaption {
      width: calc(100% - 34px);
      height: calc(327px - 54px);
      border-radius: 0 0 8px 8px;
    }
    .TopCont_3 .TopCont_inner::after {
      width: 306px;
      height: 306px;
      left: inherit;
      right: -137px;
      top: 56px;
      background-size: contain;
    }
    .TopCont_3 .TopCont_inner::before {
      width: 306px;
      height: 306px;
      bottom: 50%;
      left: -98px;
      background-size: contain;
    }
    .TopCont_5 .TopCont_inner {
      padding: 72px 5% 29px;
    }
    .TopCont_infographics_list li {
      width: calc((100% - 8px) / 2);
    }
    .TopCont_infographics_list li:nth-of-type(n + 3) {
      margin-top: 8px;
    }
    .TopCont_5::before {
      position: absolute;
      z-index: -1;
      content: "";
      background: url(../images/recruit/sec5_bg.svg) no-repeat;
      width: 336px;
      height: 337px;
      bottom: 20%;
      right: -102px;
    }
    .TopCont_5 .TopCont_inner::after {
      width: 184px;
      height: 184px;
      top: 72px;
      right: -46px;
    }
    .TopCont_5 .TopCont_inner::before {
      width: 306px;
      height: 306px;
      background-size: contain;
      left: -77px;
      bottom: 52%;
    }
    .TopCont_6 .TopCont_inner {
      padding: 72px 5%;
    }
    .TopCont_7 {
      background-size: 366px 365px;
      background-position: right -227px bottom 30%;
    }
    .TopCont_6 .TopCont_inner::after {
      width: 130px;
      height: 130px;
      right: 27px;
      top: 0;
    }
    .TopCont_6 .TopCont_inner::before {
      width: 279px;
      height: 280px;
      left: -39px;
      bottom: 35%;
    }
    .TopCont_8 .TopCont_inner {
      padding: 72px 5% 26px;
    }
    .TopCont_employee_list li {
      width: 100%;
    }
    .TopCont_employee_list li:nth-of-type(n+2) {
      margin-top: 24px;
    }
    .TopCont_8 {
      background-size: 203px 204px;
      background-position: right -80px top -80px;
    }
    .TopCont_8 .TopCont_inner::after {
      width: 421px;
      height: 422px;
      right: inherit;
      left: -139px;
      bottom: 24px;
    }
    .TopCont_appeal_block {
      flex-direction: column;
    }
    .TopCont_9 .TopCont_inner {
      padding: 72px 5% 26px;
    }
  }
  @media only screen and (max-width: 600px) {
    .TopCont_construction_list {
      flex-direction: column;
    }
    .TopCont_construction_list li {
      width: 100%;
    }
    .TopCont_construction_list li:nth-of-type(n+2) {
      margin-top: 16px;
    }
    .TopCont_construction_list li figure img {
      width: 100%;
    }
    .TopCont_construction_list li figcaption {
      margin-top: 14px;
      font-size: 20px;
    }
    .TopCont_employee_list li img {
      margin-right: 22px;
    }
    .job_description_btn {
      background: url(../images/recruit/job_description_btn_sp.webp) no-repeat;
      background-size: 100% auto;
    }
    .job_description_btn a p, .job_description_btn ul li {
      line-height: 1.1em;
    }
    .job_description_btn ul li::after {
      top: 4px;
    }
    .TopCont_interview_list li:nth-of-type(2) figcaption > p.medium.yellow {
      letter-spacing: -0.03em;
    }
  }
  @media only screen and (max-width: 500px) {
    .TopCont_employee_list {
      margin: 56px auto 0;
    }
  }
  @media only screen and (max-width: 400px) {
    .TopCont_infographics_list li {
      width: 100%;
    }
    .TopCont_infographics_list li:nth-of-type(n + 2) {
      margin-top: 8px;
    }
  }
  /*フッター*/
  div#FooterBg {
    width: 100%;
    padding: 10px 0 0px;
  }
  footer#FOOTER {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    padding-bottom: 14px;
    flex-direction: column;
  }
  footer#FOOTER .foot_left {}
  footer#FOOTER #footnav {
    width: 100%;
  }
  footer#FOOTER #footnav ul {
    width: 100%;
    padding-bottom: 7px;
    border-bottom: 1px solid #555555;
    margin-bottom: 11px;
  }
  footer#FOOTER #footnav ul li {
    width: 100%;
  }
  footer#FOOTER #footnav ul li a {
    padding-left: 0;
  }
  p#pagetop {
    right: 10px;
  }
  p#pagetop a:hover {
    animation: none;
  }
  .f_14px {
    font-size: 13px;
  }
  .f_15px {
    font-size: 14px;
  }
  .f_16px {
    font-size: 15px;
  }
  .f_18px {
    font-size: 16px;
  }
  .f_20px {
    font-size: 18px;
  }
  .f_32px {
    font-size: 24px;
  }
  /*募集要項*/
  @media only screen and (max-width: 1200px) {
    .sub_content_inner {
      width: auto;
    }
    .recruitment_details dt {
      padding: 20px 10px;
      width: 140px;
    }
    .recruitment_details dd {
      width: calc(100% - 140px);
    }
  }
  @media only screen and (max-width: 930px) {
    .sub_top_inner .sub_ttl {
      margin-top: 20px;
    }
    .sub_top_inner .sub_ttl .sub_ttl_box .ttl_en span {
      display: block;
      width: 50px;
      height: 2px;
    }
    .sub_top_inner .sub_ttl .sub_ttl_img {
      width: 350px;
      margin-top: -40px;
    }
    .sub_top_inner .sub_ttl .sub_ttl_img img {
      width: 80px;
    }
    .tab-label {
      display: flex;
      flex-direction: column;
    }
    .tab-label li {
      width: auto;
      margin-right: 0;
      border-radius: 0;
    }
    .tab-label li a {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .tab-label li a::before {
      display: block;
      content: "";
      width: 16px;
      height: 16px;
    }
    .tab-label li a::after {
      background-image: url(../images/recruit/down_black.svg);
      display: block;
      content: "";
      width: 16px;
      height: 16px;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }
  }
  @media only screen and (max-width: 768px) {
    .sub_top_inner {
      padding: 10px 20px 0 20px;
    }
    .sub_top_inner .sub_ttl {
      margin-top: 10px;
    }
    .sub_top_inner .sub_ttl .sub_ttl_box .ttl_en span {
      display: block;
      width: 50px;
      height: 2px;
    }
    .sub_top_inner .sub_ttl .sub_ttl_img {
      width: 300px;
      margin-top: -40px;
    }
    .sub_top_inner .sub_ttl .sub_ttl_img img {
      width: 60px;
    }
    .recruitment_details dl {
      display: block;
    }
    .recruitment_details dt {
      padding: 10px 0;
      width: 100%;
    }
    .recruitment_details dd {
      width: auto;
    }
    .recruitment_details dl.detail_1 p {
      line-height: 1.4em;
    }
    .tab-contents dl dd .notes_box_green {
      display: block;
      padding: 12px;
      max-width: 285px;
      width: auto;
    }
  }