@charset "UTF-8";

/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 15px;
}

.sp {
  display: none !important;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

a:visited {
  color: #000;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:active {
  color: #000;
}

a.tel {
  pointer-events: none;
  cursor: default;
}

/* main
==================================*/
main {
  display: block;
  padding: 75px 0 0;
}

/* header
==================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
  height: 75px;
}

header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header h1 {
  margin: 29px 0 0 45px;
}

header h1 img {
  width: 111px;
  height: 26px;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav ul.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 34px 0 0;
}

header nav ul.links li a {
  position: relative;
  display: block;
  padding: 0 15px 28px;
  font-weight: 500;
  font-size: 15px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

header nav ul.links li a::after {
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  content: "";
  width: 0;
  height: 3px;
  background-color: #004491;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

header nav ul.links li a:hover::after,
header nav ul.links li a.here:after,
header nav ul.links li a.active:after {
  width: calc(100% - 30px);
}

header nav ul.links ul.second {
  display: none;
}

header nav ul.lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 26px 26px 0 20px;
}

header nav ul.lang li {
  margin-left: 2px;
}

header nav ul.lang li a {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #ececec;
  width: 30px;
  height: 30px;
  padding: 10px 0 0;
  font-size: 10px;
  text-align: center;
}

header nav ul.lang li a:hover {
  background: #cdcdcd;
}

header nav ul.lang li.active a {
  color: #fff;
  background: #004491;
}

@media (max-width: 1100px) {
  header h1 {
    margin-left: 25px;
  }

  header nav ul.links li a {
    padding: 0 10px 30px;
    font-size: 13px;
  }

  header nav ul.links li a::after {
    left: 10px;
    right: 10px;
  }

  header nav ul.links li a:hover::after,
  header nav ul.links li a.here:after,
  header nav ul.links li a.active:after {
    width: calc(100% - 20px);
  }

  header nav ul.lang {
    margin-left: 4px;
    margin-right: 15px;
  }
}

@media (max-width: 900px) {
  header .sp {
    display: block !important;
  }

  header .pc {
    display: none;
  }

  header .menu {
    position: relative;
    background: #004491;
    width: 75px;
    height: 75px;
    cursor: pointer;
  }

  header .menu span {
    position: absolute;
    top: 23px;
    left: 0;
    right: 0;
    display: inline-block;
    background: #fff;
    width: 34px;
    height: 2px;
    margin: auto;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  header .menu span.line-t.show {
    top: 37px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  header .menu span.line-m {
    top: 37px;
  }

  header .menu span.line-m.show {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  header .menu span.line-b {
    top: 50px;
  }

  header .menu span.line-b.show {
    top: 37px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  header nav {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 888;
    background: #004491;
    overflow: auto;
  }

  header nav ul.links {
    display: block;
    width: 100%;
    margin: 144px 0 0;
  }

  header nav ul.links>li {
    margin: 0 25px;
    border-top: 1px solid #406c9e;
  }

  header nav ul.links>li:last-child {
    border-bottom: 1px solid #406c9e;
  }

  header nav ul.links>li a {
    position: relative;
    color: #fff;
    padding: 20px 15px;
    font-size: 16px;
  }

  header nav ul.links>li a::after {
    content: "";
    position: absolute;
    top: 20px;
    left: auto;
    right: 13px;
    background: url(../images/common/arrow_wh.svg) no-repeat;
    width: 11px;
    height: 16px;
  }

  header nav ul.links>li a:hover::after,
  header nav ul.links>li a.here:after,
  header nav ul.links>li a.active:after {
    width: 11px;
  }

  header nav ul.links>li ul.second {
    display: none;
    background: #013a7b;
  }

  header nav ul.links>li ul.second li {
    margin: 0;
    border-top: 1px solid #406c9e;
  }

  header nav ul.links>li ul.second li a {
    position: relative;
    padding-left: 31px;
  }

  header nav ul.links>li ul.second li a::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 18px;
    background: #fff;
    width: 6px;
    height: 2px;
  }

  header nav ul.links li.mega_nav {
    position: relative;
  }

  header nav ul.links li.mega_nav>a::after {
    content: none;
  }

  header nav ul.links li.mega_nav span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    cursor: pointer;
  }

  header nav ul.links li.mega_nav span::before,
  header nav ul.links li.mega_nav span::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 10px;
    background: #fff;
    width: 20px;
    height: 2px;
  }

  header nav ul.links li.mega_nav span::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  header nav ul.links li.mega_nav span.show::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0;
  }

  header nav ul.links li.mega_nav ul.second {
    display: none;
  }

  header nav ul.lang {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
  }

  header nav ul.lang li {
    margin: 0 1px;
  }

  header nav ul.lang li a {
    width: 150px;
    height: 44px;
    padding: 13px 0 0;
    font-size: 18px;
  }

  header nav ul.lang li.active a {
    background: #0c52a2;
  }
}

.mega_menu {
  display: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -1px !important;
}

.mega_menu.mega_nav01 {
  background-image: url(../images/common/nav01_bg.jpg);
}

.mega_menu.mega_nav02 {
  background-image: url(../images/common/nav02_bg.jpg);
}

.mega_menu.mega_nav03 {
  background-image: url(../images/common/nav03_bg.jpg);
}

.mega_menu.mega_nav04 {
  background-image: url(../images/common/nav04_bg.jpg);
}

.mega_menu.mega_nav05 {
  background-image: url(../images/common/nav05_bg.jpg);
}

.mega_menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mega_menu .tlArea {
  position: relative;
  width: 30%;
  max-width: 410px;
}

.mega_menu .tlArea p {
  position: absolute;
  top: 46%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  margin: 0 0 0 24.4%;
  font-size: 40px;
}

@media (max-width: 1100px) {
  .mega_menu .tlArea p {
    font-size: 32px;
  }
}

.mega_menu .tlArea a {
  position: absolute;
  left: 24.4%;
  bottom: 60px;
  color: #fff;
  padding: 0 0 7px;
  border-bottom: 1px solid #fff;
}

@media (max-width: 1100px) {
  .mega_menu .tlArea a {
    bottom: 25px;
    font-size: 14px;
  }
}

.mega_menu .tlArea a::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -17px;
  background: url(../images/common/arrow_wh.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mega_menu .tlArea a:hover::after {
  right: -24px;
}

.mega_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 80%;
  max-width: 906px;
  margin: 60px 0;
  padding: 0 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mega_menu ul li {
  width: calc((100% - 55px) / 4);
  margin: 0 18px 0 0;
}

.mega_menu ul li:nth-child(4n) {
  margin-right: 0;
}

.mega_menu ul li figure {
  background: #000;
  overflow: hidden;
}

.mega_menu ul li figure img {
  width: 100%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mega_menu ul li:hover figure img {
  opacity: 0.7;
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.mega_menu ul li p {
  color: #fff;
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 20px;
}

.mega_menu ul li:hover p {
  text-decoration: underline;
}

.mega_nav01 .tlArea a,
.mega_nav03 .tlArea a {
  bottom: 70px;
}

.mega_nav01 ul li,
.mega_nav03 ul li {
  margin-bottom: 38px;
}

.mega_nav01 ul li:nth-child(n + 4),
.mega_nav03 ul li:nth-child(n + 4) {
  margin-bottom: 0;
}

.mega_nav01 ul li:nth-child(n + 5),
.mega_nav03 ul li:nth-child(n + 5) {
  margin-bottom: 38px !important;
}

.mega_nav01 ul li:nth-child(n + 9),
.mega_nav03 ul li:nth-child(n + 9) {
  margin-bottom: 0px !important;
}

/* footer
==================================*/
footer {
  position: relative;
  background: #e9e9e9;
}

footer .footer_links {
  background: #01244c;
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(#01244c),
      color-stop(80%, #004491));
  background: linear-gradient(90deg, #01244c 0%, #004491 80%);
  padding: 60px 20px 84px;
}

footer .footer_links nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

footer .footer_links nav a {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  -webkit-transition: 0.1s !important;
  transition: 0.1s !important;
}

footer .footer_links nav a:hover {
  color: #607fa3;
}

footer .footer_links nav ul.second li {
  position: relative;
  padding-left: 10px;
}

footer .footer_links nav ul.second li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  background: #fff;
  width: 4px;
  height: 2px;
}

@media (max-width: 1100px) {
  footer .footer_links nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 812px;
  }

  footer .footer_links nav>ul {
    width: 203px;
    margin-bottom: 30px;
  }

  footer .footer_links nav>ul:nth-child(4) {
    margin-right: 0;
  }

  footer .footer_links nav>ul:nth-child(n + 5) {
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  footer .footer_links nav {
    max-width: 670px;
  }

  footer .footer_links nav>ul {
    width: 250px;
  }

  footer .footer_links nav>ul:nth-of-type(3n) {
    width: 170px;
  }
}

footer .footer_info {
  position: relative;
  background: #e9e9e9;
  max-width: 1200px;
  margin: auto;
  padding: 56px 20px 59px;
}

footer .footer_info .wrap {
  float: left;
}

footer .footer_info .wrap a.logo {
  font-weight: 500;
  font-size: 14px;
}

footer .footer_info .wrap a.logo img {
  width: 100px;
  height: 23px;
  padding-right: 16px;
}

footer .footer_info .wrap ul.address {
  margin: 23px 0 28px;
}

footer .footer_info .wrap ul.address li {
  margin: 0 0 11px;
  font-weight: 500;
  font-size: 12px;
}


footer .footer_info .wrap ul.address li span {
  display: inline-block;
  width: 92px;
}

footer .footer_info .wrap a.logo_mic:hover {
  opacity: 0.8;
}

footer .footer_info .wrap a.logo_mic img {
  width: 137px;
  height: 39px;
}

footer .footer_info .wrap p {
  color: #4a4a4b;
  margin: 24px 0 0;
  font-size: 12px;
}

footer .footer_info .contact_box {
  float: right;
}

footer .footer_info .contact_box a.tel {
  font-family: "Fjalla One", sans-serif;
  font-size: 22px;
}

footer .footer_info .contact_box a.tel span {
  font-size: 30px;
}

footer .footer_info .contact_box p {
  margin: 12px 0 20px;
  font-weight: 500;
  font-size: 13px;
}

footer .footer_info .contact_box a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 293px;
  margin: 0 0 75px;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
}

footer .footer_info .contact_box a.btn:hover {
  color: #fff;
}

footer .footer_info .contact_box a.btn::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 29px;
  background: url(../images/common/arrow_bk.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

footer .footer_info .contact_box a.btn:hover::after {
  background: url(../images/common/arrow_wh.svg) no-repeat;
}

footer .footer_info .contact_box a.btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #000;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

footer .footer_info .contact_box a.btn:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

footer .footer_info .contact_box small {
  display: block;
  color: #4a4a4b;
  font-size: 10px;
  text-align: right;
}

@media (max-width: 1100px) {
  footer .footer_info .wrap {
    width: 100%;
  }

  footer .footer_info .contact_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
  }

  footer .footer_info .contact_box p {
    margin-bottom: 0;
  }

  footer .footer_info .contact_box a.btn {
    margin: 0 0 0 30px;
  }

  footer .footer_info .contact_box small {
    position: absolute;
    bottom: 20px;
  }
}

#pageTop {
  opacity: 0;
  position: fixed;
  right: 29px;
  bottom: 24px;
  z-index: 888;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#pageTop.active {
  opacity: 1;
}

#pageTop:hover {
  opacity: 0.7;
}

