@charset "UTF-8";
/*--------------------------
color
---------------------------*/
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
Remodal's necessary styles
========================================================================== */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.remodal,
[data-remodal-id] {
  display: none;
}

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  text-align: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.remodal {
  position: relative;
  text-align: left;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.remodal-is-initialized {
  display: inline-block;
}

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

.remodal-wrapper {
  padding: 10px 10px 0;
}

.remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1170px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

.modal_inner {
  padding: 40px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .modal_inner {
    padding: 20px;
  }
}
.modal_inner .modal_title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .modal_inner .modal_title {
    font-size: 20px;
    margin: 0 0 16px;
  }
}
.modal_inner .modal_title.red {
  color: #fff;
  padding: 6px 12px;
  background: #ca0000;
}
.modal_inner .modal_title.blue {
  color: #fff;
  padding: 6px 12px;
  background: #004986;
}
.modal_inner .flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .modal_inner .flex_box {
    display: block;
  }
}
.modal_inner .flex_box .left_box, .modal_inner .flex_box .right_box {
  width: calc(50% - 20px);
}
@media only screen and (max-width: 768px) {
  .modal_inner .flex_box .left_box, .modal_inner .flex_box .right_box {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .modal_inner .flex_box .left_box {
    margin: 0 0 20px;
  }
}
.modal_inner .flex_box .left_box img {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.modal_inner .flex_box .right_box h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 16px;
}
@media only screen and (max-width: 768px) {
  .modal_inner .flex_box .right_box h4 {
    font-size: 16px;
  }
}
.modal_inner .flex_box .right_box dl:not(:last-child) {
  margin: 0 0 16px;
}
.modal_inner .flex_box .right_box dl dt {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  padding: 0 0 0 8px;
  margin: 0 0 8px;
  border-left: 5px solid;
}
@media only screen and (max-width: 768px) {
  .modal_inner .flex_box .right_box dl dt {
    font-size: 16px;
  }
}
.modal_inner .flex_box .right_box dl dt.ept {
  border-color: #ca0000;
}
.modal_inner .flex_box .right_box dl dt.ebt {
  border-color: #004986;
}
.modal_inner .flex_box .right_box dl dd a {
  font-weight: 600;
  color: #004986;
  text-decoration: underline;
}
.modal_inner .flex_box .right_box dl dd a:hover {
  color: #ca0000;
}
.modal_inner .link_box {
  margin: 20px 0;
}
.modal_inner .link_box a {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: #004986;
  padding: 0 0 6px;
}
.modal_inner .link_box a::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #004986;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.modal_inner .link_box a:hover::after {
  width: 100%;
}
.modal_inner .txt_box {
  padding: 20px;
  margin: 40px 0 0;
  border: 2px solid #777;
  background: #f6f6f6;
}
@media only screen and (max-width: 768px) {
  .modal_inner .txt_box {
    padding: 20px 12px;
    margin: 20px 0 0;
  }
}
.modal_inner .txt_box a {
  color: #004986;
  text-decoration: underline;
}
.modal_inner .txt_box a:hover {
  color: #ca0000;
}

/*--------------------------
main_visual
---------------------------*/
#main_visual .title_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 250px;
}
@media only screen and (max-width: 768px) {
  #main_visual .title_box {
    min-height: 180px;
  }
}
#main_visual .title_box span {
  display: inline-block;
  font-size: 32px;
  font-family: "Montserrat";
  font-weight: 600;
  margin: 0 0 8px;
  border-bottom: 1px solid;
}
#main_visual .title_box h1 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
#main_visual .title_box h1::before {
  content: attr(data-en);
  display: block;
  font-size: 56px;
  font-family: "Montserrat";
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  #main_visual .title_box h1::before {
    font-size: 36px;
  }
}
#main_visual .visual_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 350px;
  background-image: url(/cn/special/vnb-ept/asset/image/environmental/main_visual.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  #main_visual .visual_box {
    min-height: 120px;
  }
}
#main_visual .visual_box::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.7;
}
#main_visual .visual_box .txt_box {
  position: relative;
  text-align: center;
  padding: 40px 5%;
  z-index: 1;
}
#main_visual .visual_box .txt_box p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #main_visual .visual_box .txt_box p {
    font-size: 16px;
  }
}

