/*--------------------------- Header Area */

.header {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 60px; */
  background-color: #ffffff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.header::after {
  clear: both;
  content: "";
  display: block;
}

.header.is-hidden {
  /* -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%); */
}

.header .logo img {
  height: 36px;
}

@media only screen and (min-width: 1024px) {
  .header {
    /* height: 100px; */
  }

  .header .logo img {
    /* height: 46px; */
  }
}

.header .logo,
.header .trigger {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header .logo {
  left: 5%;
}

.header .logo a,
.header .logo img {
  display: block;
}

.header .trigger {
  display: table;
  height: 100%;
  padding: 0 1em;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #25283D;
  font-weight: bold;
  right: 0;
}

.header .trigger span {
  display: table-cell;
  vertical-align: middle;
}

.header .trigger em,
.header .trigger em::after,
.header .trigger em::before {
  display: block;
  position: relative;
  height: 2px;
  width: 22px;
  background-color: #25283D;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.header .trigger em {
  margin: 6px auto;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}

.header .trigger em::before,
.header .trigger em::after {
  position: absolute;
  content: '';
  left: 0;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.header .trigger em::before {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

.header .trigger em::after {
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
}

@media only screen and (min-width: 1024px) {
  .header .trigger {
    display: none;
  }
}

.header.nav-open .trigger em {
  background-color: rgba(255, 255, 255, 0);
}

.header.nav-open .trigger em::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header.nav-open .trigger em::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav_first {
  display: inline-block;
  float: right;
  height: 100%;
  padding-right: 5%;
}

.nav_first>ul {
  position: absolute;
  z-index: 2;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  display: none;
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.2);
}

.nav_first>ul a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  color: #25283D;
  font-size: 14px;
  border-top: 1px solid #f2f2f2;
}

.nav_first>ul a:hover,
.nav_first>ul a.active {
  color: #CC0000;
  text-decoration: none;
}

@media only screen and (min-width: 1024px) {
  .nav_first {
    display: table;
  }

  .nav_first>ul {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    width: auto;
    top: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }

  .nav_first>ul::after {
    clear: both;
    content: "";
    display: block;
  }

  .nav_first>ul li {
    display: inline-block;
    float: left;
    margin-right: .8em;
  }

  .nav_first>ul li a:after {
    content: "/";
    color: #ccc;
    padding-left: .8em;
  }

  .nav_first>ul li:last-child a:after {
    content: none;
  }


  .nav_first>ul li:last-of-type {
    margin-right: 0;
  }

  .nav_first>ul a {
    height: auto;
    line-height: normal;
    padding: 0;
    border: none;
  }
}

.nav-open .nav_first ul,
.nav_first ul:target {
  display: block;
}

@media only screen and (min-width: 1024px) {

  .nav-open .nav_first ul,
  .nav_first ul:target {
    display: table-cell;
  }
}

/*--------------------------- Nav Second Area */

.nav_second {
  position: relative;
  z-index: 1;
  clear: both;
  width: 100%;
  height: 50px;
  background-color: #000;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 1s ease;
}

.is-hidden .nav_second {
  background-color: rgba(43, 61, 83, .98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav_second::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 35px;
  background: transparent;
}

.nav_second ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 5%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav_second ul::after {
  clear: both;
  content: "";
  display: block;
}

.nav_second li {
  font-size: 14px;
  display: inline-block;
  float: left;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.nav_second a {
  display: block;
  color: #ffffff;
  line-height: 50px;
  padding: 0 15px;
  font-weight: 700;
}

.nav_second a:hover,
.nav_second a.active {
  opacity: 1;
}

.nav_second a i {
  margin-right: 5px;
}

@media only screen and (min-width: 1024px) {
  .nav_second {
    height: 70px;
    overflow: visible;
  }

  .nav_second ul {
    display: block;
    text-align: right;
  }

  .nav_second li {
    float: none;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .nav_second a {
    line-height: 70px;
  }
}


.nav_second li.brand_name {
  color: #fff;
  line-height: 50px;
  font-weight: 700;
  padding-left: 5%;

}

@media only screen and (min-width: 1024px) {
  .nav_second li.brand_name {
    line-height: 70px;
    position: absolute;
    left: 5%;
    padding-left: 15px;
  }

  .nav_second li.brand_name span:before {
    content: '|';
    padding-right: 1em;
    padding-left: 1em;
  }

  .nav_second li.contact a {
    display: inline;
    border-radius: 30px;
    position: relative;
    padding: 12px 30px;
  }

  .nav_second li.contact a:hover {
    text-decoration: none;
  }

  .is-hidden .nav_second li.contact a,
  .nav_second li.contact a:hover {
    background: #fab90a;
    color: #333;

  }
}

/*--------------------------- Zoomslider Area */

#ZoomSlider {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 780px;
  z-index: 1;
}

#ZoomSlider .t_box {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding-left: 5%;
  padding-right: 5%;
}


#ZoomSlider .b_box {
  position: relative;
  z-index: 1;
  min-width: 1024px;
  padding-top: 180px;
  color: #fff;
  text-align: left;
}


#ZoomSlider .t_box .brand_logo {
  position: relative;
  top: 220px;
  text-align: right;
  padding-right: 15px;
}