#pageTop a {
  display: block;
  color: #fff;
  background: #004491;
  width: 51px;
  height: 51px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  font-family: "Fjalla One", sans-serif;
  font-size: 13px;
}

#pageTop a span {
  position: relative;
  display: block;
  padding: 24px 0 0 11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#pageTop a span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 17px;
  background: url(../images/common/arrow_wh.svg) no-repeat;
  width: 7px;
  height: 10px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* head_bg
==================================*/
#AllBox .head_tl {
  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: 100%;
  height: 270px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#AllBox .head_tl h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

#AllBox .head_tl h2 span {
  display: block;
  margin: 16px 0 0;
  font-family: "Fjalla One", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.035em;
}

#Products .head_tl {
  background-image: url(../images/head_bg/products.jpg);
}

#Heat .head_tl {
  background-image: url(../images/head_bg/heat.jpg);
}

#Technology .head_tl {
  background-image: url(../images/head_bg/technology.jpg);
}

#Company .head_tl {
  background-image: url(../images/head_bg/company.jpg);
}

#Recruit .head_tl {
  background-image: url(../images/head_bg/recruit.jpg);
}

#Photo .head_tl {
  background-image: url(../images/head_bg/photo.jpg);
}

#Contact .head_tl {
  background-image: url(../images/head_bg/contact.jpg);
}

#Contact .head_tl.entry {
  background-image: url(../images/head_bg/recruit.jpg);
}

/* navPages
==================================*/
.navPages .wrap {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px 48px;
}

.navPages ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.navPages ul li {
  position: relative;
  width: calc(100% / 3);
  margin: 0 0 80px;
}

.navPages ul li::before,
.navPages ul li:nth-child(3n + 1)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/common/line-dot.png);
  width: 1px;
  height: 50%;
}

.navPages ul li:nth-child(3n + 1)::after {
  left: 0;
  right: auto;
}

.navPages ul li .ph {
  position: relative;
  background: #000;
  overflow: hidden;
}

.navPages ul li .ph img {
  width: 100%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.navPages ul li:hover .ph img {
  opacity: 0.7;
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.navPages ul li .textBox {
  position: relative;
  margin: 30px 0 0;
  padding: 0 24px;
}

.navPages ul li .textBox::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -1px;
  z-index: 1;
  background: #fff;
  width: calc(100% + 2px);
  height: 30px;
}

.navPages ul li .textBox p.tl {
  position: relative;
  padding: 0 0 22px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.navPages ul li .textBox p.tl::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  background: #004491 url(../images/common/arrow_wh.svg) no-repeat center;
  background-size: 6px 9px;
  width: 17px;
  height: 17px;
}

.navPages ul li .textBox p.text {
  font-size: 15px;
  line-height: 22px;
}

.navPages ul li:hover .textBox p.tl {
  color: #004491;
  text-decoration: underline;
}

/* animation
==================================*/
.c-anim-down,
.c-anim-down-load01,
.c-anim-down-load02,
.c-anim-down-load03 {
  -webkit-transform: translate(0, -30px);
  transform: translate(0, -30px);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}

.c-anim-in {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}

.move {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

/* SVGanimation
==================================*/
#main_en #path_en,
#main_en_sp #path_en_sp {
  stroke-miterlimit: 10;
  fill-opacity: 0;
  fill: #fff;
  stroke: #fff;
  stroke-width: 0.3;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

#main_jp #path_jp,
#main_jp_sp #path_jp_sp {
  stroke-miterlimit: 10;
  fill-opacity: 0;
  fill: #fff;
  stroke: #fff;
  stroke-width: 0.3;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

#main_en_sp #path_en_sp,
#main_jp_sp #path_jp_sp {
  stroke-width: 0.5;
}

/*==========================================
  Layout
==========================================*/
/* Top
==================================*/
#Top .heroArea {
  position: relative;
}

#Top .heroArea .slider {
  display: none;
}

#Top .heroArea .slider.slick-initialized {
  display: block;
}

#Top .heroArea ul li img {
  width: 100%;
}

#Top .heroArea .text {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 510px;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
}

#Top .heroArea .text svg#main_en {
  margin: 0 0 40px;
  height: 106px;
}

#Top .heroArea .text svg#main_jp {
  width: 237px;
  height: 17px;
}

#Top .message {
  text-align: center;
  padding: 74px 20px 70px;
}

#Top .message .inner {
  max-width: 900px;
  margin: auto;
}

#Top .message h2 {
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 43px;
  font-size: 26px;
  font-weight: 700;
  -webkit-transform: skewX(-12deg);
  transform: skewX(-12deg);
}

#Top .message h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: contain;
  width: 34px;
  height: 9px;
  margin: auto;
  -webkit-transform: skewX(12deg);
  transform: skewX(12deg);
}

#Top .message p {
  font-size: 15px;
  line-height: 28px;
}

#Top .banner {
  max-width: 900px;
  margin: 0 auto 90px;
  padding: 0 20px;
}

#Top .banner a:hover {
  opacity: 0.8;
}

#Top .banner img {
  width: 100%;
}

#Top .topNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #000;
}

#Top .topNav ul li {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
}

#Top .topNav ul li a {
  position: relative;
  z-index: 2;
  display: block;
  color: #fff;
  width: 100%;
  height: 100%;
}

#Top .topNav ul li a p {
  font-size: 29px;
  font-weight: 700;
}

#Top .topNav ul li a p span {
  display: block;
  margin: 0 0 12px;
  font-family: "Fjalla One", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

#Top .topNav ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#Top .topNav ul li.nav01::before {
  background-image: url(../images/top/ph01.jpg);
}

#Top .topNav ul li.nav02::before {
  background-image: url(../images/top/ph02.jpg);
}

#Top .topNav ul li.nav03::before {
  background-image: url(../images/top/ph03.jpg);
}

#Top .topNav ul li.nav04::before {
  background-image: url(../images/top/ph04.jpg);
}

#Top .topNav ul li.nav05::before {
  background-image: url(../images/top/ph05.jpg);
  background-position: center top;
}

#Top .topNav ul li:hover::before {
  opacity: 0.7;
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

#Top .topNav ul.upper {
  height: 455px;
}

#Top .topNav ul.upper li {
  text-align: center;
}

#Top .topNav ul.upper li a {
  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;
}

#Top .topNav ul.lower {
  height: 256px;
}

#Top .topNav ul.lower li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 40px;
}

#Top .photos {
  padding: 76px 20px 100px;
}

#Top .photos .inner {
  max-width: 1166px;
  margin: auto;
}

#Top .photos p.tl {
  margin: 0 0 35px;
  font-size: 29px;
  font-weight: 500;
  text-align: center;
}

#Top .photos p.tl span {
  display: block;
  color: #004491;
  margin: 0 0 8px;
  font-family: "Fjalla One", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

#Top .photos ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#Top .photos ul li {
  position: relative;
  width: calc((100% - 116px) / 5);
  margin-right: 29px;
}

#Top .photos ul li:last-child {
  margin-right: 0;
}

#Top .photos ul li .hover_box {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

#Top .photos ul li .hover_box p {
  color: #fff;
  padding: 0 34px;
  line-height: 23px;
}

#Top .photos ul li:hover .hover_box {
  opacity: 1;
}

