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

/*
// ----------------------------------------------------
//  ヘッダー
// ----------------------------------------------------
*/
.header {
  line-height: 1.2;
  background: #fff;
}
.header__inner {
  display: flex;
  align-items: flex-end;
  /*max-width: 1840px;*/
  margin: 0 auto;
  padding: 28px 30px 27px;
  border-bottom: 1px solid #ededed;
}
@media screen and (max-width: 1540px) {
  .header__inner {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .header__inner {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    box-sizing: border-box;
    display: block;
    /*height: 50px;*/
    padding: 13px 15px;
  }
}

/*
// ----------------------------------------------------
//  ヘッダーのロゴ
// ----------------------------------------------------
*/
.logo {
  margin-right: auto;
}
.logo__item {
  display: flex;
  align-items: center;
  margin: 0;
}
.logo__item span {
  padding-left: 15px;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .logo {
    position: absolute;
    top: 20px;
    left: 30px;
    margin: 0;
  }
  /*.logo__item {
    width: 220px;
  }*/
}
@media screen and (max-width: 768px) {
  .logo {
    position: static;
  }
  .logo__item {
    display: block;
    /*width: 175px;*/
  }
  .logo__item span {
    display: block;
    padding: 5px 0 0;
    font-size: 12px;
  }
}

/*
// -----------------------------------------
// 別窓アイコン
// -----------------------------------------
*/
.blankIcon {
  margin-left: 10px;
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  .blankIcon {
    width: 16px;
    height: 16px;
  }
}

/*
// ----------------------------------------------------
//  グローバルナビゲーション
// ----------------------------------------------------
*/
.navBody {
  display: flex;
  flex-direction: column-reverse;
  line-height: 1.2;
}
@media screen and (max-width: 1540px) {
  .navBody {
    margin-top: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .navBody {
    margin-left: auto;
    padding-top: 49px;
    /*width: 100%;*/
  }
}
@media screen and (max-width: 1024px) {
  .navBody {
    display: none;
    position: absolute;
    top: 49px;
    left: 0;
    z-index: 999;
    padding: 0;
    width: 100%;
    background: white;
    border-top: 2px solid #D8D5D5;
  }
}
@media screen and (max-width: 768px) {
  .navBody {
    top: 62px;
  }
}

/*
// グロナビ
*/
.nav {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1540px) {
  .nav {
    margin: 0 auto;
  }
}
@media screen and (max-width: 940px) {
  .nav {
    width: 100%;
  }
}
.nav__link {
  box-sizing: border-box;
  display: block;
  padding: 1px 30px;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 1670px) {
  .nav__link {
    padding: 1px 12.5px;
  }
}
@media screen and (max-width: 1260px) {
  /*.nav__link {
    padding: 1px 0 1px 5px;
  }*/
}
@media screen and (max-width: 1024px) {
  .nav__link {
    padding: 1px 0;
  }
}
@media screen and (max-width: 1024px) {
  .nav__link {
    position: relative;
    width: 100%;
    padding: 13px 25px 13px 15px;
    text-align: left;
  }
  .nav__link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 17px;
    width: 8px;
    height: 100%;
    background: url(../img/common/sp-arrow_menu_right.svg) no-repeat center;
    background-size: 100% auto;
  }
  .nav__item.-freedial .nav__link::after {
    content: none;
  }
  .nav__link[aria-expanded]::after {
    right: 15px;
    width: 16px;
    background-image: url(../img/common/sp-arrow_menu_bottom.svg);
    transition: all .5s;
  }
  .nav__link[aria-expanded].-open::after {
    transform: rotate(-180deg);
  }
}
.nav__link:hover {
  text-decoration: none;
}
.nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .nav__list {
    display: block;
    background: #edecee;
    text-align: left;
    font-size: 1.8rem;
  }
}
/*.nav__item {
  margin-left: 45px;
}
.nav__item:first-child {
  margin-left: 0;
}
@media screen and (max-width: 1670px) {
  .nav__item {
    margin-left: 25px;
  }
}*/
@media screen and (max-width: 1024px) {
  .nav__item {
    margin: 0 2vw;
  }
}
@media screen and (max-width: 1024px) {
  .nav__item {
    display: block;
    margin: 0;
    border-bottom: 2px solid #D8D5D5;
  }
}
.nav__item >a {
  color: #2b2b2b;
}