#ZoomSlider .t_box .brand_logo img {
  width: 240px;
}

#ZoomSlider .t_box .path {
  position: absolute;
  top: 220px;
  display: flex;
  color: #fff;
  font-size: 12px;
  padding-left: 15px;
}




#ZoomSlider .t_box .path li a {
  color: #fff
}

#ZoomSlider .t_box .path li:after {
  content: '/';
  margin-left: 10px;
  margin-right: 10px;
  color: #fff
}

#ZoomSlider .t_box .path li:last-child:after {
  content: ""
}

#ZoomSlider .b_box h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.4;
}

#ZoomSlider .b_box p {
  margin-bottom: 30px;
  font-size: 24px;
}

#ZoomSlider .b_box .description {
  縲opacity: 0;
  animation-name: description;
  animation-duration: 3s;
  animation-fill-mode: forwards;

}

@keyframes description {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  50% {
    opacity: 1;
    transform: translateX(0);
  }

}

#ZoomSlider .b_box .description {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  padding-top: 15px;
  font-weight: 700
}

#ZoomSlider .b_box .button {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  margin-top: 30px;
}

#ZoomSlider .b_box .button.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all .5s ease
}


#ZoomSlider .b_box .button a {
  border: 1px solid #fff;
  width: 420px;
  padding: 20px 15px 20px 80px;
  color: #fff;
  font-weight: 700;
}

#ZoomSlider .b_box .button a:before {
  border-right: 1px solid #fff;
  width: 78px;
  height: 100%
}

#ZoomSlider .b_box .button a i {
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  padding: 20px 0;
  text-align: center;
  letter-spacing: 0;
  color: #fff
}

#ZoomSlider .b_box .button a:hover {
  color: #333;
  background: #fab90a;
  border: 1px solid #fab90a;
}

#ZoomSlider .b_box .button a:hover i {
  opacity: 1;
  color: #333
}


.zs-enabled {
  position: relative;
}

.zs-enabled .zs-slideshow,
.zs-enabled .zs-slides,
.zs-enabled .zs-slide {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 780px;
  overflow: hidden;
}

.zs-enabled .zs-slideshow .zs-slides .zs-slide {
  background: transparent none no-repeat 50% 50%;
  background-size: cover;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.zs-enabled .zs-slideshow .zs-slides .zs-slide.active {
  visibility: visible;
  opacity: 1;
}

.zs-enabled .zs-slideshow .zs-bullets {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}

.zs-enabled .zs-slideshow .zs-bullets .zs-bullet {
  display: inline-block;
  cursor: pointer;
  border: 2px solid #ccc;
  width: 14px;
  height: 14px;
  border-radius: 8px;
  margin: 10px;
  background-color: #4a4a4a;
}

.zs-enabled .zs-slideshow .zs-bullets .zs-bullet.active {
  background-color: #ccc;
}

.zs-enabled .zs-slideshow:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: transparent none repeat 0 0;
}

.zs-enabled.overlay-plain .zs-slideshow:after {
  background-image: url(plain.png);
}