#Top .photos ul li img {
  width: 100%;
}

#Top .photos a.btn {
  position: relative;
  z-index: 1;
  display: block;
  color: #004491;
  width: 293px;
  margin: 55px auto 0;
  border: 1px solid #004491;
  font-family: "Fjalla One", sans-serif;
  text-align: center;
  line-height: 50px;
}

#Top .photos a.btn:hover {
  color: #fff;
}

#Top .photos a.btn::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 29px;
  background: url(../images/common/arrow_bl.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#Top .photos a.btn:hover::after {
  background: url(../images/common/arrow_wh.svg) no-repeat;
}

#Top .photos a.btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #004491;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

#Top .photos a.btn:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/* Products
==================================*/
#Products.navPages ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#Products .Content {
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px 65px;
}

#Products .Content img {
  width: 100%;
}

#Products .box01 {
  position: relative;
}

#Products .box01 h3 {
  position: absolute;
  top: 26.5%;
  left: 155px;
  color: #fff;
  font-size: 30px;
  line-height: 50px;
  text-align: center;
}

#Products .box01 p {
  position: absolute;
  left: 100px;
  right: 100px;
  bottom: 10.5%;
  color: #fff;
  max-width: 800px;
  line-height: 26px;
}

#Products .box02 {
  padding: 145px 0 0;
}

#Products .box02 p.tl {
  position: relative;
  margin: 0 0 33px;
  padding: 0 0 44px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

#Products .box02 p.tl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 8px;
  margin: auto;
}

#Products .box02 p.text {
  max-width: 800px;
  margin: 0 auto 86px;
  line-height: 26px;
}

#Products .box02 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#Products .box02 ul li {
  width: calc((100% - 70px) / 3);
  margin: 0 35px 55px 0;
}

#Products .box02 ul li:nth-child(3n) {
  margin-right: 0;
}

#Products .box02 ul li p {
  padding: 14px 0 0;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}

#Products .box02 ul li p span {
  display: block;
  color: #004491;
  padding: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

#Products a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 293px;
  margin: 20px auto 0;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
}

#Products a.btn:hover {
  color: #fff;
}

#Products a.btn::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 15px;
  background: url(../images/common/arrow_bk_prev.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#Products a.btn:hover::after {
  background: url(../images/common/arrow_wh_prev.svg) no-repeat;
}

#Products a.btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #000;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

#Products a.btn:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

@media (max-width: 900px) {
  #Products .Con-rod .box01 h3 {
    top: 14.5%;
    left: 75px;
  }

  #Products .Con-rod .box01 p {
    left: 75px;
    right: 75px;
    bottom: 6.5%;
  }
}

#Products .Fork .box01 h3 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 102px;
}

@media (max-width: 900px) {
  #Products .Fork .box01 h3 {
    left: 35px;
  }
}

#Products .Fork .box02 ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#Products .Fork .box02 ul li {
  width: 310px;
  margin: 0 0 55px;
}

/* Heat
==================================*/
#Heat .Content .intro {
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px 50px;
}

#Heat .Content .intro .ph {
  float: right;
}

#Heat .Content .intro .ph02 {
  float: none;
}

#Heat .Content .intro p {
  float: left;
  width: calc(100% - 446px);
  max-width: 550px;
  line-height: 26px;
}

#Heat .Content .intro p.cnt {
  clear: both;
  float: none !important;
  width: 100% !important;
  line-height: 26px;
  text-align: center;
  max-width: 100% !important;
  padding-top: 30px;
}

#Heat .Content .info {
  background: #f9f9f9;
  padding: 50px 20px 120px;
}

#Heat .Content .info .c-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 42px 50px;
}

#Heat .Content .info .c-box:last-of-type {
  margin-bottom: 0;
}

#Heat .Content .info .c-box .ph {
  width: calc(100% - 464px);
}

#Heat .Content .info .c-box .ph img {
  width: 100%;
}

#Heat .Content .info .c-box .tableArea {
  width: 422px;
  margin-left: 42px;
}

#Heat .Content .info .c-box .tableArea p {
  position: relative;
  padding: 14px 0 34px 42px;
  font-size: 20px;
  font-weight: 500;
}

#Heat .Content .info .c-box .tableArea p span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #004491;
  font-family: "Fjalla One", sans-serif;
  font-size: 24px;
}

#Heat .Content .info .c-box .tableArea p span::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  background: #000;
  width: 1px;
  height: 30px;
  -webkit-transform: rotate(33deg);
  transform: rotate(33deg);
}

#Heat .Content .info .c-box .tableArea p b {
  font-size: 16px;
  padding: 0 0 0 8px;
  font-weight: 500;
}

#Heat .Content .info .c-box .tableArea dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#Heat .Content .info .c-box .tableArea dl dt,
#Heat .Content .info .c-box .tableArea dl dd {
  padding: 11px 0;
  border-top: 1px solid #d6d6d6;
  line-height: 26px;
}

#Heat .Content .info .c-box .tableArea dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #004491;
  width: 94px;
  font-weight: 500;
}

#Heat .Content .info .c-box .tableArea dl dd {
  width: 328px;
}

#Heat .Content .info02 {
  background: #f9f9f9;
  padding: 50px 20px 120px;
}

#Heat .Content .info02 .c-box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 42px 50px;
}

#Heat .Content .info02 .c-box:last-of-type {
  margin-bottom: 0;
}

#Heat .Content .info02 .c-box .tableArea {
  width: 100%;
}

#Heat .Content .info02 .c-box .tableArea p {
  position: relative;
  padding: 14px 0 34px 42px;
  font-size: 30px;
  font-weight: 500;
}

#Heat .Content .info02 .c-box .tableArea p span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #004491;
  font-family: "Fjalla One", sans-serif;
  font-size: 24px;
}

#Heat .Content .info02 .c-box .tableArea p span::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  background: #000;
  width: 1px;
  height: 30px;
  -webkit-transform: rotate(33deg);
  transform: rotate(33deg);
}

#Heat .Content .info02 .c-box .tableArea p b {
  font-size: 16px;
  padding: 0 0 0 8px;
  font-weight: 500;
}

#Heat .Content .info02 .c-box .tableArea p.line {
  padding: 0;
  margin: 0%;
  text-align: center;
}

#Heat .Content .info02 .c-box .tableArea h3 {
  font-size: 20px;
  width: 30%;
  padding: 15px 0;
  background: #000;
  color: #fff;
  text-align: center;
  margin: 0 auto 0px;
}

#Heat .Content .info02 .c-box .tableArea .wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#Heat .Content .info02 .c-box .tableArea .wrap h3 {
  background: #2a439a;
  width: 100%;
  margin-bottom: 0;
}

#Heat .Content .info02 .c-box .tableArea .wrap .cld {
  width: 30%;
}

#Heat .Content .info02 .c-box .tableArea .wrap .cld dl {
  border: dotted 1px #ccc;
  padding: 10px;
}

#Heat .Content .info02 .c-box .tableArea .wrap .cld dl dt {
  color: #004491;
  font-weight: 500;
}

#Heat .Content .info02 .c-box .tableArea .wrap .cld dt,
#Heat .Content .info02 .c-box .tableArea .wrap .cld dd {
  padding: 5px 0;
  line-height: 26px;
}

#Heat .Content .info02 .c-box .tableArea .wrap .cld dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #004491;
  width: 100%;
  font-weight: 500;
}

#Heat .Content .info02 .c-box .tableArea .wrap .cld dd {
  width: 100%;
}

#Heat .Content .info02 .c-box .tableArea div.gal {
  margin-bottom: 50px;
}

#Heat .Content .info02 .c-box .tableArea div.gal h3 {
  color: #000;
  text-align: left;
  background: none;
  width: 100% !important;
}

#Heat .Content .info02 .c-box .tableArea div.gal div.wrap {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#Heat .Content .info02 .c-box .tableArea div.gal dl {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 30px;
}

#Heat .Content .info02 .c-box .tableArea div.gal dl dt {
  margin-bottom: 5px;
}

#Heat .Content .info02 .c-box .tableArea div.gal dl dt img {
  width: 100%;
  height: auto;
}

#Heat .Content .info02 .c-box .tableArea div.gal dl dd {
  text-align: center;
}

#Heat .Content .info02 .c-box .tableArea div.gal dl:nth-child(3n) {
  margin-right: 0;
}

#Heat .Content .info02 .c-box .tableArea div.detail dl {
  position: relative;
  margin-bottom: 50px;
}

#Heat .Content .info02 .c-box .tableArea div.detail dl dt {
  margin: 0 0 25px;
  font-weight: bold;
  font-size: 20px;
}

#Heat .Content .info02 .c-box .tableArea div.detail dl dt::after {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: auto;
  background-size: contain;
  width: 30px;
  height: 8px;
}

#Heat .Content .info02 .c-box .tableArea div.detail dl dd {
  line-height: 24px;
}

#Heat main .Content .info02 div.box01.c-box.c-anim-down.move div.tableArea div.grp div.wrap.wrap02 div.cld {
  width: 23%;
}

#Heat main .Content .info02 div.box01.c-box.c-anim-down.move div.tableArea div.grp div.wrap.wrap03 div.cld {
  width: 48%;
}

#Heat .Content #heat01,
#Heat .Content #heat02,
#Heat .Content #heat03 {
  position: absolute;
  padding-top: 100px;
  margin-top: -100px;
}

