@charset "UTF-8";
/* ================================================================================
COMMON
================================================================================ */
.title {
  text-align: center;
}
.title .en {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
@media screen and (max-width: 736px) {
  .title .en {
    margin-bottom: 9px;
  }
}
.title .jp {
  display: block;
  font-weight: 300;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.1em;
  color: #666;
}

.view-more {
  position: relative;
  width: 310px;
  height: 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EFEFEF;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.1em;
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 736px) {
  .view-more {
    width: calc(100% - 40px);
    height: 50px;
  }
}
.view-more .label {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 736px) {
  .view-more .label {
    font-size: 14px;
    line-height: 14px;
  }
}
.view-more .arrow {
  display: block;
  width: 8px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 1;
  margin-top: -6px;
}
.view-more .arrow .st0 {
  fill: #C4C4C4;
}
@media screen and (max-width: 736px) {
  .view-more .arrow {
    width: 9px;
    height: 14px;
    margin-top: -7px;
  }
}
@media screen and (min-width: 737px) {
  .view-more .arrow {
    transition-duration: 0.3s;
    transition-property: right;
  }
  .view-more::before {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    width: 0%;
    height: 100%;
    transition-duration: 0.3s;
    transition-property: width;
    content: '';
  }
  .view-more:hover {
    color: #FFF;
  }
  .view-more:hover::before {
    width: 100%;
    transition-duration: 0.2s;
  }
  .view-more:hover .arrow {
    right: 20px;
    transition-duration: 0.2s;
  }
  .view-more:hover .arrow .st0 {
    fill: #FFF;
  }
}

@media screen and (min-width: 737px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .sp-only {
    display: block;
  }
}

@media screen and (min-width: 737px) {
  .pc-only {
    display: block;
  }
}
@media screen and (max-width: 736px) {
  .pc-only {
    display: none;
  }
}

/* ================================================================================
HEADER
================================================================================ */
.header {
  position: relative;
  width: 100%;
  height: 120px;
  background-color: #000;
}
@media screen and (max-width: 736px) {
  .header {
    height: 60px;
  }
}
.header__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #000;
  z-index: 9999;
  background-repeat: no-repeat;
  background-position: center 0px;
  background-size: 1280px auto;
}
@media screen and (max-width: 736px) {
  .header__container {
    height: 60px;
  }
}
.header__wrapper {
  position: relative;
  width: 960px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 736px) {
  .header__wrapper {
    width: 100%;
  }
}
.header__logo {
  position: absolute;
  top: 41px;
  left: 0;
  width: 136px;
  height: 19px;
}
@media screen and (max-width: 736px) {
  .header__logo {
    top: 23px;
    left: 10px;
  }
}
.header__logo > a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 9999px;
  text-indent: -1000%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url("../16_top_img/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.header__menu-btn {
  display: block;
  position: absolute;
  top: 15px;
  right: 10px;
  width: 30px;
  height: 30px;
}
.header__menu-btn > span, .header__menu-btn::before, .header__menu-btn::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #C4C4C4;
  content: '';
  transition-duration: 0.3s;
}
.header__menu-btn > span {
  top: 14px;
}
.header__menu-btn::before {
  top: 4px;
}
.header__menu-btn::after {
  top: 24px;
}
.header__menu-btn.isOpen > span {
  opacity: 0;
}
.header__menu-btn.isOpen::before {
  top: 14px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header__menu-btn.isOpen::after {
  top: 14px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (min-width: 737px) {
  .header__menu-btn {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .header__scroll-container {
    position: absolute;
    top: 60px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 60px);
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #000000;
    transition-duration: 0.3s;
    transition-property: left;
  }
  .header__scroll-container.isOpen {
    left: 0%;
  }
}
@media screen and (max-width: 736px) {
  .header__scroll-contents {
    position: relative;
    width: 100%;
    min-height: 100%;
    background-color: #000000;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-position: center -60px;
    background-size: 375px auto;
  }
}
@media screen and (min-width: 737px) {
  .header__search {
    position: absolute;
    top: 27px;
    right: 223px;
  }
}
.header__sc-banner {
  display: block;
  line-height: 9999px;
  text-indent: -1000%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url("../16_top_img/sc_banner.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 737px) {
  .header__sc-banner {
    position: absolute;
    top: 10px;
    right: 0;
    width: 192px;
    height: 60px;
    transition-duration: 0.3s;
    transition-property: filter;
  }
  .header__sc-banner:hover {
    transition-duration: 0.6s;
    -webkit-filter: brightness(1.3);
    filter: brightness(1.3);
  }
}
@media screen and (max-width: 736px) {
  .header__sc-banner {
    background-image: url("../16_top_img/sc_banner_sp.png");
    width: 84.93333vw;
    height: 26.66667vw;
    margin: 0 auto;
  }
}

.header {
  /* ================= ナビゲーション ================= */
}
@media screen and (min-width: 737px) {
  .header__nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
  }
}
.header__nav-list {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 737px) {
  .header__nav-list {
    height: 100%;
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 737px) {
  .header__nav-item {
    position: relative;
    width: 192px;
    height: 40px;
  }
  .header__nav-item::before, .header__nav-item::after {
    position: absolute;
    top: 14px;
    left: 0;
    width: 1px;
    height: 12px;
    background-color: #222222;
    content: '';
  }
  .header__nav-item::after {
    left: auto;
    right: 0;
    display: none;
  }
  .header__nav-item:last-child::after {
    display: block;
  }
  .header__nav-item.selected > a::before {
    width: 100%;
    transition-duration: 0.6s;
  }
}
@media screen and (max-width: 736px) {
  .header__nav-item {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: auto;
  }
  .header__nav-item > a {
    height: 70px;
    border-bottom: 2px solid rgba(34, 34, 34, 0.8);
  }
  .header__nav-item:first-child > a {
    border-top: 2px solid rgba(34, 34, 34, 0.8);
  }
  .header__nav-item.isOpen > a::before {
    display: none;
  }
}
.header__nav-item > a {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #FFF;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 40px;
}
@media screen and (min-width: 737px) {
  .header__nav-item > a::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: #023793;
    content: '';
    transform: translateX(-50%);
    transition-duration: 0.3s;
    transition-property: width;
  }
}
@media screen and (max-width: 736px) {
  .header__nav-item > a {
    text-align: left;
    font-size: 16px;
    line-height: 68px;
    padding-left: 20px;
  }
  .header__nav-item > a::before {
    position: absolute;
    top: 28px;
    right: 24px;
    width: 2px;
    height: 16px;
    background-color: #666;
    content: '';
  }
  .header__nav-item > a::after {
    position: absolute;
    top: 35px;
    right: 17px;
    width: 16px;
    height: 2px;
    background-color: #666;
    content: '';
  }
}

.header__submenu {
  pointer-events: none;
  position: relative;
  width: 100%;
  height: 191px;
  transition-duration: 0.3s;
  transition-property: height;
}
@media screen and (max-width: 736px) {
  .header__submenu {
    display: none;
  }
}
.header__submenu-container {
  pointer-events: auto;
  width: 100%;
  height: 0%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition-duration: 0.3s;
  transition-property: height;
}
.open .header__submenu-container {
  transition-duration: 0.6s;
  height: 100%;
}
.header__submenu-list-container {
  display: none;
}
.header__submenu-list {
  box-sizing: border-box;
}
@media screen and (min-width: 737px) {
  .header__submenu-list {
    width: 720px;
    height: 191px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
    padding-top: 21px;
    display: none;
  }
  .header__submenu-list--support {
    height: 223px;
  }
  .header__submenu-list--data {
    height: 70px;
  }
  .header__submenu-list--company {
    height: 100px;
  }
  .header__submenu .header__submenu-list {
    display: flex;
  }
}
@media screen and (max-width: 736px) {
  .header__submenu-list {
    display: flex;
    flex-wrap: wrap;
    background-color: #111111;
  }
}
.header__submenu-item {
  position: relative;
  width: 238px;
  margin: 6px 0;
  line-height: 0;
}
@media screen and (min-width: 737px) {
  .header__submenu-list--support .header__submenu-item {
    width: 360px;
  }
  .header__submenu-item:first-child {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .header__submenu-item {
    width: 50%;
    margin: 0;
  }
  .header__submenu-item:nth-child(odd)::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 1px;
    background-color: #000;
    content: '';
  }
  .header__submenu-item:nth-child(odd)::after {
    position: absolute;
    top: 25px;
    right: 0;
    width: 1px;
    height: 20px;
    background-color: #000;
    content: '';
  }
}
.header__submenu-item > a {
  color: #FFF;
  text-decoration: none;
  font-size: 12px;
  line-height: 18px;
}
@media screen and (min-width: 737px) {
  .header__submenu-item > a {
    transition-duration: 0.1s;
    transition-property: opacity;
  }
  .header__submenu-item > a:hover {
    transition-duration: 0.3s;
    opacity: 0.5;
  }
}
@media screen and (max-width: 736px) {
  .header__submenu-item > a {
    display: flex;
    align-items: center;
    height: 71px;
    font-size: 15px;
    line-height: 18px;
    padding: 0 5.33333vw;
  }
}

/* ================= 検索 ================= */
.search {
  box-sizing: border-box;
  width: 130px;
  height: 30px;
  border-bottom: 1px solid #333;
  background-image: url("../16_top_img/icon_search.png");
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: -2px 1px;
}
@media screen and (max-width: 736px) {
  .search {
    width: 100%;
    height: 70px;
    border-bottom: 2px solid rgba(34, 34, 34, 0.8);
    margin-bottom: 40px;
    background-position: right 16px top 25px;
  }
}
.search__wrapper {
  position: relative;
  padding-left: 24px;
  height: 100%;
}
@media screen and (max-width: 736px) {
  .search__wrapper {
    padding-left: 20px;
  }
}
.search__wrapper .g_box {
  width: 100%;
  border: none !important;
  background: none !important;
  text-indent: 0px !important;
  color: #FFF !important;
  font-size: 12px !important;
  line-height: 12px !important;
  padding: 0 !important;
}
.search__wrapper .g_box:focus {
  outline: none !important;
}
@media screen and (max-width: 736px) {
  .search__wrapper .g_box {
    font-size: 16px !important;
    line-height: 66px !important;
  }
  .search__wrapper .g_box::placeholder {
    color: #FFF;
  }
}

/* ================================================================================
FV
================================================================================ */
.special-contents {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.special-contents__info {
  position: absolute;
  top: 50%;
  right: 15.6vw;
  width: 350px;
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
@media screen and (max-width: 736px) {
  .special-contents__info {
    width: 200px;
    right: 0;
    margin-top: -4px;
  }
}
.special-contents__copy {
  font-size: 45px;
  line-height: 60px;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 22px;
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', 'Roboto', sans-serif;
}
.special-contents__copy > span {
  display: inline-block;
  padding-left: 8px;
}
@media screen and (max-width: 736px) {
  .special-contents__copy {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .special-contents__copy > span {
    padding-left: 4px;
  }
}
.special-contents__more {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 50px;
  border: 1px solid #FFF;
  color: #FFF;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
  margin-left: 8px;
}
@media screen and (max-width: 736px) {
  .special-contents__more {
    width: 130px;
    height: 32px;
    font-size: 10px;
    line-height: 10px;
    margin-left: 3px;
  }
}
.special-contents__more .label {
  position: relative;
  z-index: 1;
}
.special-contents__more .arrow {
  display: block;
  width: 9px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 19px;
  margin-top: -8px;
  z-index: 1;
}
.special-contents__more .arrow > img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 736px) {
  .special-contents__more .arrow {
    width: 6px;
    height: 11px;
    right: 9px;
    margin-top: -5.5px;
  }
}
@media screen and (min-width: 737px) {
  .special-contents__more::before {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFF;
    width: 0%;
    height: 100%;
    transition-duration: 0.3s;
    transition-property: width;
    content: '';
  }
  .special-contents__more .arrow {
    transition-duration: 0.3s;
    transition-property: right;
  }
  .special-contents__more:hover {
    color: #666;
  }
  .special-contents__more:hover::before {
    width: 100%;
    transition-duration: 0.2s;
  }
  .special-contents__more:hover .arrow {
    right: 9px;
    transition-duration: 0.2s;
  }
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  margin-top: -60px;
  overflow: hidden;
}
@media screen and (max-width: 736px) {
  .video-bg {
    height: calc(100% + 80px);
    margin-top: -40px;
  }
}
.video-bg__container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.video-bg__container > iframe {
  width: 100%;
  height: 100%;
}

/* ================================================================================
TOPICS
================================================================================ */
.topics {
  box-sizing: border-box;
  padding-top: 70px;
  padding-bottom: 84px;
  background-color: #EFEFEF;
}
@media screen and (max-width: 736px) {
  .topics {
    padding-top: 47px;
    padding-bottom: 40px;
  }
}
.topics__title {
  margin-bottom: 38px;
}
@media screen and (max-width: 736px) {
  .topics__title {
    margin-bottom: 28px;
  }
}
.topics__list {
  width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 736px) {
  .topics__list {
    width: calc(100% - 20px);
  }
}
.topics__list-item {
  width: 100%;
  margin-bottom: 40px;
  padding-top: 36px;
  padding-bottom: 40px;
  background-color: #FFF;
}
.topics__list-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 736px) {
  .topics__list-item {
    padding-top: 34px;
  }
}
.topics__item-title {
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', 'Roboto', sans-serif;
}
@media screen and (max-width: 736px) {
  .topics__item-title {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
  }
}
.topics__item-title .en {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 736px) {
  .topics__item-title .en {
    font-size: 22px;
  }
}
.topics__container {
  display: flex;
  justify-content: space-between;
  width: 800px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 736px) {
  .topics__container {
    display: block;
    width: calc(100% - 40px);
    margin-bottom: 30px;
  }
}
.topics__video {
  width: 400px;
  height: 225px;
}
.topics__video > iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 736px) {
  .topics__video {
    width: 100%;
    height: 177px;
    margin-bottom: 30px;
  }
}
.topics__contents {
  width: 360px;
}
@media screen and (max-width: 736px) {
  .topics__contents {
    width: 100%;
  }
}
.topics__body {
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.1em;
  color: #666;
  margin-top: -6px;
  margin-bottom: 18px;
}
@media screen and (max-width: 736px) {
  .topics__body {
    font-size: 16px;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 22px;
  }
}
.topics__img {
  margin-bottom: 18px;
}
@media screen and (max-width: 736px) {
  .topics__img {
    margin-bottom: 32px;
  }
}
.topics__img > img {
  width: 100%;
  height: auto;
}
.topics__info-title {
  position: relative;
  box-sizing: border-box;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dotted #E5E5E5;
}
@media screen and (max-width: 736px) {
  .topics__info-title {
    margin-bottom: 18px;
  }
}
.topics__info-title > span {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.1em;
  color: #666;
  border-left: 4px solid #666;
  padding-left: 8px;
}
@media screen and (max-width: 736px) {
  .topics__info-title > span {
    font-size: 18px;
    line-height: 20px;
  }
}
.topics__info-container {
  width: 100%;
  height: 90px;
  overflow: auto;
  font-size: 13px;
  line-height: 18px;
  word-break: break-all;
}
@media screen and (max-width: 736px) {
  .topics__info-container {
    height: 120px;
    font-size: 13px;
    line-height: 21px;
  }
}
.topics__link-btn {
  position: relative;
  width: 360px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.1em;
  color: #FFF;
  text-decoration: none;
}
@media screen and (max-width: 736px) {
  .topics__link-btn {
    width: calc(100% - 40px);
    height: 50px;
  }
}
.topics__link-btn .label {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 736px) {
  .topics__link-btn .label {
    font-size: 14px;
    line-height: 14px;
  }
}
.topics__link-btn .arrow {
  display: block;
  width: 9px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  margin-top: -7.5px;
}
.topics__link-btn .arrow .st0 {
  fill: #C4C4C4;
}
@media screen and (max-width: 736px) {
  .topics__link-btn .arrow {
    width: 9px;
    height: 14px;
    margin-top: -7px;
  }
}
@media screen and (min-width: 737px) {
  .topics__link-btn .arrow {
    transition-duration: 0.3s;
    transition-property: right;
  }
  .topics__link-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.2);
    content: '';
    transition-duration: 0.3s;
    transition-property: width;
  }
  .topics__link-btn:hover::before {
    width: 100%;
    transition-duration: 0.2s;
  }
  .topics__link-btn:hover .arrow {
    right: 10px;
    transition-duration: 0.2s;
  }
}