.zs-enabled.overlay-dots .zs-slideshow:after {
  background-image: url(dots.png);
}

/*--------------------------- Update Area */
.titleArea {
  text-align: center;
  color: #2b3d53;
}

.titleArea h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 24px;
  padding-bottom: 12px;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  color: #2b3d53;
}

.titleArea h2:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50px;
  margin: 0 auto;
  border-bottom: 4px solid #2b3d53;
  left: 0;
  right: 0;
}

.titleArea h2 span {
  display: block;
  font-size: 14px;
  font-weight: 900
}

.post .main_box {
  padding-top: 60px;
}

.page-navi {
  margin-bottom: 60px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.page-navi ul {
  list-style: none;
  display: flex;
  justify-content: left;
  font-size: 13px;
}

.page-navi ul.cam li {
  padding: 0 0;
  width: 25%;
  padding-right: 1em;
}

.page-navi ul.cad li {
  padding: 0 0;
  padding-right: 2em;
}

/*.page-navi ul li+li {
  border-left: 1px solid #2b3d53;
}
*/

.page-navi .navi-title {
  margin-bottom: .5em;
  ;
}


.page-navi .cad {
  margin-bottom: 1.5em;
}

.page-navi .cam {
  margin-bottom: 5px;
}

.box {
  margin: 80px 0;
}

.box .button a {
  display: block;
  padding: 10px;
  text-align: center;
  border: 3px solid #263E57;
  border-radius: 6px;
  margin-top: 1em;
  color: #fff;
  font-weight: bold;
  background: #263E57;
}

.box .button a:hover {
  text-decoration: none;
  background: #fab90a;
  color: #333;
  font-weight: bold;
  border: 3px solid #fab90a;
}

.box1 .content {
  text-align: center;
}




.box2 {
  background: #2b3d53;
  color: #fff;
  padding-bottom: 220px;
  padding-top: 100px;
}

.box2 h2,
.box3 h2 {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px;
}

.box2 span,
.box3 span {
  display: block;
  font-weight: bold;
  font-size: 18px;
}

.box2 ul li,
.box3 ul li {
  padding-bottom: 8px;
}

.box3 {
  position: relative;
  z-index: 0;
  background: #eee;
  padding-top: 80px;
  padding-bottom: 100px;
  font-size: 14px;
}

.box3::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  transform: skewY(-5deg);
  transform-origin: bottom left;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #eee;
}

@media only screen and (min-width: 1024px) {
  .box3 .wrapper {
    padding: 0 30px;
  }
}

.box3 h2 {
  color: #2b3d53;
  text-align: center;
  padding-bottom: 12px;
}

.box3 h2:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50px;
  margin: 0 auto;
  border-bottom: 4px solid #2b3d53;
  left: 0;
  right: 0;
}

.box3 h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.box3 .content {
  text-align: center;
}

.box3 .content img {
  height: 50px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.box3 ul li {
  text-align: left;
  border-bottom: 1px solid #2b3d53;
  padding-bottom: 1em;
  margin-bottom: 1em;
}

.box3 ul li:last-child {
  border-bottom: none;
}


.box4 {
  background: #fff;
  padding: 0 0 60px;
}

.box5 {
  background: #fff;
  padding: 30px 0 0px;
}

.box9 {
  background: #fafafa;
  padding: 80px 0 60px;
}

.box4 .content,
.box5 .content,
.box9 .content {
  padding: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
  color: #000;
  overflow: hidden;
}

.box4 .content p,
.box5 .content p,
.box9 .content p {
  text-align: justify;
}




.box4 .icon,
.box5 .icon,
.box9 .icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 25px;
  color: #2b3d53
}

.box4 h3,
.box5 h3,
.box9 h3 {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2b3d53
}

@media screen and (min-width:768px) {

  .box5 .button,
  .box9 .button {
    width: 780px;
    margin: 0 auto;
  }
}











.update {
  padding: 30px 0
}


.update .content {
  width: 100%;
  font-size: 14px;
  padding: 0 15px
}

.update .content dl {
  padding: 15px 0;
  border-bottom: 1px solid #ccc
}

.update .content dt {
  padding-bottom: 5px
}

