@charset "UTF-8";
/*============================
#topHero
============================*/
#topHero .topHero-inner {
  height: 100vh;
  width: 100%;
  position: relative;
}

#topHero .herotxt {
  display: table-cell;
  vertical-align: middle;
  padding: 0 5vw;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

#topHero .herotxt01-1 {
  margin-bottom: 12px;
  display: block;
  max-width: 620px;
}

#topHero .herotxt01-2 {
  display: block;
  max-width: 620px;
}

#topHero .bnrbox{
  display: flex;
  flex-wrap:wrap;
  padding: 0;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 15%;
  min-width: 200px;
}
#topHero .bnrbox div{flex-basis:100%;margin-top:15px;}
#topHero .bnr01 a,#topHero .bnr02 a {
  display: block;
  margin: 0;
  padding: 0;
}

#topHero .bnr01 a img,#topHero .bnr02 a img {
  width: 100%;
  margin: 0;
  padding: 0;
}
@media all and (-ms-high-contrast: none){
  #topHero .bnrbox{bottom:50px; /* IE10以上 */}
}
#mouse {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 10;
  color: #fff;
  display: block;
  width: 60px;
  height: 70px;
  margin-left: -30px;
  overflow: hidden;
  cursor: pointer;
}

#mouse:hover, #mouse:active, #mouse:focus {
  text-decoration: none;
  color: #fff;
}

#mouse::before {
  content: "";
  position: absolute;
  left: 17.5px;
  top: 8px;
  width: 25px;
  height: 40px;
  border: 2px solid #fff;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#mouse span {
  font-size: 1.2rem;
  position: absolute;
  width: 60px;
  text-align: center;
  left: 0;
  bottom: 0;
  white-space: nowrap;
}

#mouse span.bar {
  position: absolute;
  left: 28.5px;
  top: 0;
  height: 20px;
  width: 100%;
  overflow: hidden;
}

#mouse span.bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 20px;
  background: #fff;
  -webkit-animation: scroll 1.5s ease-in-out infinite .5s;
  -moz-animation: scroll 1.5s ease-in-out infinite .5s;
  animation: scroll 1.5s ease-in-out infinite .5s;
  animation-fill-mode: none;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes scroll {
  0% {
    top: -20px;
  }
  100% {
    top: 20px;
  }
}
@-moz-keyframes scroll {
  0% {
    top: -20px;
  }
  100% {
    top: 20px;
  }
}
@keyframes scroll {
  0% {
    top: -20px;
  }
  100% {
    top: 20px;
  }
}
/*============================
共通
============================*/
.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title .en {
  font-size: 3.6rem;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-weight: bold;
  display: block;
}

.section-title .jp {
  font-size: 1.4rem;
  line-height: 1;
  display: block;
}

.section-read {
  text-align: center;
  margin-bottom: 30px;
}
.section-read span {
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*============================
#topInfo
============================*/
#topInfo {
  margin-bottom: 150px;
  padding-top: 60px;
  padding-bottom: 60px;
  background: -moz-linear-gradient(0% 50% 0deg, #001e3c 0%, #003c78 100%);
  background: -webkit-linear-gradient(0deg, #001e3c 0%, #003c78 100%);
  background: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0, #001e3c), color-stop(1, #003c78));
  background: -o-linear-gradient(0deg, #001e3c 0%, #003c78 100%);
  background: -ms-linear-gradient(0deg, #001e3c 0%, #003c78 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#001E3C', endColorstr='#003C78' ,GradientType=0)";
  background: linear-gradient(90deg, #001e3c 0%, #003c78 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#001E3C',endColorstr='#003C78' , GradientType=1);
}

#topInfo .section-title {
  color: #fff;
}

#topInfo .infoCard {
  margin-bottom: 20px;
}

#topInfo .infoCard a {
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #topInfo .infoCard a {
    -webkit-flex-direction: row;
    flex-direction: row;
  }
}

#topInfo .infoCard-img {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #topInfo .infoCard-img {
    width: 30%;
  }
}

#topInfo .infoCard-img img {
  display: block;
  transition-duration: 0.3s;
}

