@charset "UTF-8";
/* =================================
女性活躍推進ページ用スコープ。
コンテンツ全体のラッパー .l-legacyDiversity（= .hero-cat）に旧サイトの
テキスト基準を当てる。旧サイトは html{font-size:62.5%}(1rem=10px)前提だが、
新CSS(ヘッダー/フッター)は 1rem=16px のため、rem は使わず px 相当に固定して
新CSSのルート font-size に依存しないようにする。body に当てると新ヘッダー/
フッターへ漏れるため、必ずこのラッパー配下に限定する。
================================= */
.l-legacyDiversity {
  font-family: "游ゴシック","YuGothic","ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,sans-serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: normal;
  color: #2B2B2B;
}

/* 新 common.css の img:not([width]){width:100%} 強制を打ち消し、旧の画像サイズを復元 */
.l-legacyDiversity img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* =================================
list-anc（アンカーリスト）
旧 common.css（old_source/src/css/common.css）より移植。
新 common.css には存在せず、ボタン枠線・矢印・ホバー等の基底スタイルが
欠落していたため、女性活躍推進ページ用にここへ切り出して追加。
※ diversity.css 由来の .member-list__content 上書きより「前」に置くこと
（旧サイトは common.css→diversity.css の順で読み込み、diversity 側が勝つ）。
================================= */
.list-anc {
  margin: 0 0 0 -5px;
  padding: 0;
  font-size: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.list-anc li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0 0 5px;
}

.list-anc li a {
  display: table;
  width: 100%;
  text-decoration: none;
}

.list-anc li a > span {
  position: relative;
  display: table-cell;
  height: 30px;
  padding: 5px 15px 5px 10px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ccc;
  color: #222;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 1px #eee;
          box-shadow: 0 1px 1px #eee;
}

.list-anc li a > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7px;
  width: 4px;
  height: 4px;
  margin: auto;
  vertical-align: middle;
  border-top: 2px solid #003398;
  border-right: 2px solid #003398;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.list-anc li a > span:hover {
  color: #fff;
  background: #003398;
}

.list-anc li a > span:hover::after {
  border-color: #fff;
}

.list-anc.s-col-2 li {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .list-anc.s-col-2 li {
    width: 100%;
  }
}

.list-anc.s-col-3 li {
  width: 33.33333%;
}

@media screen and (max-width: 768px) {
  .list-anc.s-col-3 li {
    width: 100%;
  }
}

.list-anc.s-col-4 li {
  width: 25%;
}

@media screen and (max-width: 768px) {
  .list-anc.s-col-4 li {
    width: 100%;
  }
}

.list-anc.s-col-5 li {
  width: 20%;
}

.list-anc.s-col-6 li {
  width: 16.66666%;
}

/* =================================
共通項目
================================= */
.hero-cat {
  display: block;
  padding-top: 75px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .hero-cat {
    padding-top: 60px;
  }
}

.hero-cat .c-title {
  text-align: center;
}

.hero-cat a[target="_blank"]::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 18px;
  height: 18px;
  background-image: url(/assets/images/project/diversity/main_11.png);
  background-repeat: no-repeat;
  background-position: center center;
}

.top-visual {
  max-width: 1024px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .top-visual {
    display: block;
    height: 100%;
  }
}

.top-visual::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/assets/images/project/diversity/main_top-visual.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .top-visual::before {
    background-position: center top;
  }
}

.top-visual::after {
  content: "";
  display: block;
  width: 250px;
  height: 250px;
  background-image: url(/assets/images/project/diversity/main_2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -100px;
  bottom: -100px;
  z-index: -1;
}

.top-visual h1 {
  position: relative;
  width: 65%;
  padding: 200px 80px 0px 80px;
}

@media screen and (max-width: 768px) {
  .top-visual h1 {
    width: 80vw;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 18vw;
    right: 0;
    left: 0;
    margin: auto;
  }
}

.top-visual .concept {
  width: 40%;
  padding-top: 75px;
}

@media screen and (max-width: 768px) {
  .top-visual .concept {
    position: relative;
    padding-top: 55%;
    width: 100%;
  }
}

.top-visual .concept h2 {
  position: relative;
}

.top-visual .concept h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(/assets/images/project/diversity/main_4.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .top-visual .concept h2::after {
    top: 0;
    background-size: 90%;
  }
}

.member-list {
  max-width: 1024px;
  margin: 0 auto;
  padding-top: 100px;
  position: relative;
}

.member-list::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-image: url(/assets/images/project/diversity/main_5.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .member-list::after {
    background-size: 90%;
  }
}

.member-list__content {
  background-color: papayawhip;
  background-image: url(/assets/images/project/diversity/haikei.png);
  padding: 64px;
}

@media screen and (max-width: 768px) {
  .member-list__content {
    padding: 30px 15px 60px 15px;
  }
}

.member-list__content .scrolltop {
  display: block;
  margin: 8px 0px 0px auto;
  width: 10em;
  padding: 2px 20px 2px 20px;
  background-color: #fff;
  color: #2b2b2b;
  text-decoration: none;
}

.member-list__content .scrolltop::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  width: 3px;
  height: 8px;
  border-top: 0.2em solid #91aa00;
  border-right: 0.2em solid #91aa00;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.member-list__content .list-anc {
  font-size: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 10px;
  -webkit-column-gap: 10px;
          column-gap: 10px;
}