@media screen and (min-width:768px) {
  .update .content dt {
    clear: left;
    float: left;
    width: 7em;
    line-height: 1
  }

  .update .content dt:after {
    content: '|';
    margin-left: 1em
  }

  .update .content dd {
    margin-left: 7em;
    line-height: 1
  }
}

/*--------------------------- video_play Area */

.itemList .thumb a {
  position: relative;
  display: block;
  text-decoration: none;
}

.itemList .thumb a:hover {
  opacity: .9;
}

.itemList .thumb a:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 6px solid #fff;
  width: 60px;
  height: 60px;
}

.itemList .thumb a:after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 15px 0 15px 25px;
}







/*--------------------------- ThirdBox Area */


.contact__flow-area {
  margin: 0 auto 40px;
  width: 100%;
}

.contact__flow-area:after {
  height: 0;
  visibility: hidden;
  content: ".";
  display: block;
  clear: both;
}

.contact__flow-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100%/4);
  height: 60px;
  float: left;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.contact__title-number {
  display: block;
}

.contact__flow-area .box01 {
  background: #354b66;
}

.contact__flow-area .box02 {
  background: #507199;
  border-top: 1px solid #507199;
  border-bottom: 1px solid #507199;
  box-sizing: border-box;
}

.contact__flow-area .box03 {
  background: #6a96cc;
  border-top: 1px solid #6a96cc;
  border-bottom: 1px solid #6a96cc;
  box-sizing: border-box;
}

.contact__flow-area .box04 {
  background: #c2d4ea;
  color: #000;
  border-top: 1px solid #c2d4ea;
  border-bottom: 1px solid #c2d4ea;
  border-right: 1px solid #c2d4ea;
  box-sizing: border-box;
}

.contact__flow-area .box02:before,
.contact__flow-area .box03:before,
.contact__flow-area .box04:before,
.contact__flow-area .box04:after {
  border-left: 20px solid #FFFFFF;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.contact__flow-area .box02:before {
  border-left-color: #354b66;
}

.contact__flow-area .box03:before {
  border-left-color: #507199;
}

.contact__flow-area .box04::before {
  border-left-color: #c2d4ea;
  left: 0;
  top: -1px;
  z-index: 1;
}

.contact__flow-area .box04:after {
  border-left-color: #6a96cc;
  left: -1px;
  top: -1px;
  z-index: 1;
}

.contact__flow-list {
  color: #fff;
}


.box6 .outer {
  background: #fafafa;
  border: 1px solid #fff;
  border-radius: 12px;
  margin-bottom: 80px;
}

.box6 .outer1 .content {
  text-align: center;
  font-size: 14px;
}

.box6 .outer1 {
  padding: 60px 60px 20px;
}

@media only screen and (max-width:1023px) {
  .intro .box6 .outer1 {
    padding: 60px 15px 20px;
  }
}

.box6 .outer2 {
  padding: 60px 60px 20px;
}

.box6 .outer3 {
  padding: 60px 40px 20px;
}


.box6 .outer3 .div1 {
  background: #fff url(../images/outer3_1.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
}

.box6 .outer3 .div2 {
  background: #fff url(../images/outer3_2.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
}

.box6 .outer3 ul {
  margin-left: 20px;
}

.box6 .outer3 ul li {
  list-style: disc;
}

.box6 .content {
  padding: 20px;
}

.box6 .content span {
  display: block;
  font-weight: bold;
}

.box6 h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}


.ThirdBox .content span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.con1 {
  background: #DCE6F3;
  border: 5px solid #354b66;
  border-radius: 8px;
}

.con2 {
  background: #B9CCE6;
  border: 5px solid #354b66;
  border-radius: 8px;
}

.con3 {
  background: #95B3DA;
  border: 5px solid #354b66;
  border-radius: 8px;
}

.con4 {
  background: #71B2FA;
  border: 5px solid #354b66;
  border-radius: 8px;
}

.con5 {
  background: #fff;
  border: 5px solid #354b66;
  border-radius: 8px;
}




.box8 {
  background: #fff url(../images/FifthBox_bg.jpg) no-repeat center center;
  background-size: cover;
  max-width: 1400px;
  margin: 240px auto 100px;
  color: #fff;
}

