/*==================================================
  topMain
==================================================*/
.topMain {
  width: 100%;
  padding: 0 0 40px 0;
  background-color: var(--lightGray);
  background-image: url(/images/bg_dot_gray.png);
}

/*==================================================
  topVi
==================================================*/
.topVi {
  width: 100%;
  margin: 0;
  padding: 0;
  background-image: url(/images/bg_image.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.topVi .topVi__block {
  background-image: url(/images/bg_dot_white.png);
}
.topVi .topVi__inner {
  width: 100%;
  height: calc(100vh - 140px);
  margin: 0;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .topVi .topVi__inner {
    width: 700px;
    height: 400px;
    margin: 0 auto;
  }
}
@media print, screen and (min-width: 1200px) {
  .topVi .topVi__inner {
    width: 1180px;
    height: calc(100vh - 157px);
    padding: 0;
  }
}
@media print, screen and (min-width: 1600px) {
  .topVi .topVi__inner {
    height: 800px;
  }
}
.topVi .topVi__box {
  width: 100%;
}
.topVi .topVi__box .topVi__title {
  width: 320px;
  margin: 0 auto 30px auto;
}
@media print, screen and (min-width: 768px) {
  .topVi .topVi__box .topVi__title {
    width: 480px;
  }
}
@media print, screen and (min-width: 1200px) {
  .topVi .topVi__box .topVi__title {
    width: 1100px;
    margin-bottom: 40px;
  }
}
.topVi .topVi__box .topVi__mark {
  width: 280px;
  margin: 0 auto 30px auto;
}
@media print, screen and (min-width: 1200px) {
  .topVi .topVi__box .topVi__mark {
    width: 578px;
  }
}
.topVi .topVi__box .topVi__catch {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  color: var(--white);
}
@media print, screen and (min-width: 1200px) {
  .topVi .topVi__box .topVi__catch {
    font-size: 28px;
    font-size: 1.4rem;
  }
}

/*==================================================
  topDatabase
==================================================*/
.topDatabase {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--base-color);
}
.topDatabase ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.topDatabase ul li {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  line-height: 1.4;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .topDatabase ul li {
    width: 50%;
  }
}
@media print, screen and (min-width: 1200px) {
  .topDatabase ul li {
    width: 25%;
    transition: all 0.2s;
  }
  .topDatabase ul li::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    z-index: 50;
    opacity: 0;
    transition: all 0.2s;
  }
  .topDatabase ul li:hover::before {
    opacity: 1;
  }
  .topDatabase ul li:hover a .topDatabase__icon {
    top: -14px;
  }
}
.topDatabase ul li.topDatabase__openEquip {
  transition: all 0.2s;
  background: url(/images/bg_dot_white.png), linear-gradient(-90deg, rgb(30, 214, 222) 0%, rgb(13, 78, 225) 100%);
}
.topDatabase ul li.topDatabase__openEquip:hover::before {
  background: url(/images/bg_dot_white.png), linear-gradient(-90deg, rgb(102, 242, 249) 0%, rgb(21, 140, 224) 100%);
}
.topDatabase ul li.topDatabase__crd {
  background: url(/images/bg_dot_white.png), linear-gradient(-90deg, rgb(116, 195, 2) 0%, rgb(2, 139, 57) 100%);
}
.topDatabase ul li.topDatabase__crd:hover::before {
  background: url(/images/bg_dot_white.png), linear-gradient(-90deg, rgb(142, 222, 29) 0%, rgb(54, 156, 51) 100%);
}
.topDatabase ul li.topDatabase__results {
  background: url(/images/bg_dot_white.png), linear-gradient(-90deg, rgb(255, 173, 56) 0%, rgb(246, 86, 42) 100%);
}
.topDatabase ul li.topDatabase__results:hover::before {
  background: url(/images/bg_dot_white.png), linear-gradient(-90deg, rgb(255, 206, 56) 0%, rgb(246, 119, 43) 100%);
}
.topDatabase ul li.topDatabase__consultation {
  background: url(/images/bg_dot_white.png), linear-gradient(-90deg, rgb(185, 61, 193) 0%, rgb(100, 4, 131) 100%);
}
.topDatabase ul li.topDatabase__consultation:hover::before {
  background: url(/images/bg_dot_white.png), linear-gradient(-90deg, rgb(210, 55, 220) 0%, rgb(127, 6, 152) 100%);
}
.topDatabase ul li a {
  width: 100%;
  margin: 0;
  padding: 40px 20px;
  display: block;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  position: relative;
  z-index: 100;
}
.topDatabase ul li a .topDatabase__icon {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto 16px auto;
  position: relative;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 1200px) {
  .topDatabase ul li a .topDatabase__icon {
    transition: all 0.2s;
  }
}
.topDatabase ul li a .topDatabase__title {
  width: 100%;
  margin: 0 0 10px 0;
  font-size: 20px;
  font-size: 1rem;
  display: block;
  text-align: center;
}
@media print, screen and (min-width: 1200px) {
  .topDatabase ul li a .topDatabase__title {
    font-size: 26px;
    font-size: 1.3rem;
  }
}
.topDatabase ul li a .topDatabase__summary {
  width: 100%;
  display: block;
  font-size: 14px;
  font-size: 0.7rem;
  text-align: center;
}
@media print, screen and (min-width: 1200px) {
  .topDatabase ul li a .topDatabase__summary {
    font-size: 16px;
    font-size: 0.8rem;
  }
}