#Heat .Content a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 293px;
  margin: 80px auto 0;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
}

#Heat .Content a.btn:hover {
  color: #fff;
}

#Heat .Content a.btn::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 15px;
  background: url(../images/common/arrow_bk_prev.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#Heat .Content a.btn:hover::after {
  background: url(../images/common/arrow_wh_prev.svg) no-repeat;
}

#Heat .Content a.btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #000;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

#Heat .Content a.btn:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/* Technology
==================================*/
#Technology .intro {
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px;
}

#Technology .intro .ph {
  float: right;
}

#Technology .intro h3 {
  float: left;
  width: calc(100% - 446px);
  max-width: 550px;
  margin: 0 0 44px;
  font-size: 30px;
  font-weight: normal;
  line-height: 50px;
}

#Technology .intro p {
  float: left;
  width: calc(100% - 446px);
  max-width: 550px;
  line-height: 26px;
}

#Technology .phArea {
  background: #f9f9f9;
  padding: 90px 20px 40px;
}

#Technology .phArea ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}

#Technology .phArea ul li {
  width: calc((100% - 70px) / 3);
  margin: 0 35px 50px 0;
}

#Technology .phArea ul li:nth-child(3n) {
  margin-right: 0;
}

#Technology .phArea ul li img {
  width: 100%;
}

#Technology .phArea ul li p {
  padding: 10px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

#Technology .info {
  background: #f9f9f9;
  padding: 100px 20px 120px;
}

#Technology .info .c-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  max-width: 1000px;
  margin: 0 auto 20px;
  padding: 42px 50px;
}

#Technology .info .c-box:last-of-type {
  margin-bottom: 0;
}

#Technology .info .c-box .ph {
  width: calc(100% - 464px);
}

#Technology .info .c-box .ph img {
  width: 100%;
}

#Technology .info .c-box .tableArea {
  width: 422px;
  margin-left: 42px;
}

#Technology .info .c-box .tableArea p {
  position: relative;
  padding: 14px 0 34px 42px;
  font-size: 20px;
  font-weight: 500;
}

#Technology .info .c-box .tableArea p span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #004491;
  font-family: "Fjalla One", sans-serif;
  font-size: 24px;
}

#Technology .info .c-box .tableArea p span::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  background: #000;
  width: 1px;
  height: 30px;
  -webkit-transform: rotate(33deg);
  transform: rotate(33deg);
}

#Technology .info .c-box .tableArea p b {
  font-size: 16px;
  padding: 0 0 0 8px;
  font-weight: 500;
}

#Technology .info .c-box .tableArea dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#Technology .info .c-box .tableArea dl dt,
#Technology .info .c-box .tableArea dl dd {
  padding: 11px 0;
  border-top: 1px solid #d6d6d6;
  line-height: 26px;
}

#Technology .info .c-box .tableArea dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #004491;
  width: 80px;
  font-weight: 500;
}

#Technology .info .c-box .tableArea dl dd {
  width: 332px;
}

#Technology .info .c-box .tableArea dl dd ul li {
  position: relative;
  padding-left: 9px;
}

#Technology .info .c-box .tableArea dl dd ul li::before {
  content: "・";
  position: absolute;
  left: -6px;
}

#Technology a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 293px;
  margin: 20px auto 50px;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
}

#Technology a.btn:hover {
  color: #fff;
}

#Technology a.btn::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 15px;
  background: url(../images/common/arrow_bk_prev.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#Technology a.btn:hover::after {
  background: url(../images/common/arrow_wh_prev.svg) no-repeat;
}

#Technology a.btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #000;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

#Technology a.btn:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

#Technology .Machine .intro h3 {
  width: calc(100% - 430px);
  max-width: 570px;
}

#Technology .Machine .intro p a {
  display: block;
  width: 302px;
  margin: 35px 0 0;
}

#Technology .Machine .intro p a:hover {
  opacity: 0.7;
}

#Technology .Furnace .main_equipment {
  padding: 90px 20px 120px;
}

#Technology .Furnace .main_equipment h3 {
  position: relative;
  margin: 0 0 40px;
  padding: 0 0 44px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

#Technology .Furnace .main_equipment h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 8px;
  margin: auto;
}

#Technology .Furnace .main_equipment .table_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 890px;
  margin: auto;
}

#Technology .Furnace .main_equipment .table_wrap>div {
  width: calc(50% - 15px);
}

#Technology .Furnace .main_equipment .table_wrap p.tl {
  background: url(../images/technology/bg_pattern.jpg);
  padding: 10px 0;
  font-weight: 500;
  text-align: center;
}

#Technology .Furnace .main_equipment .table_wrap ul li {
  padding: 15px 0 15px 10px;
  border-bottom: 1px solid #e0e0e0;
}

#Technology .Furnace .main_equipment .table_wrap ul li span {
  display: inline-block;
  width: calc(100% - 42px);
}

#Technology .Furnace .main_equipment a.btn {
  margin: 80px auto 0;
}

/* Company
==================================*/
#Company .Content {
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px 120px;
}

#Company .Content a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 293px;
  margin: 80px auto 0;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
}

#Company .Content a.btn:hover {
  color: #fff;
}

#Company .Content a.btn::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 15px;
  background: url(../images/common/arrow_bk_prev.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#Company .Content a.btn:hover::after {
  background: url(../images/common/arrow_wh_prev.svg) no-repeat;
}

#Company .Content a.btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #000;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

#Company .Content a.btn:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

#Company .Message img {
  width: 100%;
}

#Company .Message p {
  max-width: 800px;
  margin: 30px auto 0;
  padding: 0 50px;
  line-height: 26px;
}

#Company .Overview h3 {
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 43px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

#Company .Overview h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 8px;
  margin: auto;
}

#Company .Overview .philosophy {
  background: url(../images/company/overview_ph01.jpg) no-repeat center;
  background-size: cover;
  padding: 78px 50px 50px;
}

#Company .Overview .philosophy h3 {
  color: #fff;
}

#Company .Overview .philosophy ul li {
  position: relative;
  color: #fff;
  width: 616px;
  margin: auto;
  padding-left: 44px;
  font-size: 22px;
  font-weight: 500;
  line-height: 50px;
}

#Company .Overview .philosophy ul li::before {
  content: "一、";
  position: absolute;
  left: 0;
}

#Company .Overview .philosophy .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 900px;
  margin: 65px auto 0;
}

#Company .Overview .philosophy .wrap>div {
  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-sizing: border-box;
  box-sizing: border-box;
  background: #e8edf2;
  width: calc((100% - 20px) / 2);
  padding: 80px 30px 38px;
  border: 6px solid #fff;
}

#Company .Overview .philosophy .wrap>div span {
  position: absolute;
  top: 26px;
  left: -6px;
  display: inline-block;
  color: #fff;
  background: #004491;
  width: 87px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 28px;
  text-align: center;
}

#Company .Overview .philosophy .wrap>div strong {
  font-size: 30px;
}

#Company .Overview .philosophy .wrap ul li {
  color: #000;
  width: 216px;
  font-size: 18px;
  line-height: 30px;
}

#Company .Overview .info,
#Company .Overview .oversea {
  max-width: 800px;
  margin: auto;
  padding: 98px 50px;
}

#Company .Overview .info dl,
#Company .Overview .oversea dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#Company .Overview .info dl dt,
#Company .Overview .info dl dd,
#Company .Overview .oversea dl dt,
#Company .Overview .oversea dl dd {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  line-height: 24px;
}

#Company .Overview .info dl dt,
#Company .Overview .oversea dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 24%;
  padding: 0 0 0 25px;
  font-weight: 500;
}

#Company .Overview .info dl dd,
#Company .Overview .oversea dl dd {
  width: 75%;
}

#Company .Overview .info dl dd ul li,
#Company .Overview .oversea dl dd ul li {
  margin: 0 0 15px;
}

#Company .Overview .info dl dd ul li:last-child,
#Company .Overview .oversea dl dd ul li:last-child {
  margin: 0;
}

#Company .Overview .info dl dd ul li b,
#Company .Overview .oversea dl dd ul li b {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  font-weight: 500;
}

#Company .Overview .info dl dd ul li b::before,
#Company .Overview .oversea dl dd ul li b::before {
  content: "";
  background: #004491;
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#Company .Overview .info dl dd.mic p,
#Company .Overview .oversea dl dd.mic p {
  position: relative;
  display: inline-block;
  font-size: 14px;
}

#Company .Overview .info dl dd.mic p::after,
#Company .Overview .oversea dl dd.mic p::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -14px;
  background: url(../images/common/icon_outside.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 6px;
}

#Company .Overview .info dl dd.mic img,
#Company .Overview .oversea dl dd.mic img {
  width: 102px;
  height: 30px;
  padding-right: 8px;
}

#Company .Overview .oversea {
  padding: 0 50px;
}

#Company .Overview .oversea .thailand {
  margin: 0 0 50px;
}

#Company .Overview .oversea p.tl {
  background: url(../images/technology/bg_pattern.jpg);
  padding: 15px 25px;
  font-weight: 500;
}

#Company .Overview .oversea p.attr {
  padding: 15px 0 0;
}

#Company .Access .Content {
  padding-top: 2px;
}

#Company .Access h3 {
  clear: both;
  position: relative;
  margin: 0 0 30px;
  padding: 98px 0 43px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