.box8 h2 {
  margin: 0;
  font-size: 24px;
  padding-bottom: 5px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 1.5;
}

.box8 h2:before {
  content: '';
  width: 50px;
  height: 4px;
  background-color: #fff;
  display: block;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.box8 h2 span {
  display: block;
  font-size: 14px;
  font-weight: 900
}

.box8 .content {
  padding: 80px;
}

.box8 .caption {
  line-height: 1.5;
  margin-bottom: 1rem;
  padding: 60px 30px;
  background: rgba(0, 0, 0, .5);
  text-align: justify;
}

.box8 .content a {
  color: #fab90a;
  border: 1px solid #fab90a;
}

/*--------------------------- ThirdBox Area */

.ctaBox {
  position: relative;
}


.ctaBox .button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.ctaBox .btn {
  background: #fab90a;
  color: #333;
  font-weight: 700;
  padding: 15px 30px;
  -webkit-box-shadow: 0 0.4rem 1rem 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.4rem 1rem 0 rgba(0, 0, 0, 0.16);
}

.ctaBox .button a {
  width: 400px;
  padding: 20px 15px 20px 80px;
  color: #333
}

.ctaBox .button a:before {
  border-right: 1px solid #fff;
  width: 78px;
  height: 100%
}

.ctaBox .button a i {
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  padding: 20px 0;
  text-align: center;
  letter-spacing: 0;
  color: #333
}

.ctaBox .button a:hover {
  color: #fff;
  background: #2b3d53
}

.ctaBox .button a:hover i {
  opacity: 1;
  color: #fff
}


/*--------------------------- FourthBox Area */


.box7 {
  margin: 0 auto;
}

.box7 .ItemList .col-md-6 {
  margin: 15px 0px;
}


.box7 .content {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
  color: #000;
  overflow: hidden
}

.box7 .inner {

  position: relative;
  bottom: 88px
}

.box7 .stb {
  background: #eee;
  position: relative;
  top: 140px;
}

.box7 .container:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  bottom: 5rem;
  left: 0;
  display: block;
  z-index: -1
}

.box7 .icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 25px;
  color: #2b3d53
}


.box7 .caption {
  padding: 30px;
  line-height: 1.6;
  text-align: justify;
}

.box7 .h_block {
  text-align: center;
  color: #2b3d53;
}

.box7 .h_block h2:before {
  border-bottom: 4px solid #2b3d53;
  left: 0;
  right: 0;
}


.box7 .TopMessage {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
  background: #fff url(../images/box7_1.jpg) no-repeat center center;
  background-size: cover;
  padding: 30px 30px;
  margin-bottom: 15px;
}

.box7 .TopMessage .caption,
.box7 .bg_left .title,
.box7 .bg_right .title {
  text-align: center;
  color: #2b3d53;
  font-weight: 700;
  background: rgba(255, 255, 255, .9);
  ;

}

.box7 .bg_left,
.box7 .bg_right {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  height: 140px;
}

.box7 .bg_left {
  background: #fff url(../images/box7_2.jpg) no-repeat center center;
  background-size: cover;
}

.box7 .bg_right {
  background: #fff url(../images/box7_3.jpg) no-repeat center center;
  background-size: cover;
}