.member-list__content li {
  background-color: #fff;
  padding: 0;
  width: 170px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .member-list__content li {
    width: 150px;
  }
}

.member-list__content li a span {
  color: #434e10;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .member-list__content li a span {
    padding: 0;
  }
}

.member-list__content li a span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 10px;
  height: 10px;
  margin: auto;
  vertical-align: middle;
  border-top: 2px solid #434e10;
  border-right: 2px solid #434e10;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .member-list__content li a span::after {
    width: 6px;
    height: 6px;
  }
}

.member-list__content li a span:hover {
  background-color: #434e10;
}

.member-list__content h3 {
  background-color: #fff;
  margin-top: 43px;
  padding-left: 1em;
  font-size: 26px;
  font-weight: 400;
  color: #434e10;
}

.member-list__content .scroll-list {
  position: relative;
}

@media screen and (max-width: 768px) {
  .member-list__content .scroll-list {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 768px) {
  .member-list__content .scroll-list::before {
    content: "";
    display: block;
    width: 130px;
    height: 130px;
    background-image: url(/assets/images/project/diversity/main_swipe.png);
    background-repeat: no-repeat;
    opacity: 0.7;
    position: absolute;
    top: 40%;
    right: 0;
    left: 0;
    margin: auto;
  }
}

.member-list__content .scroll-list.scrolled::before {
  opacity: 0;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

.member-list__content .scroll-list table {
  width: 100%;
  margin-top: 30px;
  line-height: 1.7;
  border-collapse: collapse;
}

@media screen and (max-width: 768px) {
  .member-list__content .scroll-list table {
    table-layout: fixed;
  }
}

.member-list__content .scroll-list table th {
  background-color: #91aa00;
  height: 80px;
  color: #fff;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .member-list__content .scroll-list table th {
    padding: 1em;
  }
}

.member-list__content .scroll-list table th.list-head01 {
  width: 28%;
}

@media screen and (max-width: 768px) {
  .member-list__content .scroll-list table th.list-head01 {
    width: 200px;
  }
}

.member-list__content .scroll-list table th.list-head02 {
  width: 12%;
}

@media screen and (max-width: 768px) {
  .member-list__content .scroll-list table th.list-head02 {
    width: 100px;
    font-size: 14px;
  }
}

.member-list__content .scroll-list table th.list-head03 {
  width: 15%;
}

@media screen and (max-width: 768px) {
  .member-list__content .scroll-list table th.list-head03 {
    width: 140px;
  }
}

.member-list__content .scroll-list table th.list-head04 {
  width: 35%;
}

@media screen and (max-width: 768px) {
  .member-list__content .scroll-list table th.list-head04 {
    width: 400px;
  }
}

.member-list__content .scroll-list table th.list-head05 {
  width: auto;
  border-right: none;
}

@media screen and (max-width: 768px) {
  .member-list__content .scroll-list table th.list-head05 {
    width: 80px;
  }
}

.member-list__content .scroll-list table tr td {
  background-color: #fff;
  padding: 1em;
  border: solid 1px #dbdbdb;
}

.member-list__content .scroll-list table tr td:first-of-type {
  border-left: none;
}

.member-list__content .scroll-list table tr td:last-of-type {
  border-right: none;
}

.member-list__content .scroll-list table tr td.list-center {
  text-align: center;
}

.member-list__content .scroll-list table tr td.list-notes {
  padding: 2em;
}

.member-list__content .scroll-list table tr td.reported::after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(/assets/images/project/diversity/main_10.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 auto;
}

.member-list__content .scroll-list table tr td.eruboshi01::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(/assets/images/project/diversity/main_eruboshi01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 auto;
}

.member-list__content .scroll-list table tr td.eruboshi02::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(/assets/images/project/diversity/main_eruboshi02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 auto;
}

.member-list__content .scroll-list table tr td.eruboshi03::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(/assets/images/project/diversity/main_eruboshi03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 auto;
}

.member-list__content .scroll-list table tr td.eruboshi04::after {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(/assets/images/project/diversity/main_eruboshi04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 auto;
}