#Company .Access h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 8px;
  margin: auto;
}

#Company .Access .map {
  height: 420px;
}

#Company .Access .mapimage,
#Company .Access .mapimage-2 {
  text-align: center;
  box-sizing: border-box;
}

#Company .Access .mapimage {
  margin-bottom: 24px;
}

#Company .Access .mapimage img,
#Company .Access .mapimage-2 img {
  max-width: 100%;
  height: auto;
}

#Company .Access .mapimage-2 img {
  border: 1px solid #e0e0e0;
}


#Company .Access .map iframe {
  width: 100%;
  height: 100%;
}

#Company .Access .text_wrap {
  width: 48%;
}

#Company .Access .text_wrap p {
  line-height: 26px;
}

#Company .Access .text_wrap p.name {
  margin: 0 0 5px;
  padding: 25px 0 2px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 18px;
  font-weight: 500;
}

#Company .Access .text_wrap.west {
  float: left;
}

#Company .Access .text_wrap.east {
  float: right;
}

#Company .History .Content {
  max-width: 800px;
}

#Company .History table {
  width: 100%;
}

#Company .History table tr {
  border-bottom: 1px solid #e0e0e0;
}

#Company .History table th {
  padding: 10px 0;
  line-height: 24px;
  font-weight: 400;
}

#Company .History table th.tit {
  width: 150px;
  padding-left: 25px;
  text-align: left;
}

#Company .History table th.month {
  width: 50px;
  text-align: right;
}

#Company .History table td.content {
  padding: 10px 0 10px 25px;
  line-height: 24px;
}

#Company .Environment h3 {
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 43px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

#Company .Environment h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 8px;
  margin: auto;
}

#Company .Environment .philosophy {
  background: url(../images/company/environment_ph01.jpg) no-repeat center right;
  background-size: cover;
  padding: 78px 50px 50px;
}

#Company .Environment .philosophy h3 {
  color: #fff;
}

#Company .Environment .philosophy>p {
  position: relative;
  color: #fff;
  margin: auto;
  font-size: 22px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
}

#Company .Environment .philosophy .guideline {
  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-sizing: border-box;
  box-sizing: border-box;
  background: #e8edf2;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 80px 68px 0;
  border: 6px solid #fff;
}

#Company .Environment .philosophy .guideline>span {
  position: absolute;
  top: 26px;
  left: -6px;
  display: inline-block;
  color: #fff;
  background: #004491;
  width: 87px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 28px;
  text-align: center;
}

#Company .Environment .philosophy .guideline ul li {
  margin: 0 0 42px;
}

#Company .Environment .philosophy .guideline ul li p.tl {
  position: relative;
  padding: 3px 0 10px 50px;
  font-size: 20px;
  font-weight: 500;
}

#Company .Environment .philosophy .guideline ul li p.tl span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #004491;
  font-family: "Fjalla One", sans-serif;
  font-size: 24px;
}

#Company .Environment .philosophy .guideline ul li p.tl span::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -6px;
  background: #000;
  width: 1px;
  height: 30px;
  -webkit-transform: rotate(33deg);
  transform: rotate(33deg);
}

#Company .Environment .philosophy .guideline ul li p.text {
  padding-left: 49px;
  font-size: 16px;
  line-height: 24px;
}

#Company .Environment .philosophy p.name {
  margin: 25px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: right;
}

#Company .Environment .philosophy p.name span {
  font-size: 14px;
}

#Company .Environment .quality {
  max-width: 900px;
  margin: auto;
  padding: 100px 0 70px;
}

#Company .Environment .quality .wrap {
  padding: 50px 20px 10px;
  border: 1px solid #e5e5e5;
}

#Company .Environment .quality .wrap p.tl {
  margin: 0 0 50px;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
}

#Company .Environment .quality .wrap ul li {
  position: relative;
  width: 504px;
  margin: 0 auto 32px;
  padding: 3px 0 10px 50px;
  font-size: 24px;
  font-weight: 500;
}

#Company .Environment .quality .wrap ul li span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #004491;
  font-family: "Fjalla One", sans-serif;
  font-size: 24px;
}

#Company .Environment .quality .wrap ul li span::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -6px;
  background: #000;
  width: 1px;
  height: 30px;
  -webkit-transform: rotate(33deg);
  transform: rotate(33deg);
}

#Company .Environment .quality p.name {
  margin: 25px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: right;
}

#Company .Environment .quality p.name span {
  font-size: 14px;
}

#Company .Environment .certificate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#Company .Environment .certificate .ph {
  margin: 0 25px;
}

#Company .Environment .certificate .ph p {
  padding: 20px 0 0;
  font-size: 14px;
}

/* Company_Anniversary
==================================*/
#Company .Anniversary {
  background: #001329;
  background: linear-gradient(354deg, #001e40 26%, #001329 100%);
}

#Company .Anniversary * {
  color: #fff;
}

#Company .Anniversary .Content {
  padding: 0px 20px 60px;
}

#Company .Anniversary .Content .inner {
  position: relative;
  margin: 106px 0 0;
}

#Company .Anniversary .Content .line-dot {
  position: absolute;
  top: 25px;
  right: 0;
  left: 0;
  bottom: 10px;
  z-index: 1;
  background-image: url(../images/anniversary/line-dot.png);
  background-repeat: repeat-y;
  background-size: 3px 30px;
  width: 3px;
  height: calc(100% - 35px);
  margin: auto;
}

#Company .Anniversary .Content .ad img {
  height: 39px;
}

#Company .Anniversary .Content .rltv_l {
  position: relative;
  top: -200px;
  left: 90px;
}

#Company .Anniversary .Content .box_l {
  position: relative;
  padding-bottom: 180px;
}

#Company .Anniversary .Content .box_l .ad {
  position: absolute;
  top: 0;
  left: 0;
  right: 50%;
  text-align: right;
  -webkit-transform: translateX(-88px);
  transform: translateX(-88px);
}

#Company .Anniversary .Content .box_l .ad::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -94px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/anniversary/line-point_left.svg) no-repeat;
  background-size: contain;
  width: 73px;
  height: 15px;
}

#Company .Anniversary .Content .box_l .ad02 {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  text-align: right;
  -webkit-transform: translateX(88px);
  transform: translateX(88px);
}

#Company .Anniversary .Content .box_l .ad02::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -95px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/anniversary/line-point_right.svg) no-repeat;
  background-size: contain;
  width: 73px;
  height: 15px;
}

#Company .Anniversary .Content .box_l .anim-in_l-load02 {
  left: 0 !important;
}

#Company .Anniversary .Content .box_l .info {
  width: 378px;
  margin: 12px 60px 0 auto;
  position: relative;
  left: 100px;
}

@media (max-width: 1000px) {
  #Company .Anniversary .Content .box_l .info {
    margin-right: 0;
  }
}

#Company .Anniversary .Content .box_l .info p {
  margin: 0 0 10px;
  line-height: 26px;
}

#Company .Anniversary .Content .box_l .info.sub {
  width: 378px;
  margin: 12px 60px 0 auto;
  position: absolute;
  top: 80px;
  left: -410px;
}

#Company .Anniversary .Content .box_l .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

#Company .Anniversary .Content .box_l .bg img {
  width: 100%;
}

#Company .Anniversary .Content .box_r02 {
  position: relative;
  padding: 0 0 100px;
}

#Company .Anniversary .Content .box_r02 .ad {
  position: absolute;
  top: 0;
  left: 0%;
  z-index: 2;
  text-align: right;
  -webkit-transform: translateX(88px);
  transform: translateX(88px);
}

#Company .Anniversary .Content .box_r02 .ad::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -95px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/anniversary/line-point_right.svg) no-repeat;
  background-size: contain;
  width: 73px;
  height: 15px;
}

#Company .Anniversary .Content .box_r02 .info {
  position: relative;
  z-index: 2;
  width: 378px;
  margin: 12px auto 0 60px;
}

@media (max-width: 1000px) {
  #Company .Anniversary .Content .box_r02 .info {
    margin-left: 0;
  }
}

#Company .Anniversary .Content .box_r02 .info p {
  margin: 0 0 10px auto;
  line-height: 26px;
}

#Company .Anniversary .Content .box_r02 .info .ph {
  text-align: right;
}

#Company .Anniversary .Content .box_r02 .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

#Company .Anniversary .Content .box_r02 .bg img {
  width: 100%;
}

#Company .Anniversary .Content .box_r {
  position: relative;
  padding: 0 0 150px;
}

#Company .Anniversary .Content .box_r .ad {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  text-align: right;
  -webkit-transform: translateX(88px);
  transform: translateX(88px);
}

#Company .Anniversary .Content .box_r .ad::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -95px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/anniversary/line-point_right.svg) no-repeat;
  background-size: contain;
  width: 73px;
  height: 15px;
}

#Company .Anniversary .Content .box_r .info {
  position: relative;
  z-index: 2;
  width: 378px;
  margin: 12px auto 0 60px;
  left: -82px;
}

@media (max-width: 1000px) {
  #Company .Anniversary .Content .box_r .info {
    margin-left: 0;
  }
}

#Company .Anniversary .Content .box_r .info p {
  margin: 0 0 10px auto;
  line-height: 26px;
}

#Company .Anniversary .Content .box_r .info .ph {
  text-align: right;
}