.box7 strong {
  color: #2b3d53;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

/*--------------------------- SixthBox common Area */



h2 {
  margin: 0;
  font-size: 24px;
  padding-bottom: 5px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 1.5
}

h2:before {
  content: '';
  width: 50px;
  height: 4px;
  background-color: #fff;
  display: block;
  position: absolute;
  left: 0;
  bottom: -6px
}

h2 span {
  display: block;
  font-size: 14px;
  font-weight: 900
}

.caption {
  line-height: 1.5;
  margin-bottom: 1rem;
  padding: 60px 30px;
  text-align: justify
}



.btn {
  color: #fab90a;
  border: 1px solid #fab90a;

}

.btn:hover {
  color: #333;
  border: 1px solid #fab90a;
  background: #fab90a;
}

/*--------------------------- SixthBox common Area */


.SixthBox {
  background: #fff url(../images/SixthBox_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 80px 0
}

.SixthBox .inner {
  max-width: 1140px;
  margin: 0 auto
}

.SixthBox h2 {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
  font-weight: 700;
}

.SixthBox h2::before {
  display: none;
}

.SixthBox .tel span {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #fff
}

.SixthBox .tel span.number {
  font-size: 28px;
  font-weight: 900;
}

.SixthBox .tel span.number i {
  margin-right: 12px
}

.SixthBox .button a {
  border: 1px solid #fff;
  background: #263E57;
  width: 100%;
  padding: 20px 15px 20px 80px;
  color: #fff;
  font-weight: 700;
}

.SixthBox .button a:before {
  border-right: 1px solid #fff;
  width: 78px;
  height: 100%
}

.SixthBox .button a i {
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  padding: 20px 0;
  text-align: center;
  letter-spacing: 0;
  color: #fff
}

.SixthBox .button a:hover {
  color: #333;
  background: #fab90a;
  border: 1px solid #fff;
}

.SixthBox .button a:hover i {
  opacity: 1;
  color: #333
}

/*--------------------------- Webinar common Area */

.webinar ol {
  list-style: decimal;
  margin-left: 1.5em;
}

.webinar .meta {
  text-align: right;
  font-size: .8em;
  margin-bottom: .5em;
  font-weight: bold;
}

/*--------------------------- h_block common Area */

.h_block h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 24px;
  padding-bottom: 12px;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}

.h_block h2:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50px;
  margin: 0 auto
}

.h_block h2 span {
  display: block;
  font-size: 14px;
  font-weight: 900
}

/*--------------------------- Button common Area */

.btn,
a.btn {
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: .1em
}

a.btn_cover {
  position: relative
}

a.btn_cover:before {
  position: absolute;
  top: 0;
  left: 0;
  content: ""
}


.btn_webinar a {
  margin-top: 30px;
  border-radius: 60px;
  background: #fab90a;
  padding: 12px 60px;
  display: inline-block;
  font-weight: bold;
  color: #333;
}

/*--------------------------- Others Area */

@media only screen and (max-width: 1023px) {
  .none {
    display: none;
  }
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb80 {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1023px) {
  #ZoomSlider .b_box {
    padding: 140px 30px 30px;
    min-width: auto;
  }

  #ZoomSlider .t_box .brand_logo,
  #ZoomSlider .t_box .path {
    top: 140px;
    padding: 0;
  }

  #ZoomSlider .t_box .brand_logo img {
    width: 120px;
  }

  #ZoomSlider .b_box .button a {
    width: 100%;
  }

  .SecondBox .inner,
  .quote .content,
  .SixthBox .inner {
    padding: 0 15px;
  }

  .ThirdBox .carousel-indicators {
    display: none;
  }

  .SixthBox .button {
    margin-bottom: 15px;
  }

}


/*--------------------------- Corporate Area */

.footer {
  width: 100%;
  background-color: #e0e0e0;
}

.footer .nav {
  position: relative;
  font-size: 13px;
  max-width: 1200px;
  padding: 25px 0;
  margin: 0 auto;
  display: inherit;
}

.footer .nav ul {
  text-align: center;
}

.footer .nav ul li {
  display: inline-block;
}

.footer .nav ul li a {
  padding-left: 16px;
  padding-right: 11px;
  border-left: 1px solid #000;
  text-decoration: none;
  color: #000;
}

.footer .nav ul li .first {
  padding-left: 0;
  border-left: none;
}

.footer .nav ul li .last {
  padding-right: 0;
}

.footer .nav ul li br {
  display: none;
}

.footer .nav .group-logo {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
}

.footer .nav .group-logo img {
  width: auto;
  height: 30px;
}

.footer .copy {
  padding: 12px 0;
  color: #fff;
  text-align: center;
  font-size: 10px;
  background-color: #424242;
  line-height: 26px;
}

