/* ラッパー */
.em-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}

.em-item-outer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* タイトル */
.em-item-title {
  background-color: #0AA546;
  font-size: 33px;
  color: white;
  font-weight: 600;
  /* min-height: 90px; */
  display: flex;
  /* align-items: center; */
  padding: 28px 30px;
  gap: 20px;
  justify-content: flex-start;
  line-height: 1;
  border-bottom: solid 1px #008D36;
}

.em-item-title:before {
  content: "";
  display: flex;
  height: auto;
  width: 6px;
  background-color: white;
}

.em-item-title2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  padding: 20px;
  background-color: #F9F9F9;
  border-top: solid 1px #E6E6E6;
  display: flex;
  position: relative;
  gap: 20px;
  align-items: center;
}
.em-item-title2.ensv {
  font-size: 22px;
  line-height: 1.2;
}
.em-item-title3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 20px;
  background-color: white;
  border-bottom: solid 1px black;
  display: flex;
  position: relative;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: -10px;
}

.em-item-title4 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  margin-bottom: -20px;
}

.em-item-title4:before {
  content: "・"
}

.em-item-title3:before {
  content: "";
  display: flex;
  width: 7px;
  height: 7px;
  background-color: #0aa546;
  position: relative;
  top: 7px;
}

.em-item-title2:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0px;
  background-color: #0AA546;
  display: flex;
  width: 50px;
  height: 1px;
}

/* ナビゲーション */
.em-item-link {
  display: flex;
  width: calc(100% - 2px);
  background-color: #0aa546;
  gap: 1px;
  border-left: solid 1px #0aa546;
  border-right: solid 1px #0aa546;
  margin-top: -50px;
}

.em-item-link li {
  width: 25%;
}

.em-item-link li.active {}

.em-item-link li a {
  color: black;
  text-decoration: none;
  background-color: #F9F9F9;
  display: flex;
  justify-content: space-between;
  padding: 27px 20px;
  line-height: 1;
  align-items: center;
  transition: .3s;
}

.em-item-link.ensv li a {
	min-height: 45px;
	line-height: 1.4;
}

.em-item-link li a:hover {
  background-color: white;
  color: #606060;
}

.em-item-link li a:after {
  content: "";
  position: relative;
  background-color: #0aa546;
  width: 7px;
  height: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: flex;
  padding: 0;
  margin: 0;
}

.em-item-link li.active a:after {
  transform: rotate(90deg);
}

.em-item-news {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
}

.em-item-news li {
  /* border-bottom: dashed; */
  width: 100%;
  display: flex;
  border-bottom: dotted 1px #CCC;
  padding: 7px 0px;
  gap: 30px;
}

.em-item-news.ensv, .em-item-news.ensv li {
  gap: 0;
}

.em-item-news a {
  text-decoration: none;
  color: black;
  display: flex;
  gap: 30px;
  align-items: center;
  width: 100%;
  display: flex;
  transition: .3s;
}

.em-item-news a:hover {
  opacity: 0.8;
  text-decoration: underline !important;
}

.em-item-news .title {
  display: block;
  align-items: center;
  gap: 5px;
}

.em-item-news .date {
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.em-item-news a.pdf .title:after,
.em-item-blist li ul li a.pdf:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 18px;
  background: url(https://www.nidec.com/files/user/cmn/img/c_icon_pdf_2.png) no-repeat center;
  background-size: contain;
  vertical-align: middle;
  margin: -0.2em 5px 0;
}

/* 本文 */
.em-item-wrap p {}

.em-item-wrap>p {}

/* セクション共通 */
.em-item-section {
  display: flex;
  border-radius: 4px;
  border: solid 1px #E5E5E5;
}

.em-item-section dl {
  display: flex;
  width: 100%;
}

.em-item-section h2 {}

.em-item-section dt {
  min-width: calc(290px - 40px);
  background-color: #F6F6F6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.em-item-section dd {
  display: flex;
  padding: 20px;
  flex-direction: column;
  gap: 30px;
  width: calc(100% - 40px);
}

/* セクション見出し・ボタン */
.em-item-section h2 {
  font-size: 24px;
}

.base_btn {
  background-color: #009b4a;
  color: white;
  border-radius: 4px;
  text-decoration: none !important;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
}

.base_btn:hover {
  opacity: 0.8;
}

.base_btn:after {
  content: "";
  position: relative;
  background-color: white;
  width: 7px;
  height: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: flex;
  padding: 0;
  margin: 0;
}

/* セクション内テキスト */
.em-item-section dd p {}

/* 画像 */
.pc {}

/* 便利セレクタ */
.em-item-link li.active a {
  background-color: white;
  /* opacity: 0.7; */
}

.em-item-section dt .base_btn {
  /* padding: 10px 20px; */
}

.em-item-section dd img.pc {}

.em-item-wrap>p:first-of-type {}

.em-item-section+.em-item-section {}

.em-item-alist {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.em-item-alist ul {}

.em-item-alist li {
  display: flex;
  gap: 30px;
}

.em-item-alist span {
  border: solid 1px;
  border-color: #0aa546;
  padding: 0px 20px;
  display: flex;
  justify-content: center;
  min-width: 80px;
  position: relative;
  align-items: center;
}

.em-item-alist.ensv span {
  min-width: 160px;
}

.em-item-alist span:after {
  content: "";
  width: 20px;
  height: 1px;
  display: flex;
  position: absolute;
  /* inset: 0; */
  right: -20px;
  background-color: #0aa546;
  top: 50%;
  /* bottom: 0; */
}

.em-item-alist p {}

.em-item-blist {
  display: flex;
  flex-direction: column;
}

.em-item-blist li {
  display: flex;
  gap: 30px;
  padding: 15px 10px;
  border-bottom: solid 1px #E6E6E6;
  position: relative;
}

.em-item-blist li:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  display: flex;
  width: 5px;
  height: 1px;
  background-color: black;
}

.em-item-blist span {
  width: 100%;
  max-width: 130px;
  font-weight: 600;
}

.em-item-blist a {
  text-decoration: none;
  color: black;
}

.em-item-blist p {
  display: flex;
  align-items: center;
  gap: 5px;
}

.em-item-blist li ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}