#Company .Anniversary .Content .box_r .info.sub {
  position: absolute;
  z-index: 2;
  width: 378px;
  margin: 12px auto 0 60px;
  left: 410px;
  top: 80px;
}

@media (max-width: 1000px) {
  #Company .Anniversary .Content .box_r .info.sub {
    margin-left: 0;
  }
}

#Company .Anniversary .Content .box_r .info.sub p {
  margin: 0 0 10px auto;
  line-height: 26px;
}

#Company .Anniversary .Content .box_r .info.sub .ph {
  text-align: right;
}

#Company .Anniversary .Content .box_r .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

#Company .Anniversary .Content .box_r .bg img {
  width: 100%;
}

#Company .Anniversary .Content .box01 .bg {
  top: -37px;
}

#Company .Anniversary .Content .box02 .bg {
  top: 16px;
}

#Company .Anniversary .Content .box04 .info p {
  width: 334px;
}

#Company .Anniversary .Content .box06 .bg {
  top: -33px;
}

#Company .Anniversary .Content .box06 .info p {
  width: 195px;
}

#Company .Anniversary .Content .box08 .info {
  margin-left: 0;
  width: 460px;
}

@media (max-width: 1000px) {
  #Company .Anniversary .Content .box08 .info {
    width: 378px;
  }

  #Company .Anniversary .Content .box08 .info .ph img {
    width: 100%;
  }
}

#Company .Anniversary .Content .box08 .info p {
  width: 360px;
}

#Company .Anniversary .Content .box10 .bg {
  top: -17px;
}

#Company .Anniversary .Content .box10 .info p {
  width: 285px;
}

#Company .Anniversary .Content .box11 .info .ph img {
  width: 238px;
  height: 55px;
}

#Company .Anniversary .Content .box12 .info p {
  width: 315px;
}

#Company .Anniversary .Content .box14 .info p {
  width: 139px;
}

#Company .Anniversary .Content .box16 .bg {
  top: -16px;
}

#Company .Anniversary .Content .box16 .info p {
  width: 228px;
}

#Company .Anniversary .Content .box17 .bg {
  top: -120px;
}

#Company .Anniversary .Content .box18 .info p {
  width: 209px;
}

#Company .Anniversary .Content .last {
  position: relative;
  z-index: 2;
  background: #001e40;
  padding: 20px 0 0;
  text-align: center;
}

#Company .Anniversary .Content .last p {
  margin-bottom: 10px;
}

#Company .Anniversary .Content .last img {
  width: 745px;
  margin-top: 10px;
}

#Company .Anniversary .back_btn {
  padding: 0 0 120px;
}

#Company .Anniversary .back_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 293px;
  margin: auto;
  border: 1px solid #fff;
  line-height: 50px;
  text-align: center;
}

#Company .Anniversary .back_btn a:hover {
  color: #000;
}

#Company .Anniversary .back_btn a::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 28px;
  background: url(../images/common/arrow_wh_prev.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#Company .Anniversary .back_btn a:hover::after {
  background: url(../images/common/arrow_bk_prev.svg) no-repeat;
}

#Company .Anniversary .back_btn a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #fff;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

#Company .Anniversary .back_btn a:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.anim-in_l-load {
  -webkit-transform: translate(-108px, 0) !important;
  transform: translate(-108px, 0) !important;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}

.anim-in_l-load.move {
  -webkit-transform: translateX(-88px) !important;
  transform: translateX(-88px) !important;
}

.anim-in_l-load02 {
  -webkit-transform: translate(-20px, 0);
  transform: translate(-20px, 0);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}

.anim-in_r {
  -webkit-transform: translate(108px, 0) !important;
  transform: translate(108px, 0) !important;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}

.anim-in_r.move {
  -webkit-transform: translateX(88px) !important;
  transform: translateX(88px) !important;
}

.anim-in_r02 {
  -webkit-transform: translate(20px, 0);
  transform: translate(20px, 0);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}

.anim-in_l {
  -webkit-transform: translate(-108px, 0) !important;
  transform: translate(-108px, 0) !important;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}

.anim-in_l.move {
  -webkit-transform: translateX(-88px) !important;
  transform: translateX(-88px) !important;
}

.anim-in_l02 {
  -webkit-transform: translate(-20px, 0);
  transform: translate(-20px, 0);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  opacity: 0;
}

.move {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

/* Recruit
==================================*/
#Recruit .About dl {
  text-align: center;
  margin: 50px 0 0;
}

#Recruit .About dl dt {
  color: #004491;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

#Recruit .About dl dd {
  font-size: 30px;
  line-height: 50px;
  font-weight: bold;
}

#Recruit .About .table_wrap {
  padding: 30px 20px 120px;
}

#Recruit .About b {
  font-size: 24px;
  display: block;
  position: relative;
  max-width: 984px;
  margin: 30px auto 0;
  font-weight: normal;
  padding: 0 0 15px 16px;
}

#Recruit .About b::before {
  position: absolute;
  top: 10px;
  left: 3px;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#Recruit .About table {
  width: 1000px;
  margin: 0 auto 100px;
}

@media (max-width: 1100px) {
  #Recruit .About table {
    width: 100%;
  }
}

#Recruit .About table tr th {
  width: 165px;
  padding: 0 0 0 25px;
  border-top: 1px solid #e0e0e0;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  line-height: 22px;
}

#Recruit .About table tr td span.sotsu {
  display: inline-block;
  width: 110px;
}

#Recruit .About table tr:last-child th {
  border-bottom: 1px solid #e0e0e0;
}

#Recruit .About table tr:last-child td {
  border-bottom: 1px solid #e0e0e0;
}

#Recruit .About table tr td {
  padding: 15px 0 15px 30px;
  border-top: 1px solid #e0e0e0;
  line-height: 24px;
}

#Recruit .About table ul li {
  padding: 0 0 22px;
}

#Recruit .About table ul li:last-child {
  padding: 0;
}

#Recruit .Product .wrap {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px 64px;
}

#Recruit .Product p.tl {
  position: relative;
  margin: 0 0 33px;
  padding: 0 0 44px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

#Recruit .Product p.tl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 8px;
  margin: auto;
}

#Recruit .Product .box01 {
  margin-bottom: 55px;
  position: relative;
  text-align: center;
}

#Recruit .Product .box01>img {
  width: 100%;
}

#Recruit .Product .box01 .on_image {
  position: absolute;
  top: -17%;
  left: -7%;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 124px;
  max-height: 280px;
}

#Recruit .Product .box01 .on_image img {
  transform: rotate(146deg);
}

.blinking {
  -webkit-animation: blink 1.3s ease-in-out infinite alternate;
  -moz-animation: blink 1.3s ease-in-out infinite alternate;
  animation: blink 1.3s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

@-moz-document url-prefix() {
  #Recruit .Product .box01 .on_image {
    top: 21%;
    left: 40%;
    max-width: initial;
    max-height: initial;
  }
}

#Recruit .Product ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#Recruit .Product .text {
  max-width: 800px;
  margin: 0 auto 86px;
  line-height: 26px;
}

#Recruit .Product ul li {
  width: 454px;
  margin: 0 0 55px;
}

#Recruit .Interview .wrap {
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px 64px;
}

#Recruit .Interview .modal .wrap {
  padding: 0;
}

#Recruit .Interview .modal .wrap button::before,
#Recruit .Interview .modal .wrap button::after {
  background: #000;
}

#Recruit .Interview .modal .wrap button {
  top: 10px;
  right: 10px;
}

#Recruit .Interview ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#Recruit .Interview ul img {
  width: 100%;
}

#Recruit .Interview ul li {
  width: calc((100% - 70px) / 3);
  margin: 0 35px 56px 0;
}

#Recruit .Interview ul li:nth-child(3n) {
  margin-right: 0;
}

#Recruit .Interview ul li .ph {
  background: #000;
  overflow: hidden;
}

#Recruit .Interview ul li .ph img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

#Recruit .Interview ul li:hover .ph img {
  opacity: 0.7;
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

#Recruit .Interview ul li p {
  padding: 14px 0 0;
  font-size: 14px;
  text-align: center;
}

#Recruit .Interview ul li p span {
  display: block;
  padding: 0px 0 0;
  font-size: 20px;
  font-weight: 500;
}

#Recruit a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 293px;
  margin: 80px auto 0;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
}

#Recruit a.btn:hover {
  color: #fff;
}

#Recruit a.btn::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 15px;
  background: url(../images/common/arrow_bk_prev.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#Recruit a.btn:hover::after {
  background: url(../images/common/arrow_wh_prev.svg) no-repeat;
}

#Recruit a.btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #000;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

#Recruit a.btn:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

#Recruit .Interview a.btn {
  margin: 40px auto;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: url(../images/recruit/modal_bg.png);
  padding: 30px;
  overflow: auto;
}

.modal .wrap {
  position: absolute;
  top: 50%;
  left: 30px;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
  background: #fff;
}

.modal .wrap button {
  display: block;
  position: absolute;
  top: -48px;
  right: -50px;
  width: 40px;
  height: 40px;
}

.modal .wrap button::before,
.modal .wrap button::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  background: #fff;
  width: 40px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal .wrap button::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 1100px) {
  .modal .wrap button {
    top: 10px;
    right: 10px;
  }

  .modal .wrap button::before,
  .modal .wrap button::after {
    background: #000;
  }
}