@media screen and (max-width: 1359px) {
  .footer .nav ul {
    text-align: center;
  }

  .footer .nav .group-logo {
    position: static;
    text-align: center;
    padding: 10px 0 0;
    margin: 10px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .footer .nav {
    width: 100%;
    padding: 0;
  }

  .footer .nav ul:after {
    content: '';
    display: block;
    clear: both;
  }

  .footer .nav ul li {
    float: left;
    display: block;
    width: 50%;
    font-size: 14px;
    border-bottom: 2px solid #ccc;
  }

  .footer .nav ul li a {
    height: 5em;
    display: block;
    padding: 1.5em 1em 1.5em 0;
    border: none;
    line-height: 2em;
    text-align: center;
    position: relative;
    background-image: url("https://www.marubeni-sys.com/app/wp-content/themes/marubeni/img/sp/footer_allow.png");
    background-repeat: no-repeat;
    background-position: 90% center;
  }

  .footer .nav ul li a.first,
  .footer .nav ul li a.last {
    padding: 1.5em 1em 1.5em 0;
  }

  .footer .nav ul li:nth-of-type(even) {
    border-left: 2px solid #ccc;
  }

  .footer .nav ul li:nth-of-type(2) a,
  .footer .nav ul li:nth-of-type(3) a,
  .footer .nav ul li:nth-of-type(5) a {
    line-height: 1.2em;
  }

  .footer .nav ul li br {
    display: block;
  }

  .footer .nav .group-logo {
    margin: 0;
  }

  .footer .nav .group-logo img {
    width: auto;
    height: 30px;
    margin: 15px 0;
  }
}




.hero {
  display: table;
  width: 100%;
  margin-top: 60px;
  height: 300px;
}

.hero .content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.hero.introduction,
.hero.introduction .content .inner:before {
  background: url(../images/zoomslider1.jpg) no-repeat center center;
  background-size: cover
}

.hero.cad-module1 {
  background: url(../images/bg_cad-module1.jpg) no-repeat center center;
  background-size: cover
}

.hero.cad-module2 {
  background: url(../images/bg_cad-module2.jpg) no-repeat center center;
  background-size: cover
}

.hero.cam-module1 {
  background: url(../images/bg_cam-module1.jpg) no-repeat center center;
  background-size: cover
}

.hero.cam-module2 {
  background: url(../images/bg_cam-module2.jpg) no-repeat center center;
  background-size: cover
}

.hero.cam-module3 {
  background: url(../images/bg_cam-module3.jpg) no-repeat center center;
  background-size: cover
}

.hero.cam-module4 {
  background: url(../images/bg_cam-module4.jpg) no-repeat center center;
  background-size: cover
}

.hero.cam-module5 {
  background: url(../images/bg_cam-module5.jpg) no-repeat center center;
  background-size: cover
}

.hero.cam-module6 {
  background: url(../images/bg_cam-module6.jpg) no-repeat center center;
  background-size: cover
}

.hero.cam-module7 {
  background: url(../images/bg_cam-module7.jpg) no-repeat center center;
  background-size: cover
}

.hero.cam-module8 {
  background: url(../images/bg_cam-module8.jpg) no-repeat center center;
  background-size: cover
}

@media only screen and (min-width:768px) {
  .hero {
    height: 400px
  }
}

@media only screen and (min-width:1024px) {
  .hero {
    height: 400px;
    margin-top: 100px
  }
}

.hero h1 {
  color: #fff;
  line-height: 1.6;
}

.hero .sub-title {
  color: #fff;
  text-align: center;
  padding: 0 1em;
}

.main_box {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: -50px;
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .05);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .05);
  padding: 100px 80px 150px
}

@media only screen and (max-width:1023px) {

  .post .main_box,
  .intro .main_box {
    padding: 100px 0px 80px
  }
}

.post h2 {
  color: #999;
  margin-bottom: 1em;
  font-weight: bold;
  padding: 0;
  color: #263E57;
}

.post .heading {
  font-weight: bold;
  margin-bottom: .5em;
}

.post .content ul {
  margin-left: 1.2em;
  list-style: disc;
}

.post .box {
  border-bottom: 1px solid #eee;
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.post .box-ex {
  margin-top: 80px;
  padding: 60px;
  background: #769bc2;
}

.post h2:before {
  background: #263E57;
}

.video_wrap {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.video_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