/* ================================================================================
PRODUCT
================================================================================ */
.product {
  width: 960px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 134px;
}
@media screen and (max-width: 736px) {
  .product {
    width: calc(100% - 20px);
    padding-top: 76px;
    padding-bottom: 76px;
  }
}
.product__title {
  margin-bottom: 38px;
}
@media screen and (max-width: 736px) {
  .product__title {
    margin-bottom: 30px;
  }
}
.product__list {
  margin-bottom: 26px;
  *zoom: 1;
}
.product__list:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 736px) {
  .product__list {
    margin-bottom: 26px;
  }
}

/* ================================================================================
SUPPORT
================================================================================ */
.support {
  width: 960px;
  margin: 0 auto;
  padding-bottom: 115px;
}
@media screen and (max-width: 736px) {
  .support {
    width: calc(100% - 20px);
    padding-bottom: 75px;
  }
}
.support__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 736px) {
  .support__title {
    margin-bottom: 29px;
  }
}

/* ================================================================================
PRODUCT-NEWS
================================================================================ */
.product-news {
  padding-bottom: 75px;
}
.product-news__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 736px) {
  .product-news__title {
    margin-bottom: 30px;
  }
}
.product-news__list-container {
  margin-bottom: 40px;
  *zoom: 1;
  border-top: 1px dotted #e5e5e5;
}
.product-news__list-container:after {
  content: "";
  display: table;
  clear: both;
}

/* ================================================================================
INFORMATION
================================================================================ */
.info {
  padding-bottom: 80px;
}
.info__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 736px) {
  .info__title {
    margin-bottom: 30px;
  }
}
.info__list-container {
  margin-bottom: 40px;
  *zoom: 1;
  border-top: 1px dotted #e5e5e5;
}
.info__list-container:after {
  content: "";
  display: table;
  clear: both;
}