/*
// ドロップダウンメニュー
*/
@media screen and (min-width: 1025px) {
  .nav__sub-nav {
    box-sizing: border-box;
    position: absolute;
    display: block;
    visibility: hidden;
    overflow: hidden;
    top: 82px;
    left: 0;
    z-index: -1;
    width: 100%;
    max-height: calc(100vh - 103px);
    overflow: auto;
    padding: 28px 30px 1px;
    background-color: #fff;
    transition: all .7s;
    height: 0;
    opacity: 0;
    transform: translateY(-10px);
  }
  .nav__sub-nav.-open {
    visibility: visible;
    z-index: 99;
    opacity: 1;
    height: auto;
    transform: translateY(0px);
    background: #f8f8f8;
  }
}
@media screen and (max-width: 1540px) {
  .nav__sub-nav {
    top: 121px;
  }
}
@media screen and (max-width: 1024px) {
  .nav__sub-nav {
    top: 108px;
  }
}
@media screen and (max-width: 1024px) {
  .nav__sub-nav {
    padding: 0;
    display: none;
  }
  .nav__sub-nav.-open {
    display: block;
  }
}
@media print {
  .nav__sub-nav {
    display: none;
  }
}
.nav__sub-nav-inner {
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .nav__sub-nav-inner {
    background: #FAFAFA;
  }
}




/*
// ドロップダウンメニュー内
// レンタル商品
*/
.nav__item.-rental .nav-subNav__icon a {
  display: flex;
  align-items: center;
}
.nav__item.-rental .nav-subNav__icon a::before {
  width: 74px;
  padding-right: 10px;
  text-align: center;
}
.nav__item.-rental .nav-subNav__icon.-measure a::before {
  content: url(../img/common/measure.png);
}
.nav__item.-rental .nav-subNav__icon.-surveying_instrument a::before {
  content: url(../img/common/surveying_instrument.png);
}
.nav__item.-rental .nav-subNav__icon.-safety_measure a::before {
  content: url(../img/common/safety_measure.png);
}
.nav__item.-rental .nav-subNav__icon.-network a::before {
  content: url(../img/common/network.png);
}
.nav__item.-rental .nav-subNav__icon.-camera a::before {
  content: url(../img/common/camera.png);
}
.nav__item.-rental .nav-subNav__icon.-ict a::before {
  content: url(../img/common/ict.png);
}
.nav__item.-rental .nav-subNav__icon.-unmanned a::before {
  content: url(../img/common/unmanned.png);
}
.nav__item.-rental .nav-subNav__icon.-marine_engineering a::before {
  content: url(../img/common/marine_engineering.png);
}
.nav__item.-rental .nav-subNav__icon.-railroad a::before {
  content: url(../img/common/railroad.png);
}
.nav__item.-rental .nav-subNav__icon.-electric_transmission a::before {
  content: url(../img/common/electric_transmission.png);
}
.nav__item.-rental .nav-subNav__icon.-netis a::before {
  content: url(../img/common/netis.png);
}
.nav__item.-rental .nav-subNav__icon.-original a::before {
  content: url(../img/common/original.png);
}
@media screen and (max-width: 1024px) {
  .nav__item.-rental .nav-subNav__icon a::before {
    content: none !important;
  }
}