#topInfo .infoCard-img img:hover {
  opacity: 0.7;
  transform: scale(1.1);
  /*画像の拡大率*/
}

#topInfo .infoCard-img.active img:hover {
  transition-duration: 0.1s !important;
  /*変化に掛かる時間*/
  transition-delay: 0s !important;
}

#topInfo .infoCard-txtArea {
  width: 100%;
  transition-delay: 0.7s !important;
}
@media screen and (max-width: 767px) {
  #topInfo .infoCard-txtArea {
    width: 70%;
  }
}

#topInfo .infoCard-txtArea.active {
  background-color: #000;
}

#topInfo .infoCard-txtArea-inner {
  padding: 15px;
  line-height: 1.4;
  background-color: #000;
  height: 100%;
  transition-delay: 0.7s !important;
}

#topInfo .infoCard-txtArea time {
  margin-bottom: 5px;
  display: inline-block;
  font-size: 1.2rem;
}

#topInfo .infoCard-txtArea h4 {
  font-size: 1.4rem;
  line-height: 1.6;
}

#topInfoBox {
  margin-bottom: -150px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  #topInfoBox {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}

#topInfoBox .topInfoBox-header {
  background-color: #000;
  padding: 30px;
  min-width: 310px;
}
@media screen and (max-width: 767px) {
  #topInfoBox .topInfoBox-header {
    padding: 20px;
  }
}

#topInfoBox .topInfoBox-header h2 {
  margin-top: 40px;
  font-size: 3.6rem;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-weight: bold;
  display: block;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #topInfoBox .topInfoBox-header h2 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

#topInfoBox .topInfoBox-main {
  padding: 30px;
  background-color: #f2f2f2;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #topInfoBox .topInfoBox-main {
    padding: 15px;
  }
}

/*============================
#topProducts
============================*/
#topProducts {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
  background-clip: border-box;
  position: relative;
}

#topProducts::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  content: "";
  z-index: -2;
  display: block;
  position: fixed;
  background-image: url(../images/topProducts-back.png);
  -webkit-transform: translate3d(0, 0, -1px);
  transform: translate3d(0, 0, -1px);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-clip: border-box;
}

#topProducts::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
}

#topProducts .section-title {
  color: #fff;
  position: relative;
  z-index: 2;
}

#topProducts-sliderWrap {
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
}
@media screen and (max-width: 575px) {
  #topProducts-sliderWrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}

#topProducts-slider {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

#topProducts-sliderWrap .swiper-button-next {
  background: url(../images/topProductsSlide-arrowR@2x.png) no-repeat right top;
  background-size: cover;
  width: 60px;
  height: 60px;
  margin-top: 0px;
  right: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
@media screen and (max-width: 575px) {
  #topProducts-sliderWrap .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

#topProducts-sliderWrap .swiper-button-prev {
  background: url(../images/topProductsSlide-arrowL@2x.png) no-repeat left top;
  background-size: cover;
  width: 60px;
  height: 60px;
  margin-top: 0px;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
@media screen and (max-width: 575px) {
  #topProducts-sliderWrap .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.productsCard {
  background-color: #001e3c;
}

.productsCard-imgArea img {
  width: 100%;
}

.productsCard-txtArea {
  padding: 10px 40px 10px 15px;
  background-color: #001e3c;
  color: #fff;
  position: relative;
}

.productsCard-txtArea::after {
  position: absolute;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  top: 50%;
  right: 8px;
  text-decoration: none;
  display: inline-block;
  font-family: 'FontAwesome';
  content: "\f054";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}

.productsCard-txtArea::before {
  content: "";
  display: block;
  width: 26px;
  background: -moz-linear-gradient(50% 100% 90deg, red 0%, #af0000 100%);
  background: -webkit-linear-gradient(90deg, red 0%, #af0000 100%);
  background: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0, red), color-stop(1, #af0000));
  background: -o-linear-gradient(90deg, red 0%, #af0000 100%);
  background: -ms-linear-gradient(90deg, red 0%, #af0000 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF0000', endColorstr='#AF0000' ,GradientType=0)";
  background: linear-gradient(0deg, #ff0000 0%, #af0000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AF0000',endColorstr='#FF0000' , GradientType=0);
  transition: all 0.3s ease;
  position: absolute;
  height: 100%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  top: 50%;
  right: 0px;
  padding: 0 10px 0;
}

.productsCard a:hover .productsCard-txtArea::before {
  width: 100%;
}

.productsCard-txtArea h3 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.4em;
  z-index: 2;
  position: relative;
}

.productsCard-txtArea p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  position: relative;
}

#topProductsLinkBox {
  position: relative;
  z-index: 2;
}

#topProductsLinkBox .topProductsLink:hover figcaption > *, .text-mask > * {
  transition: all 0.3s ease !important;
}

#topProductsLinkBox .topProductsLink:hover img {
  opacity: 0.7;
  transition: all 0.3s ease !important;
}

#topProductsLinkBox .topProductsLink {
  margin-bottom: 15px;
  display: block;
}

#topProductsLinkBox figcaption {
  padding-top: 5px;
}