/*==================================================
  topNews
==================================================*/
.topNews {
  margin: 0;
  padding: 40px 20px;
}
@media print, screen and (min-width: 1200px) {
  .topNews {
    width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
  }
}
.topNews .topNews__mainTitleBlock {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media print, screen and (min-width: 1200px) {
  .topNews .topNews__mainTitleBlock {
    margin-bottom: 30px;
  }
}
.topNews .topNews__mainTitleBlock .topNews__mainTitle {
  margin: 0;
  padding: 14px 0 14px 20px;
  border-left: 1px solid var(--base-color);
}
@media print, screen and (min-width: 1200px) {
  .topNews .topNews__mainTitleBlock .topNews__mainTitle {
    padding: 20px 0 20px 30px;
  }
}
.topNews .topNews__mainTitleBlock .topNews__mainTitle .topNews__mainTitleEn {
  width: 100%;
  margin: 0 0 6px 0;
  padding: 0;
  display: block;
  font-size: 24px;
  font-size: 1.2rem;
  color: var(--base-color);
  line-height: 1;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 600;
}
@media print, screen and (min-width: 1200px) {
  .topNews .topNews__mainTitleBlock .topNews__mainTitle .topNews__mainTitleEn {
    font-size: 40px;
    font-size: 2rem;
  }
}
.topNews .topNews__mainTitleBlock .topNews__mainTitle .topNews__mainTitleJa {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  font-size: 12px;
  font-size: 0.6rem;
  line-height: 1;
  font-weight: 600;
}
@media print, screen and (min-width: 1200px) {
  .topNews .topNews__mainTitleBlock .topNews__mainTitle .topNews__mainTitleJa {
    font-size: 18px;
    font-size: 0.9rem;
  }
}
.topNews .topNews__mainTitleBlock .topNews__viewMore {
  margin: 0 0 0 auto;
  padding: 0;
  display: none;
}
@media print, screen and (min-width: 768px) {
  .topNews .topNews__mainTitleBlock .topNews__viewMore {
    display: block;
  }
}
.topNews .topNews__mainTitleBlock .topNews__viewMore a {
  margin: 0;
  padding: 0 24px 0 0;
  font-size: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--base-color-02);
  display: inline-block;
  text-decoration: none;
  background-image: url(/images/icon_arrow_primary_l_right.svg);
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 14px 14px;
  transition: all 0.2s;
}
@media print, screen and (min-width: 1200px) {
  .topNews .topNews__mainTitleBlock .topNews__viewMore a {
    font-size: 20px;
    font-size: 1rem;
  }
  .topNews .topNews__mainTitleBlock .topNews__viewMore a:hover {
    text-decoration: underline;
    background-position: right 0 center;
  }
}
.topNews .topNews__block {
  width: 100%;
  margin: 0;
  padding: 15px 20px 30px 20px;
  background-color: var(--white);
}
@media print, screen and (min-width: 1200px) {
  .topNews .topNews__block {
    padding: 40px 50px 50px 50px;
  }
}
.topNews .topNews__viewMoreSp {
  margin: 20px 0 0 0;
  padding: 0;
  display: block;
  text-align: right;
}
@media print, screen and (min-width: 768px) {
  .topNews .topNews__viewMoreSp {
    display: none;
  }
}
.topNews .topNews__viewMoreSp a {
  margin: 0;
  padding: 0 24px 0 0;
  font-size: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--base-color);
  display: inline-block;
  text-decoration: none;
  background-image: url(/images/icon_arrow_primary_l_right.svg);
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 14px 14px;
  transition: all 0.2s;
}

/*==================================================
  topBanner
==================================================*/
.topBanner {
  width: 100%;
  margin: 0;
  padding: 0 20px 40px 20px;
}
@media print, screen and (min-width: 1200px) {
  .topBanner {
    width: 1400px;
    margin: 0 auto;
    padding: 0 0 20px 0;
  }
}
.topBanner ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.topBanner ul li {
  width: 49%;
  margin: 0 2% 2% 0;
  padding: 0;
  list-style: none;
}
.topBanner ul li:nth-child(2n) {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .topBanner ul li {
    width: 23.8%;
    margin-right: 1.6%;
    text-align: center;
  }
  .topBanner ul li:nth-child(2n) {
    margin-right: 1.6%;
  }
  .topBanner ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .topBanner ul li {
    width: 225px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .topBanner ul li:nth-child(2n) {
    margin-right: 10px;
  }
  .topBanner ul li:nth-child(4n) {
    margin-right: 10px;
  }
  .topBanner ul li:nth-child(5n) {
    margin-right: 0;
  }
}