.modal .textBox {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 690px;
  padding: 60px 60px 30px;
}

.modal .textBox p.name {
  position: relative;
  margin: 0 0 24px;
  padding: 0 0 39px;
  font-size: 14px;
}

.modal .textBox p.name span {
  display: block;
  padding: 14px 0 0;
  font-size: 30px;
  font-weight: 500;
}

.modal .textBox p.name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 8px;
}

.modal .textBox p.text {
  line-height: 26px;
}

@media all and (-ms-high-contrast: none) {

  *::-ms-backdrop,
  .modal {
    overflow: hidden;
  }

  *::-ms-backdrop,
  .modal .wrap {
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    width: 940px;
  }
}

/* Photo
==================================*/
#Photo .photos {
  padding: 100px 20px 120px;
}

#Photo .photos .inner {
  max-width: 1200px;
  margin: auto;
}

#Photo .photos ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#Photo .photos ul li {
  position: relative;
  width: calc((100% - 120px) / 5);
  margin: 0 30px 32px 0;
}

#Photo .photos ul li:nth-child(5n) {
  margin-right: 0;
}

#Photo .photos ul li .hover_box {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

#Photo .photos ul li .hover_box p {
  color: #fff;
  padding: 0 34px;
  line-height: 23px;
}

@media (max-width: 1257px) {
  #Photo .photos ul li .hover_box p {
    padding: 0 2.7vw;
    font-size: 1.27vw;
    line-height: 1.4375‬;
  }
}

#Photo .photos ul li:hover .hover_box {
  opacity: 1;
}

#Photo .photos ul li img {
  width: 100%;
}

#Photo .photos .pager .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 50px 0 0;
}

#Photo .photos .pager .wp-pagenavi a {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 5px;
  border: 1px solid #e8e8e8;
  font-size: 14px;
  line-height: 27px;
  text-align: center;
}

#Photo .photos .pager .wp-pagenavi a:hover {
  color: #fff;
  background: #004491;
}

#Photo .photos .pager .wp-pagenavi a.nextpostslink,
#Photo .photos .pager .wp-pagenavi a.previouspostslink {
  line-height: 24px;
}

#Photo .photos .pager .wp-pagenavi .current {
  display: block;
  color: #fff;
  background: #004491;
  width: 28px;
  height: 28px;
  margin: 0 5px;
  border: 1px solid #e8e8e8;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
}

/* Contact
==================================*/
#Contact .form_wrap {
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px 120px;
}

#Contact .form_wrap>p {
  margin: 0 0 24px;
}

#Contact table {
  width: 100%;
  margin: 0 0 26px;
}

#Contact table tr {
  background: #f3f3f3;
  border-bottom: 10px solid #fff;
}

#Contact table tr th {
  width: 234px;
  padding: 10px 0 10px 26px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}

#Contact table tr th span.need {
  display: inline-block;
  color: #fff;
  background: #c71237;
  width: 41px;
  margin: 0 0 0 10px;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
}

#Contact table tr th.appeal {
  line-height: 23px;
}

#Contact table tr th.appeal span {
  -webkit-transform: translateY(-12px);
  transform: translateY(-12px);
}

#Contact table tr td {
  padding: 10px 20px 10px 0;
  vertical-align: middle;
}

#Contact input,
#Contact textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0 19px;
  background: #fff;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#Contact input {
  height: 40px;
}

#Contact input.text02 {
  width: 172px;
  margin: 0 0 7px;
}

#Contact input.text03 {
  width: 100px;
  margin: 0 10px 0 0;
}

#Contact input[type="button"] {
  color: #fff;
  background: #000;
  width: 120px;
  margin: 0 0 0 7px;
  padding: 0 12px;
  cursor: pointer;
}

#Contact input[type="button"]:hover {
  opacity: 0.8;
}

#Contact textarea {
  width: 100%;
  height: 230px;
  padding: 10px 19px;
  resize: vertical;
}

#Contact .submit_area {
  margin: 70px 0 0;
  text-align: center;
}

#Contact input[type="submit"] {
  color: #fff;
  background: #004491 url(../images/common/arrow_wh.svg) no-repeat;
  background-size: 6px 9px;
  background-position: center right 20px;
  width: 324px;
  height: 63px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

#Contact input[type="submit"]:hover {
  opacity: 0.7;
}

#Contact .privacy p {
  color: #004491;
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 500;
}

#Contact .privacy dl dt {
  margin: 0 0 3px;
  font-size: 16px;
  font-weight: 500;
}

#Contact .privacy dl dd {
  margin: 0 0 20px;
  line-height: 23px;
}

#Contact .privacy dl ul {
  padding: 6px 0 0 12px;
}

#Contact .privacy dl ul li {
  padding-left: 1em;
  text-indent: -1em;
}

#Contact .form02 span.ERR,
#Contact .form02 p.ERR {
  color: #dd2929;
  font-weight: 500;
  letter-spacing: 0.02em;
}

#Contact .form02 table td p {
  line-height: 23px;
  padding: 9px 0;
}

#Contact .form02 .submit_area p.ERR {
  margin: 0 0 10px;
}

#Contact .form02 .submit_area .btn_back input[type="submit"] {
  background: #004491 url(../images/common/arrow_wh_prev.svg) no-repeat;
  background-size: 6px 9px;
  background-position: center left 20px;
}

#Contact .form02 ul.koumoku {
  width: 720px;
  margin: auto;
  padding: 20px 0 0;
}

#Contact .send_comp {
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px 120px;
}

#Contact .send_comp p {
  margin: 0 0 50px;
  line-height: 23px;
}

#Contact .send_comp .contact_back a {
  display: block;
  color: #fff;
  background: #004491 url(../images/common/arrow_wh_prev.svg) no-repeat;
  background-size: 6px 9px;
  background-position: center left 20px;
  width: 324px;
  height: 63px;
  font-size: 18px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 0.1em;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#Contact .send_comp .contact_back a:hover {
  opacity: 0.7;
}

#Technology .phArea ul>li>ul>li:not(:first-child) {
  display: none !important;
}

#Technology .phArea ul>li>ul>li:first-child {
  display: block !important;
}

#Technology .phArea ul>li>ul>li {
  width: 100% !important;
  margin: 0 !important;
}

#Technology .phArea ul li strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  margin-bottom: 10px;
  display: block;
}

#Technology .phArea ul li p {
  padding: 10px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

#lightcase-content {
  /* padding: 0 13px; */
}

#Technology .phArea ul li a p,
#Technology .phArea ul li a img {
  transition: all 0.3s;
}

#Technology .phArea ul li a p:not(.tl) {
  text-decoration: underline;
}

#Technology .phArea ul li a:hover p {
  opacity: 0.6;
}

#Technology .phArea ul li a:hover img {
  opacity: 0.6;
}

#Heat .Content .info02 div.box01.c-box.c-anim-down.move div.tableArea div.grp div.wrap.wrap02 div.cld {
  width: 23%;
}

#Heat .Content .info02 .c-box .tableArea .wrap.col-2 .cld {
  width: 48%;
}

/* csr
==================================*/
#csr .head_tl {
  background-image: url(../images/head_bg/company.jpg);
}

#csr .Content {
  max-width: 1000px;
  margin: auto;
  padding: 100px 20px 120px;
}


#csr .Content a.btn:hover::after {
  background: url(../images/common/arrow_wh_prev.svg) no-repeat;
}

#csr .Message img {
  width: 100%;
}

#csr .Message p {
  max-width: 800px;
  margin: 30px auto 0;
  padding: 0 50px;
  line-height: 26px;
}

#Company .Overview h3 {
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 43px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

#csr .Overview h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 8px;
  margin: auto;
}

#csr .Overview .philosophy {
  background: url(../images/company/overview_ph01.jpg) no-repeat center;
  background-size: cover;
  padding: 78px 50px 50px;
}

#csr .Overview .philosophy h3 {
  color: #fff;
}

#csr .Overview .philosophy ul li {
  position: relative;
  color: #fff;
  width: 616px;
  margin: auto;
  padding-left: 44px;
  font-size: 22px;
  font-weight: 500;
  line-height: 50px;
}

#Company .Overview .philosophy ul li::before {
  content: "一、";
  position: absolute;
  left: 0;
}

#csr .Overview .philosophy .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 900px;
  margin: 65px auto 0;
}

#csr .Overview .philosophy .wrap>div {
  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-sizing: border-box;
  box-sizing: border-box;
  background: #e8edf2;
  width: calc((100% - 20px) / 2);
  padding: 80px 30px 38px;
  border: 6px solid #fff;
}

#csr .Overview .philosophy .wrap>div span {
  position: absolute;
  top: 26px;
  left: -6px;
  display: inline-block;
  color: #fff;
  background: #004491;
  width: 87px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 28px;
  text-align: center;
}

#csr .Overview .philosophy .wrap>div strong {
  font-size: 30px;
}

#csr .Overview .philosophy .wrap ul li {
  color: #000;
  width: 216px;
  font-size: 18px;
  line-height: 30px;
}

#csr .Overview .info,
#csr .Overview .oversea {
  max-width: 800px;
  margin: auto;
  padding: 98px 50px;
}

#csr .Overview .info dl,
#csr .Overview .oversea dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#csr .Overview .info dl dt,
#csr .Overview .info dl dd,
#csr .Overview .oversea dl dt,
#csr .Overview .oversea dl dd {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  line-height: 24px;
}