.em-item-blist li ul li {
  padding: 0;
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
}

.em-item-blist li ul li a:before {
  content: "・";
  position: absolute;
  left: 0;
}

.em-item-blist li ul li:after {
  display: none;
}

.em-item-blist li ul a {
  display: block;
  width: 100%;
  align-items: center;
  /* gap: 5px; */
  transition: .3s;
  padding-left: 20px;
  position: relative;
}

.em-item-blist li ul a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.em-item-number {
  background-color: #0AA546;
  color: white;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 4px;
}

.em-item-title4-txt {
  margin-left: 20px;
}

@media screen and (max-width: 1060px) {
  .em-item-news li {
    flex-direction: column;
    gap: 5px;
  }

  .em-item-wrap {
    gap: 30px;
  }

  .em-item-section dt {
    gap: 20px;
    min-width: unset;
    /* width: 100%; */
  }

  .em-item-section dl {
    flex-direction: column;
  }

  .em-item-link li a {
    font-size: 1.3rem;
    padding: 4vw;
  }
  .em-item-link.ensv li a {
    min-height: unset;
  }

  .em-item-link.ensv li:last-child {
	  padding-bottom: 1px;
  }
  .em-item-title {
    font-size: 5.7vw;
    padding: 4vw;
    line-height: 8vw;
    gap: 2vw;
  }

  .em-item-link {
    flex-direction: column;
    margin-top: -30px;
  }

  .em-item-link li {
    width: 100%;
  }

  .em-ads .em-item-title {
    /* font-size: 4.6rem; */
    padding: 4vw;
    gap: 3vw;
  }

  .em-item-blist li {
    flex-direction: column;
    gap: 10px;
  }

  .em-item-blist span {
    max-width: unset;
    width: 100%;
  }

  .em-ads .em-item-news a.pdf .title:after,
  .em-ads .em-item-blist li ul li a.pdf:after {
    transform: scale(1.9);
    margin-left: 1.8vw;
  }

  .em-ads .em-item-link li a {
    padding: 4vw;
  }

  .em-ads .em-item-title2 {
    padding: 4vw;
    line-height: 6vw;
  }

  .em-ads .em-item-title3 {
    padding: 4vw;
    gap: 4vw;
    margin-bottom: 0vw;
  }

  .em-ads .em-item-blist li {
    padding: 4vw;
  }

  .em-ads .em-item-blist li ul li {
    padding: 0vw 0vw;
  }

  .em-ads .em-item-title3:before {
    width: 1.5vw;
    height: 1.5vw;
    top: 1.5vw;
  }

  .em-ads .em-item-blist li ul {
    gap: 2vw;
  }

  .em-ads .em-item-blist li ul a {
    padding-left: 4vw;
  }

  .em-ads .em-item-alist li {
    flex-direction: column;
    gap: 5vw;
  }

  .em-ads .em-item-alist span {
    padding: 2.5vw;
    min-width: unset;
    width: calc(100% - 5vw);
    font-weight: 600;
  }

  .em-ads .em-item-alist span:after {
    left: auto;
    right: auto;
    bottom: -4vw;
    width: 1px;
    height: 40px;
    top: unset;
  }

  .em-ads .em-item-number {
    padding: 2vw;
    width: 4vw;
    height: 4vw;
  }

  .em-ads .em-item-title:before {
    width: 2vw;
  }

  .em-item-link li a:after {
    width: 2vw;
    height: 2.5vw;
  }
}

.is-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }

  .is-pc {
    display: none;
  }
}

@media screen and (max-width: 990px) {
  .em-ads .is-sp {
    display: block;
  }

  .em-ads .is-pc {
    display: none;
  }
}

a.pdf[href*=".pdf"]:after {
  display: none;
}