/*--------------------------
section01
---------------------------*/
#section01 {
  text-align: center;
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  #section01 {
    padding: 40px 0;
  }
}
#section01 .container_small h2 {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 40px;
}
#section01 .container_small .txt_box:not(:last-child) {
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  #section01 .container_small .txt_box:not(:last-child) {
    margin: 0 0 20px;
  }
}
#section01 .container_small .txt_box .btn_box {
  margin: 20px auto 0;
}
#section01 .container_small .txt_box .btn_box a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 260px;
  height: 70px;
  font-size: 16px;
  font-family: "Roboto";
  font-weight: 500;
  color: #fff;
  margin: 0 auto;
  border: 1px solid #004986;
  background: rgb(0, 140, 192);
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 140, 192)), to(rgb(31, 82, 186)));
  background: linear-gradient(90deg, rgb(0, 140, 192) 0%, rgb(31, 82, 186) 100%);
}
#section01 .container_small .txt_box .btn_box a:hover {
  opacity: 0.7;
}
#section01 .container_small .txt_box h4 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 20px;
  margin: 0 0 16px;
}
@media only screen and (max-width: 768px) {
  #section01 .container_small .txt_box h4 {
    font-size: 18px;
  }
}
#section01 .container_small .txt_box h4::before {
  position: absolute;
  content: "■";
  left: 0;
}
#section01 .container_small .txt_box p a {
  color: #004986;
  text-decoration: underline;
}
#section01 .container_small .txt_box p a:hover {
  color: #ca0000;
}
#section01 .container_small .txt_box figure {
  text-align: center;
  margin: 20px 0 0;
}

.remodal .modal_inner p {
  margin: 0 0 16px;
}
.remodal .modal_inner figure {
  text-align: center;
}

/*--------------------------
section02
---------------------------*/
#section02 {
  text-align: center;
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  #section02 {
    padding: 40px 0;
  }
}
#section02 .container_small h2 {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 40px;
}
#section02 .container_small .txt_box:not(:last-child) {
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  #section02 .container_small .txt_box:not(:last-child) {
    margin: 0 0 20px;
  }
}
#section02 .container_small .txt_box h4 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 20px;
  margin: 0 0 16px;
}
@media only screen and (max-width: 768px) {
  #section02 .container_small .txt_box h4 {
    font-size: 18px;
  }
}
#section02 .container_small .txt_box h4::before {
  position: absolute;
  content: "■";
  left: 0;
}
#section02 .container_small .txt_box p a {
  color: #004986;
  text-decoration: underline;
}
#section02 .container_small .txt_box p a:hover {
  color: #ca0000;
}
#section02 .container_small .txt_box figure {
  text-align: center;
  margin: 20px 0 0;
}
#section02 .container_small .txt_box .btn_box {
  margin: 20px 0 0;
}
#section02 .container_small .txt_box .btn_box a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 260px;
  height: 70px;
  font-size: 16px;
  font-family: "Roboto";
  font-weight: 500;
  color: #fff;
  margin: 0 auto;
  border: 1px solid #004986;
  background: rgb(0, 140, 192);
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 140, 192)), to(rgb(31, 82, 186)));
  background: linear-gradient(90deg, rgb(0, 140, 192) 0%, rgb(31, 82, 186) 100%);
}
#section02 .container_small .txt_box .btn_box a:hover {
  opacity: 0.7;
}

/*--------------------------
section03
---------------------------*/
#section03 {
  text-align: center;
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  #section03 {
    padding: 40px 0;
  }
}
#section03 .container_small h2 {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 40px;
}
#section03 .container_small .txt_box:not(:last-child) {
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  #section03 .container_small .txt_box:not(:last-child) {
    margin: 0 0 20px;
  }
}
#section03 .container_small .txt_box h4 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 20px;
  margin: 0 0 16px;
}
@media only screen and (max-width: 768px) {
  #section03 .container_small .txt_box h4 {
    font-size: 18px;
  }
}
#section03 .container_small .txt_box h4::before {
  position: absolute;
  content: "■";
  left: 0;
}
#section03 .container_small .txt_box p a {
  color: #004986;
  text-decoration: underline;
}
#section03 .container_small .txt_box p a:hover {
  color: #ca0000;
}
#section03 .container_small .txt_box figure {
  margin: 20px 0 0;
}
#section03 .container_small .txt_box figure a:hover {
  opacity: 0.7;
}