#csr .Overview .info dl dt,
#csr .Overview .oversea dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 24%;
  padding: 0 0 0 25px;
  font-weight: 500;
}

#csr .Overview .info dl dd,
#csr .Overview .oversea dl dd {
  width: 75%;
}

#csr .Overview .info dl dd ul li,
#csr .Overview .oversea dl dd ul li {
  margin: 0 0 15px;
}

#csr .Overview .info dl dd ul li:last-child,
#csr .Overview .oversea dl dd ul li:last-child {
  margin: 0;
}

#csr .Overview .info dl dd ul li b,
#csr .Overview .oversea dl dd ul li b {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  font-weight: 500;
}

#csr .Overview .info dl dd ul li b::before,
#csr .Overview .oversea dl dd ul li b::before {
  content: "";
  background: #004491;
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .Overview .info dl dd.mic p,
#csr .Overview .oversea dl dd.mic p {
  position: relative;
  display: inline-block;
  font-size: 14px;
}

#csr .Overview .info dl dd.mic p::after,
#csr .Overview .oversea dl dd.mic p::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -14px;
  background: url(../images/common/icon_outside.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 6px;
}

#csr .Overview .info dl dd.mic img,
#csr .Overview .oversea dl dd.mic img {
  width: 102px;
  height: 30px;
  padding-right: 8px;
}

#csr .Overview .oversea {
  padding: 0 50px;
}

#csr .Overview .oversea .thailand {
  margin: 0 0 50px;
}

#csr .Overview .oversea p.tl {
  background: url(../images/technology/bg_pattern.jpg);
  padding: 15px 25px;
  font-weight: 500;
}

#csr .Overview .oversea p.attr {
  padding: 15px 0 0;
}

#csr .Access h3 {
  clear: both;
  position: relative;
  margin: 0 0 30px;
  padding: 98px 0 43px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

#csr .Access h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 8px;
  margin: auto;
}

#csr .Environment h3 {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 43px;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

#csr .Environment .tit {
  margin-top: 100px;
}

#csr .Environment h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/common/deco_line.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 8px;
  margin: auto;
}

#csr .Environment .philosophy {
  padding: 0px 0 50px;
}

#csr .Environment .philosophy>p {
  margin: auto;
  font-size: 24px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
  margin-bottom: 20px;
}

#csr .tit_women {
  padding-top: 40px;
}

#csr .tit_women p {
  margin: auto;
  font-size: 24px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
  margin-bottom: 20px;
}

#csr .Environment .philosophy .guideline>span {
  position: absolute;
  top: 26px;
  left: -6px;
  display: inline-block;
  color: #fff;
  background: #004491;
  width: 87px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 28px;
  text-align: center;
}

#csr .Environment .philosophy .guideline ul li {
  margin: 0 0 42px;
}

#csr .Environment .philosophy .guideline ul li p.tl {
  position: relative;
  padding: 3px 0 10px 50px;
  font-size: 20px;
  font-weight: 500;
}

#csr .Environment .philosophy .guideline ul li p.tl span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #004491;
  font-family: "Fjalla One", sans-serif;
  font-size: 24px;
}

#csr .Environment .philosophy .guideline ul li p.tl span::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -6px;
  background: #000;
  width: 1px;
  height: 30px;
  -webkit-transform: rotate(33deg);
  transform: rotate(33deg);
}

#csr .Environment .philosophy .guideline ul li p.text {
  padding-left: 49px;
  font-size: 16px;
  line-height: 24px;
}

#csr .Environment .philosophy p.name {
  margin: 25px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: right;
}

#csr .Environment .philosophy p.name span {
  font-size: 14px;
}

#csr .Environment .quality {
  max-width: 900px;
  margin: auto;
  padding: 100px 0 70px;
}

#csr .Environment .quality .wrap {
  padding: 50px 20px 10px;
  border: 1px solid #e5e5e5;
}

#csr .Environment .quality .wrap p.tl {
  margin: 0 0 50px;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
}

#csr .Environment .quality .wrap ul li {
  position: relative;
  width: 504px;
  margin: 0 auto 32px;
  padding: 3px 0 10px 50px;
  font-size: 24px;
  font-weight: 500;
}

#csr .Environment .quality .wrap ul li span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #004491;
  font-family: "Fjalla One", sans-serif;
  font-size: 24px;
}

#csr .Environment .quality .wrap ul li span::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -6px;
  background: #000;
  width: 1px;
  height: 30px;
  -webkit-transform: rotate(33deg);
  transform: rotate(33deg);
}

#csr .Environment .quality p.name {
  margin: 25px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: right;
}

#csr .Environment .quality p.name span {
  font-size: 14px;
}

#csr .Environment .certificate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#csr .Environment .certificate .ph {
  margin: 0 25px;
}

#csr .Environment .certificate .ph p {
  padding: 20px 0 0;
  font-size: 14px;
}

#csr .About dl {
  text-align: center;
  margin: 50px 0 0;
}

#csr .About dl dt {
  color: #004491;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

#csr .About dl dd {
  font-size: 30px;
  line-height: 50px;
  font-weight: bold;
}

#csr .About .table_wrap {
  padding: 30px 50px ;
  border: solid 1px #d6d6d6;
}

#csr .About .table_wrap p {
  margin: auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
}

#csr .About .table_wrap .under_text {
  margin: auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  margin-bottom: 25px;
}

#csr .About b {
  font-size: 24px;
  display: block;
  position: relative;
  max-width: 984px;
  margin: 30px auto 0;
  font-weight: normal;
  padding: 0 0 15px 16px;
}

#csr .About b::before {
  position: absolute;
  top: 10px;
  left: 3px;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .About table {
  width: 100%;
  margin: 0 auto;
}

#csr .About table tr th {
  border-top: 1px solid #e0e0e0;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  line-height: 22px;
  color: #004491;
}

#csr .About table tr .plan {
  width: 60px;
}

#csr .About table tr td span.sotsu {
  display: inline-block;
  width: 110px;
}

#csr .About table tr td {
  padding: 15px 0 15px 30px;
  border-top: 1px solid #e0e0e0;
  line-height: 24px;
}

#csr .About table ul li {
  padding: 0 0 22px;
}

#csr .About table ul li:last-child {
  padding: 0;
}

#csr .About table tr td .blue {
  font-size: 18px;
  line-height: 28px;
  color: #004491;
}

#csr .About table tr td .goal {
  background: #004491;
  color: #fff;
  padding: 3px 6px;
  font-size: 15px;
  letter-spacing: 1px;
}

#csr .About table tr td .all {
  display: block;
  margin-top: 25px;
}

#csr .About table tr td .margin2 {
  display: block;
  padding-left: 4rem;
  text-indent: 0rem;
}

#csr .About table tr td .margin {
  padding-left: 108px;
  color: #000;
  font-size: 15px;
}

#csr .About table tr td .maru {
  position: relative;
}

#csr .About table tr td .maru::before {
  position: absolute;
  top: 7px;
  left: -12px;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .About table tr td .maru2 {
  position: relative;
}

#csr .About table tr td .maru2::before {
  position: absolute;
  top: 7px;
  left: -12px;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .About table tr td .maru3 {
  position: relative;
}

#csr .About table tr td .maru3::before {
  position: absolute;
  top: 7px;
  left: -12px;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .About table tr td .maru4 {
  position: relative;
}

#csr .About table tr td .maru4::before {
  position: absolute;
  top: 7px;
  left: -12px;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .About table tr td .maru5 {
  position: relative;
}

#csr .About table tr td .maru5::before {
  position: absolute;
  top: 7px;
  left: -12px;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .About table tr td .measures {
  padding-left: 1rem;
 }

 #csr .About table tr .measures_td {
  padding: 15px 0 15px 45px;
 }

 /* @media screen and (max-width: 906px){
  #csr .About table tr td .measures {
    display: inline-block;
    padding-left: 6.5rem;
    position: relative;
    top: -24px;
   }
  
 } */


#csr .activity {
  max-width: 833px;
  margin: auto;
}

#csr .activity p {
  margin-bottom: 30px;
  line-height: 26px;
}

#csr .activity img {
  width: 400px;
}

#csr .activity .tit {
  margin: auto;
  font-size: 24px;
  font-weight: 500;
  line-height: 50px;
  text-align: center;
}

#csr .activity .img_flex {
  display: flex;
  justify-content: space-between;
}

#csr .activity .img_flex2 {
  margin-bottom: 60px;
}

#csr .management {
  max-width: 840px;
  margin: auto;
}

#csr .management img {
  width: 249px;
}

#csr .management .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#csr .management .health {
  margin-top: 60px;
}

#csr .management .health .health_text .fuji_text span {
  display: block;
  margin-top: 15px;
}

#csr .management .tit {
  margin: auto;
  font-size: 24px;
  font-weight: 500;
  line-height: 50px;
}

#csr .management p {
  line-height: 26px;
}

#csr .Content a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 293px;
  margin: 80px auto 0;
  border: 1px solid #000;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
}

#csr .Content a.btn:hover {
  color: #fff;
}

#csr .Content a.btn::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 15px;
  background: url(../images/common/arrow_bk_prev.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#csr .Content a.btn:hover::after {
  background: url(../images/common/arrow_wh_prev.svg) no-repeat;
}

#csr .Content a.btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #000;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

#csr .Content a.btn:hover::before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