/*
// ドロップダウンメニュー内
// 商品情報、CM・キャンペーン、知る・楽しむ
*/
.nav-subNav {
  text-align: left;
}
.nav-subNav a {
  display: inline-block;
  color: #000;
  font-size: 1.6rem;
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  .nav-subNav li:not(.nav-subNav__title) a {
    position: relative;
    display: block;
    /*padding: 12px 15px 12px 30px;*/
    padding: 12px 0;
    font-weight: normal;
  }
  .nav-subNav li:not(.nav-subNav__title) a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background: url(../img/common/sp-arrow_menu_right.svg) no-repeat center;
    background-size: 100% auto;
  }
}
.nav-subNav a .blankIcon {
  transform: translateY(0px);
}
@media screen and (max-width: 1024px) {
  .nav-subNav__title {
    border-top: 2px solid #D8D5D5;
    font-size: 1.6rem;
  }
}
.nav-subNav__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-subNav__title > a {
  font-size: 51px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .nav-subNav__title {
    display: block;
    padding: 13px 15px;
  }
  .nav-subNav__title > a {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.nav-subNav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 910px;
}
@media screen and (max-width: 1024px) {
  .nav-subNav__list {
    display: block;
  }
}
.nav-subNav__list li {
  /*width: calc(100% / 7);*/
  width: calc(100% / 3);
  /*margin-right: 80px;*/
  margin-bottom: 25px;
}
.nav-subNav__list li:last-child {
  margin-right: 0;
}
/*@media screen and (max-width: 1024px) {
  .nav-subNav__list li {
    width: auto;
    margin-right: 25px;
  }
}*/
@media screen and (max-width: 1024px) {
  .nav-subNav__list li {
    /*width: auto;
    margin: 0;
    border-top: 1px solid #D8D5D5;*/
    width: 100%;
    /*margin-bottom: 12.5px;*/
    margin-bottom: 0;
  }
  .nav-subNav__list li a {
    font-size: 1.6rem;
  }
}


/*
// サステナビリティ
*/
.nav-sustainability {
  text-align: left;
}
.nav-sustainability a {
  display: inline-block;
  color: #000;
}
@media screen and (max-width: 768px) {
  .nav-sustainability a {
    position: relative;
    display: block;
    padding: 12px 25px 12px 30px;
    font-weight: normal;
  }
  .nav-sustainability a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 17px;
    width: 8px;
    height: 100%;
    background: url(../img/common/sp-arrow_menu_right.svg) no-repeat center;
    background-size: 100% auto;
  }
}
.nav-sustainability a .blankIcon {
  transform: translateY(0px);
}
@media screen and (max-width: 768px) {
  .nav-sustainability__title {
    border-top: 2px solid #D8D5D5;
    font-size: 1.6rem;
  }
}
.nav-sustainability__title > a {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .nav-sustainability__title > a {
    margin-bottom: 0;
    font-weight: bold;
  }
}
.nav-sustainability__list {
  column-count: 3;
  padding-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .nav-sustainability__list {
    display: block;
    column-count: auto;
    padding-bottom: 0;
  }
}
.nav-sustainability__item {
  margin-bottom: 25px;
  /*// ステークホルダーエンゲージメントの下に2つ分の余白を設けて、次のリストを別カラムに移動*/
}
.nav-sustainability__item:nth-child(3)::after {
  content: "";
  display: block;
  height: 5.5em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .nav-sustainability__item {
    width: auto;
    margin: 0;
    border-top: 1px solid #D8D5D5;
  }
  .nav-sustainability__item:nth-child(3)::after {
    content: none;
  }
  .nav-sustainability__item > a {
    font-size: 1.6rem;
    font-weight: bold;
  }
}
.nav-sustainability__childList {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .nav-sustainability__childList {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .nav-sustainability__childItem {
    position: relative;
    margin-bottom: 10px;
    padding-left: 13px;
  }
  .nav-sustainability__childItem::before {
    content: "";
    position: absolute;
    top: .5em;
    left: 5px;
    width: 3px;
    height: 3px;
    background: #000;
    border-radius: 50%;
  }
  .nav-sustainability__childItem.-noDot {
    margin-top: 20px;
    padding-left: 0;
  }
  .nav-sustainability__childItem.-noDot::before {
    content: none;
  }
}
.nav-sustainability__childItem a {
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .nav-sustainability__childItem {
    border-top: 1px solid #D8D5D5;
  }
  .nav-sustainability__childItem > a {
    padding-left: 47px;
    font-size: 1.6rem;
  }
}


/*
// 企業・IR情報
*/
@media screen and (min-width: 769px) {
  .nav-company_ir {
    position: relative;
    display: flex;
    padding-top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .nav-company_ir {
    display: block;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .nav-company_ir {
    font-size: 1.6rem;
  }
}
.nav-company_ir__title {
  display: none;
}
@media screen and (max-width: 768px) {
  .nav-company_ir__title {
    position: relative;
    display: block;
    padding: 12px 15px 12px 30px;
    border-top: 1px solid #D8D5D5;
  }
  .nav-company_ir__title::after {
    content: "";
    position: absolute;
    top: 0;
    right: 15px;
    width: 16px;
    height: 100%;
    background: url(../img/common/sp-arrow_menu_bottom.svg) no-repeat center;
    background-size: 100% auto;
    transition: all .5s;
  }
  .nav-company_ir__title.-open {
    color: #C91137;
  }
  .nav-company_ir__title.-open::after {
    transform: rotate(-180deg);
  }
}
.nav-recruit,
.nav-rd,
.nav-company,
.nav-newsrelease {
  flex: 1;
  text-align: left;
  padding-right: 10px;
}
@media screen and (max-width: 1024px) {
  .nav-recruit,
  .nav-rd,
  .nav-company,
  .nav-newsrelease {
    padding-right: 0;
  }
}
.nav-recruit a,
.nav-rd a,
.nav-company a,
.nav-newsrelease a {
  display: inline-block;
  color: #000;
}
@media screen and (max-width: 768px) {
  .nav-recruit a,
  .nav-rd a,
  .nav-company a,
  .nav-newsrelease a {
    position: relative;
    display: block;
    padding: 12px 15px 12px 47px;
    font-weight: normal;
  }
  .nav-recruit a::after,
  .nav-rd a::after,
  .nav-company a::after,
  .nav-newsrelease a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 17px;
    width: 8px;
    height: 100%;
    background: url(../img/common/sp-arrow_menu_right.svg) no-repeat center;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 768px) {
  .nav-recruit__title,
  .nav-rd__title,
  .nav-company__title,
  .nav-newsrelease__title {
    border-top: 1px solid #D8D5D5;
  }
}
.nav-recruit__title > a,
.nav-rd__title > a,
.nav-company__title > a,
.nav-newsrelease__title > a {
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .nav-recruit__title > a,
  .nav-rd__title > a,
  .nav-company__title > a,
  .nav-newsrelease__title > a {
    margin-bottom: 0;
    font-weight: bold;
  }
}
@media screen and (min-width: 769px) {
  .nav-recruit__title--main > a,
  .nav-rd__title--main > a,
  .nav-company__title--main > a,
  .nav-newsrelease__title--main > a {
    position: absolute;
    top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .nav-recruit__title--main > a,
  .nav-rd__title--main > a,
  .nav-company__title--main > a,
  .nav-newsrelease__title--main > a {
    position: initial;
  }
}
@media screen and (max-width: 1024px) {
  .nav-recruit__list,
  .nav-rd__list,
  .nav-company__list,
  .nav-newsrelease__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .nav-recruit__list,
  .nav-rd__list,
  .nav-company__list,
  .nav-newsrelease__list {
    display: block;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .nav-recruit__list li,
  .nav-rd__list li,
  .nav-company__list li,
  .nav-newsrelease__list li {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .nav-recruit__list li,
  .nav-rd__list li,
  .nav-company__list li,
  .nav-newsrelease__list li {
    margin-right: 25px;
  }
  .nav-recruit__list li:last-child,
  .nav-rd__list li:last-child,
  .nav-company__list li:last-child,
  .nav-newsrelease__list li:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .nav-recruit__list li,
  .nav-rd__list li,
  .nav-company__list li,
  .nav-newsrelease__list li {
    border-top: 1px solid #D8D5D5;
    margin-right: 0;
  }
}
.nav-recruit__list li a,
.nav-rd__list li a,
.nav-company__list li a,
.nav-newsrelease__list li a {
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .nav-company {
    padding-top: 43px;
  }
}
@media screen and (max-width: 1024px) {
  .nav-company {
    padding-top: 0;
  }
}
.nav-ir {
  flex: 2;
  text-align: left;
  padding-right: 10px;
}
@media screen and (max-width: 1024px) {
  .nav-ir {
    padding-right: 0;
  }
}
.nav-ir a {
  display: inline-block;
  color: #000;
}
@media screen and (max-width: 768px) {
  .nav-ir a {
    position: relative;
    display: block;
    padding: 10px 15px 10px 47px;
    font-weight: normal;
  }
  .nav-ir a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 17px;
    width: 8px;
    height: 100%;
    background: url(../img/common/sp-arrow_menu_right.svg) no-repeat center;
    background-size: 100% auto;
  }
  .nav-ir a.js-sp-toggle__btn::after {
    right: 15px;
    width: 16px;
    background-image: url(../img/common/sp-arrow_menu_bottom.svg);
    transition: all .5s;
  }
  .nav-ir a.js-sp-toggle__btn.-open {
    color: #C91137;
    background: #FFF8F8;
  }
  .nav-ir a.js-sp-toggle__btn.-open::after {
    transform: rotate(-180deg);
  }
}
@media screen and (max-width: 768px) {
  .nav-ir__title {
    border-top: 1px solid #D8D5D5;
  }
}
.nav-ir__title > a {
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .nav-ir__title > a {
    margin-bottom: 0;
    font-weight: bold;
  }
}
@media screen and (min-width: 769px) {
  .nav-ir__list {
    display: flex;
    flex-flow: column wrap;
    height: 630px;
  }
}
@media screen and (max-width: 768px) {
  .nav-ir__list {
    border-top: 1px solid #D8D5D5;
  }
}
@media screen and (min-width: 769px) {
  .nav-ir__item {
    margin-bottom: 20px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .nav-ir__item {
    border-bottom: 1px solid #D8D5D5;
  }
  .nav-ir__item:last-child {
    border-bottom: 0;
  }
}
@media screen and (min-width: 769px) {
  .nav-ir__listChild {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .nav-ir__listChild {
    border-top: 1px solid #D8D5D5;
  }
  .nav-ir__listChild.-open {
    background: #FFF8F8;
  }
}
@media screen and (min-width: 769px) {
  .nav-ir__listChild li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 13px;
  }
  .nav-ir__listChild li::before {
    content: "";
    position: absolute;
    top: .5em;
    left: 5px;
    width: 3px;
    height: 3px;
    background: #000;
    border-radius: 50%;
  }
}
@media screen and (max-width: 768px) {
  .nav-ir__listChild li {
    border-bottom: 1px solid #D8D5D5;
  }
  .nav-ir__listChild li:last-child {
    border-bottom: 0;
  }
}
.nav-ir__listChild a {
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .nav-ir__listChild a {
    padding-left: 63px;
  }
}

.nav-recruit {
  flex: none;
}
@media screen and (max-width: 768px) {
  .nav-recruit a {
    padding-left: 30px;
  }
}

@media screen and (min-width: 769px) {
  .nav-newsrelease__title {
    position: absolute;
    top: 420px;
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .nav-newsrelease__title {
    position: initial;
  }
}


/*
// マイページ
*/
.nav__item.-mypage {
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
}
.nav__item.-mypage a::before {
  content: url(../img/common/mypage_icon.svg);
  padding-right: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 1670px) {
  .nav__item.-mypage {
    /*padding: 0 12.5px 0;*/
    /*margin-left: 12.5px;*/
  }
}


/*
// お問い合せはこちら
*/
.nav__item.-contact {
  /*margin-left: 25px;*/
}
@media screen and (max-width: 1670px) {
  .nav__item.-contact {
    /*margin-left: 12.5px;*/
  }
}


/*
// フリーダイヤル
*/
.nav__item.-freedial a::before {
  content: url(../img/common/h-freedial_icon.svg);
  padding-right: 10px;
}
.nav__item.-freedial a {
  padding-right: 0;
  color: #0e0d6a;
  font-size: 2.4rem;
}



/*
// ----------------------------------------------------
//  SPのMENUボタン
// ----------------------------------------------------
*/
.sp-navBtn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-navBtn {
    display: block;
    position: absolute;
    top: 11px;
    right: 15px;
    width: 30px;
    height: auto;
    padding-top: 18px;
    font-size: 1rem;
    color: #747474;
  }
  .sp-navBtn > span::after,
  .sp-navBtn > span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #747474;
    border-radius: 50px;
    transition: all .5s;
  }
  .sp-navBtn > span::after {
    top: 12px;
  }
  .sp-navBtn > span > span::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #747474;
    border-radius: 50px;
    transition: all .5s;
  }
  .sp-navBtn.-open > span::before,
  .sp-navBtn.-open > span::after {
    width: 22px;
  }
  .sp-navBtn.-open > span::before {
    transform: rotate(45deg) translate(8px, 3px);
  }
  .sp-navBtn.-open > span::after {
    transform: rotate(-45deg) translate(5px, -1px);
  }
  .sp-navBtn.-open > span > span::before {
    left: 10px;
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .sp-navBtn {
    top: 13px;
  }
}