#topProductsLinkBox figcaption h3 {
  font-weight: bold;
  line-height: 1.4;
}

#topProductsLinkBox figcaption p {
  font-size: 1.2rem;
  line-height: 1.4;
}

.topProductsLink h3 {
  color: #333;
}

.topProductsLink:hover h3 {
  color: #af0000;
}

/*============================
#topService
============================*/
#topService {
  background-color: #e5ebf1;
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(../images/topService-back.png);
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
}

#topServiceLinkBox .topServiceLink {
  margin-bottom: 15px;
  display: block;
}

#topServiceLinkBox figcaption {
  padding-top: 5px;
}

#topServiceLinkBox figcaption h3 {
  font-weight: bold;
  line-height: 1.4;
}

#topServiceLinkBox figcaption p {
  font-size: 1.2rem;
  line-height: 1.4;
}

/*============================
#topSolution
============================*/
#topSolution {
  background-color: #fff;
  padding-top: 0px;
  padding-bottom: 60px;
}

#topSolution .section-title {
  background-image: url(../images/topSolution-back.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 140px 0;
  color: #fff;
}

.topSolutionLink {
  margin-bottom: 20px;
  display: block;
}

.topSolutionLink img {
  margin-bottom: 5px;
}

.topSolutionLink-title {
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.topSolutionLink-date {
  font-size: 1.2rem;
  line-height: 1;
  color: #A0A0A0;
}

/*============================
#topExVideo
============================*/
#topExVideo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(../images/topVideo-back.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

#topExVideo-slider {
  margin-bottom: 20px;
}

#topExVideo .section-title {
  color: #fff;
}

#topExVideo .section-read {
  color: #fff;
}

#topExVideo-slider .exVideoCard {
  background-color: #fff;
}

#topExVideo-slider .exVideoCard a:hover img {
  opacity: 0.7;
}

#topExVideo-slider .exVideoCard-txtArea {
  background-color: #fff;
  padding: 1em;
  line-height: 1.4;
}

/*============================
#topOtherLink
============================*/
#topOtherLink {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

#topOtherLink .topOtherLink-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* =========================================================
#urgentArea
========================================================= */
#urgentArea {
  background-color: #fff;
}

#urgentArea .urgentBox-title {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  white-space: nowrap;
  display: block;
  margin: 0 auto 0px;
  padding: 0.5em 2em;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  #urgentArea .urgentBox-title {
    max-width: none;
    padding: 15px 15px 10px;
  }
}

#urgentArea .urgentBox {
  padding: 20px;
  width: 100%;
}

#urgentArea .urgentBox-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

#urgentArea .urgentBox-cont {
  flex-grow: 1;
  text-align: center;
}

#urgentArea .urgentNews-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  color: red;
}

#urgentArea .urgentNews-txt {
  line-height: 1.8;
}

#urgentArea .urgentNews-link {
  margin-top: 10px;
  margin-left: auto;
  text-align: center;
  width: 100%;
}

#urgentArea .urgentNews-link a {
  background-color: red;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.4rem;
  padding: 0.5em 2em;
  display: inline-block;
  border-radius: 1em;
}

#urgentArea .urgentNews-link a:hover {
  opacity: 0.7;
}
