@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 15px;
}

.pc {
  display: none !important;
}

a {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
}

a:hover {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:active {
  color: #000;
}

/* main
==================================*/
main {
  display: block;
  padding: 50px 0 0;
}

/* header
==================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #f0f0f0;
}

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: 15px 0 0 15px;
}

header h1 img {
  width: 85px;
}

header .menu {
  position: relative;
  background: #004491;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

header .menu span {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  display: inline-block;
  background: #fff;
  width: 17px;
  height: 1px;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .menu span.line-t.show {
  top: 24px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header .menu span.line-m {
  top: 24px;
}

header .menu span.line-m.show {
  opacity: 0;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}

header .menu span.line-b {
  top: 32px;
}

header .menu span.line-b.show {
  top: 24px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

header nav {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 888;
  background: #004491;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

header nav ul.links {
  display: block;
  width: 100%;
  margin: 94px 0 50px;
}

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;
  display: block;
  color: #fff;
  padding: 15px;
  font-size: 16px;
}

header nav ul.links > li a::after {
  content: "";
  position: absolute;
  top: 20px;
  left: auto;
  right: 15px;
  background: url(../images/common/arrow_wh.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
}

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: 5px;
}

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;
  line-height: 24px;
}

header nav ul.links > li ul.second li a::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 22px;
  background: #fff;
  width: 4px;
  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: 22px;
  right: 12px;
  background: #fff;
  width: 11px;
  height: 1px;
}

header nav ul.links li.mega_nav span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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: 25px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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 {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  width: 87px;
  height: 44px;
  padding: 15px 0 0;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

header nav ul.lang li.active a {
  color: #fff;
  background: #0c52a2;
}

/* footer
==================================*/
footer {
  background: #e9e9e9;
  padding: 0 0 36px;
}

footer .contact_box {
  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: 30px;
  text-align: center;
}

footer .contact_box a.tel {
  color: #fff;
  font-family: "Fjalla One", sans-serif;
  font-size: 18px;
}

footer .contact_box a.tel span {
  font-size: 25px;
}

footer .contact_box p {
  color: #fff;
  margin: 10px 0 15px;
  font-size: 10px;
  font-weight: 500;
}

footer .contact_box a.btn {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  width: 250px;
  margin: 0 auto;
  border: 1px solid #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
}

footer .contact_box a.btn::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 14px;
  background: url(../images/common/arrow_wh.svg) no-repeat;
  background-size: contain;
  width: 5px;
  height: 8px;
}

footer .footer_links {
  padding: 25px 15px 50px;
}

footer .footer_links nav {
  border: 1px solid #d8d8d8;
}

footer .footer_links nav > ul li {
  position: relative;
}

footer .footer_links nav > ul li::after {
  content: "";
  position: absolute;
  top: 18px;
  left: auto;
  right: 15px;
  background: url(../images/common/arrow_bk.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
}

footer .footer_links nav > ul > li {
  border-top: 1px solid #d8d8d8;
}

footer .footer_links nav > ul > li a {
  display: block;
  padding: 15px 17px;
  font-size: 15px;
  font-weight: 500;
}

footer .footer_links nav > ul > li ul.second {
  display: none;
  background: #d9d9d9;
}

footer .footer_links nav > ul > li ul.second li {
  border-top: 1px solid #e9e9e9;
}

footer .footer_links nav > ul > li ul.second li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 22px;
  background: #000;
  width: 4px;
  height: 2px;
}

footer .footer_links nav > ul > li ul.second li a {
  padding-left: 32px;
}

footer .footer_links nav > ul:first-child li {
  border-top: none;
}

footer .footer_links nav > ul li.toggle::after {
  content: none;
}

footer .footer_links nav > ul li.toggle span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  cursor: pointer;
}

footer .footer_links nav > ul li.toggle span::before,
footer .footer_links nav > ul li.toggle span::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 12px;
  background: #000;
  width: 11px;
  height: 1px;
}

footer .footer_links nav > ul li.toggle span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

footer .footer_links nav > ul li.toggle span.show::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0;
}

footer .footer_info {
  padding: 0 15px;
}

footer .footer_info a.logo {
  font-size: 16px;
  font-weight: 500;
}

footer .footer_info a.logo img {
  display: block;
  width: 126px;
  margin: 0 auto 12px;
}

footer .footer_info a.logo span {
  display: block;
  margin: auto;
  text-align: center;
}

footer .footer_info ul.address {
  margin: 30px 0 37px;
}

footer .footer_info ul.address li {
  margin: 0 0 13px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}

footer .footer_info ul.address li span {
  display: block;
}

footer .footer_info a.logo_mic img {
  display: block;
  width: 168px;
  margin: 0 auto 28px;
}

footer .footer_info .wrap p {
  color: #4a4a4b;
  margin: 0 0 13px;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
}

footer small.copy {
  display: block;
  color: #4a4a4b;
  margin: 0 0 35px;
  font-size: 10px;
  text-align: center;
}

#pageTop a {
  display: block;
  color: #fff;
  background: #004491;
  width: 47px;
  height: 47px;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  font-family: "Fjalla One", sans-serif;
  font-size: 11px;
}

#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;
  background-size: contain;
  width: 6px;
  height: 9px;
  -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: 128px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#AllBox .head_tl h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}

#AllBox .head_tl h2 span {
  display: block;
  margin: 8px 0 0;
  font-family: "Fjalla One", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.035em;
}

#Products .head_tl {
  background-image: url(../sp/images/head_bg/products_sp.jpg);
}

#Heat .head_tl {
  background-image: url(../sp/images/head_bg/heat_sp.jpg);
}

#Technology .head_tl {
  background-image: url(../sp/images/head_bg/technology_sp.jpg);
}

#Company .head_tl {
  background-image: url(../sp/images/head_bg/company_sp.jpg);
}

#Recruit .head_tl {
  background-image: url(../sp/images/head_bg/recruit_sp.jpg);
}

#Photo .head_tl {
  background-image: url(../sp/images/head_bg/photo_sp.jpg);
}

#Contact .head_tl {
  background-image: url(../sp/images/head_bg/contact_sp.jpg);
}

#Contact .head_tl.entry {
  background-image: url(../sp/images/head_bg/recruit_sp.jpg);
}

/* navPages
==================================*/
.navPages .wrap {
  padding: 50px 15px 0;
}

.navPages ul li {
  position: relative;
  margin: 0 0 40px;
}

.navPages ul li .ph img {
  width: 100%;
}

.navPages ul li .textBox {
  position: relative;
  padding: 19px 26px 5px;
}

.navPages ul li .textBox::before,
.navPages ul li .textBox::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../images/common/line-dot.png);
  width: 1px;
  height: 100%;
}

.navPages ul li .textBox::after {
  left: 0;
  right: auto;
}

.navPages ul li .textBox p.tl {
  position: relative;
  padding: 0 0 13px 21px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.navPages ul li .textBox p.tl::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background: #004491 url(../images/common/arrow_wh.svg) no-repeat center;
  background-size: 5px 9px;
  width: 16px;
  height: 16px;
}

.navPages ul li .textBox p.text {
  font-size: 15px;
  line-height: 21px;
}

/* 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 main img {
  width: 100%;
}

#Top .heroArea {
  position: relative;
}

#Top .heroArea .text {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 179px;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
}

#Top .heroArea .text svg#main_en_sp {
  width: 172px;
  margin: 0 0 22px;
}

#Top .message {
  padding: 48px 15px;
}

#Top .message .inner {
  max-width: 900px;
  margin: auto;
}

#Top .message h2 {
  position: relative;
  margin: 0 0 22px;
  padding: 0 0 28px;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  line-height: 28px;
  text-align: center;
}

#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: 23px;
  height: 7px;
  margin: auto;
}

#Top .message p {
  font-size: 15px;
  line-height: 23px;
}

#Top .banner {
  padding: 0 15px 49px;
}

#Top .topNav {
  padding: 0 0 50px;
}

#Top .topNav ul li {
  position: relative;
  text-align: center;
}

#Top .topNav ul li a {
  position: relative;
  z-index: 2;
  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;
  color: #fff;
  width: 100%;
  height: 100%;
}

#Top .topNav ul li a p {
  font-size: 23px;
  font-weight: 500;
}

#Top .topNav ul li a p span {
  display: block;
  margin: 0 0 7px;
  font-family: "Fjalla One", sans-serif;
  font-size: 12px;
  font-weight: 400;
}

#Top .topNav ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}

#Top .topNav ul li.nav01::before {
  background-image: url(../sp/images/top/ph01.jpg);
}

#Top .topNav ul li.nav02::before {
  background-image: url(../sp/images/top/ph02.jpg);
}

#Top .topNav ul li.nav03::before {
  background-image: url(../sp/images/top/ph03.jpg);
}

#Top .topNav ul li.nav04::before {
  background-image: url(../sp/images/top/ph04.jpg);
}

#Top .topNav ul li.nav05::before {
  background-image: url(../sp/images/top/ph05.jpg);
  background-position: center top;
}

#Top .topNav ul.upper li {
  height: 120px;
}

#Top .topNav ul.lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 140px;
}

#Top .topNav ul.lower li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#Top .photos {
  padding: 0 15px 50px;
}

#Top .photos p.tl {
  margin: 0 0 25px;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
}

#Top .photos p.tl span {
  display: block;
  color: #004491;
  margin: 0 0 7px;
  font-family: "Fjalla One", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

#Top .photos ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#Top .photos ul li {
  position: relative;
  width: calc((100% - 15px) / 2);
  margin: 0 15px 15px 0;
}

#Top .photos ul li:nth-child(2n) {
  margin-right: 0;
}

#Top .photos ul li:nth-child(n + 5) {
  display: none;
}

#Top .photos ul li .hover_box {
  display: none;
}

#Top .photos a.btn {
  position: relative;
  z-index: 1;
  display: block;
  color: #004491;
  width: 176px;
  margin: 10px auto 0;
  border: 1px solid #004491;
  font-family: "Fjalla One", sans-serif;
  font-size: 13px;
  text-align: center;
  line-height: 40px;
}

#Top .photos a.btn::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 14px;
  background: url(../images/common/arrow_bl.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
}

/* Products
==================================*/
#Products .Content {
  padding: 50px 15px 65px;
}

#Products .Content img {
  width: 100%;
}

#Products .box01 {
  position: relative;
  background-image: url(../sp/images/products/con-rod_ph01.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 0 22px 34px;
}

#Products .box01 h3 {
  color: #fff;
  padding: 212px 0 22px;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
}

#Products .box01 p {
  color: #fff;
  line-height: 23px;
}

#Products .box02 {
  padding: 45px 0 0;
}

#Products .box02 p.tl {
  position: relative;
  margin: 0 0 25px;
  padding: 0 0 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  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 {
  margin: 0 auto 45px;
  line-height: 23px;
}

#Products .box02 ul li {
  margin: 0 0 45px;
}

#Products .box02 ul li:last-child {
  margin-bottom: 0;
}

#Products .box02 ul li p {
  padding: 17px 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: 250px;
  margin: 60px auto 0;
  border: 1px solid #000;
  line-height: 50px;
  text-align: center;
}

#Products a.btn::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 14px;
  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.Fork .box01 {
  background-image: url(../sp/images/products/fork_ph01.jpg);
}

#Products.Fork .box01 h3 {
  padding-bottom: 0;
  margin: 0 -7px;
}

/* Heat
==================================*/
#Heat .Content .intro {
  margin: auto;
  padding: 20px 15px 20px;
}

#Heat .Content .intro .ph {
  float: right;
}

#Heat .Content .intro .ph02 {
  width: 100%;
}

#Heat .Content .intro .ph02 img {
  width: 100%;
  height: auto;
}

#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: 22px;
  text-align: left;
  max-width: 100% !important;
  padding-top: 10px;
  font-size: 14px;
}

#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: 20px 15px 50px;
}

#Heat .Content .info02 .c-box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 20px 15px;
}

#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: 10px 0 20px 32px;
  font-size: 20px;
  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: 16px;
}

#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: 16px;
  width: 30%;
  padding: 10px 0;
  background: #000;
  color: #fff;
  text-align: center;
  margin: 0 auto 0px;
}

#Heat .Content .info02 .c-box .tableArea .wrap {
  margin-bottom: 20px;
}

#Heat .Content .info02 .c-box .tableArea .wrap h3 {
  background: #2a439a;
  width: 100%;
  margin-bottom: 0;
}

#Heat .Content .info02 .c-box .tableArea .wrap .cld {
  width: 100%;
}

#Heat .Content .info02 .c-box .tableArea .wrap .cld dl {
  border: dotted 1px #ccc;
  padding: 10px;
  margin-bottom: 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 {
  line-height: 24px;
}

#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 {
  clear: both;
  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 {
  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: 30px;
}

#Heat .Content .info02 .c-box .tableArea div.detail dl dt {
  margin: 0 0 25px;
  font-weight: bold;
  font-size: 18px;
}

#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: 22px;
  font-size: 14px;
}

#Heat .Content #heat01,
#Heat .Content #heat02,
#Heat .Content #heat03 {
  position: absolute;
  padding-top: 60px;
  margin-top: -60px;
}

#Heat .Content a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 250px;
  margin: 40px auto 0;
  border: 1px solid #000;
  line-height: 50px;
  text-align: center;
}

#Heat .Content a.btn::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 14px;
  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
==================================*/
#Technology img {
  width: 100%;
}

#Technology .intro {
  padding: 50px 15px 45px;
}

#Technology .intro .ph {
  padding: 0 32px 25px;
}

#Technology .intro h3 {
  margin: 0 -5px 16px;
  font-size: 21px;
  font-weight: normal;
  line-height: 31px;
  text-align: center;
}

#Technology .intro p {
  line-height: 21px;
}

#Technology .phArea {
  background: #f9f9f9;
  padding: 45px 37px 19px;
}

#Technology .phArea ul li {
  margin: 0 0 36px;
}

#Technology .phArea ul li p {
  margin: 0 -21px;
  padding: 19px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  text-align: center;
}

#Technology .info {
  background: #f9f9f9;
  padding: 50px 15px;
}

#Technology .info .c-box {
  background: #fff;
  padding: 30px 25px 17px;
}

#Technology .info .c-box .ph {
  padding: 0 8px 20px;
}

#Technology .info .c-box .tableArea p {
  position: relative;
  padding: 4px 0 17px 31px;
  font-size: 18px;
  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: 15px;
}

#Technology .info .c-box .tableArea p span::before {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -10px;
  background: #000;
  width: 1px;
  height: 23px;
  -webkit-transform: rotate(33deg);
  transform: rotate(33deg);
}

#Technology .info .c-box .tableArea p b {
  display: block;
  font-size: 16px;
  padding: 3px 0 0;
  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: 9px 0;
  border-top: 1px solid #d6d6d6;
  line-height: 21px;
}

#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: 72px;
  font-weight: 500;
}

#Technology .info .c-box .tableArea dl dd {
  width: calc(100% - 72px);
}

#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 .info .box01 {
  margin-bottom: 20px;
}

#Technology .info .box02 {
  margin-bottom: 20px;
}

#Technology .info .box03 {
  margin-bottom: 20px;
}

#Technology .info .box04 {
  margin-bottom: 20px;
}

#Technology .info .box05 {
  margin-bottom: 20px;
}

#Technology a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 250px;
  margin: 40px auto;
  border: 1px solid #000;
  line-height: 50px;
  text-align: center;
}

#Technology a.btn::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 10px;
  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 .Machine .intro p a {
  display: block;
  width: 305px;
  margin: 20px auto 0;
}

#Technology .Furnace .main_equipment {
  padding: 50px 15px 60px;
}

#Technology .Furnace .main_equipment h3 {
  position: relative;
  margin: 0 0 25px;
  padding: 0 0 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  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 .heat {
  margin: 0 0 25px;
}

#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: 12px 0 12px 5px;
  border-bottom: 1px solid #e0e0e0;
}

#Technology .Furnace .main_equipment .table_wrap ul li span {
  display: inline-block;
  width: calc(100% - 38px);
}

#Technology .Furnace a.btn {
  margin: 50px auto 0;
}

/* Company
==================================*/
#Company .Content {
  padding: 50px 15px 65px;
}

#Company .Content a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 250px;
  margin: 60px auto 0;
  border: 1px solid #000;
  line-height: 50px;
  text-align: center;
}

#Company .Content a.btn::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 14px;
  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 .Message .Content {
  padding: 50px 0 65px;
}

#Company .Message .Content img {
  width: 100%;
}

#Company .Message .Content p {
  margin: 40px auto 0;
  padding: 0 15px;
  line-height: 21px;
}

#Company .Overview h3 {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 25px;
  font-size: 20px;
  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: 39px 25px 25px;
}

#Company .Overview .philosophy h3 {
  color: #fff;
}

#Company .Overview .philosophy ul li {
  position: relative;
  color: #fff;
  margin: 0 -6px 12px 0;
  padding-left: 32px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

#Company .Overview .philosophy ul li::before {
  content: "一、";
  position: absolute;
  left: 0;
}

#Company .Overview .philosophy .wrap {
  margin: 25px 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;
  min-height: 93px;
  margin: 0 0 10px;
  padding: 40px 0 23px;
  border: 3px solid #fff;
}

#Company .Overview .philosophy .wrap > div span {
  position: absolute;
  top: 10px;
  left: -3px;
  display: inline-block;
  color: #fff;
  background: #004491;
  width: 67px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 22px;
  text-align: center;
}

#Company .Overview .philosophy .wrap > div strong {
  font-size: 18px;
}

#Company .Overview .philosophy .wrap .precepts {
  margin-bottom: 0;
}

#Company .Overview .philosophy .wrap ul li {
  color: #000;
  width: 192px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 27px;
}

#Company .Overview .info,
#Company .Overview .oversea {
  padding: 50px 0;
}

#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: 33%;
  padding: 0 0 0 10px;
  font-weight: 500;
}

#Company .Overview .info dl dd,
#Company .Overview .oversea dl dd {
  width: 66%;
}

#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 span,
#Company .Overview .oversea dl dd ul li span {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  font-weight: 500;
}

#Company .Overview .info dl dd ul li span::before,
#Company .Overview .oversea dl dd ul li span::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: 12px;
  line-height: 12px;
}

#Company .Overview .info dl dd.mic p::after,
#Company .Overview .oversea dl dd.mic p::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -10px;
  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: 85px;
  height: 25px;
  padding-right: 7px;
}

#Company .Overview .oversea {
  padding: 0;
}

#Company .Overview .oversea .thailand {
  margin: 0 0 20px;
}

#Company .Overview .oversea p.tl {
  background: url(../images/technology/bg_pattern.jpg);
  padding: 15px 10px;
  font-weight: 500;
}

#Company .Overview .oversea p.attr {
  padding: 15px 0 0;
}

#Company .Access .Content {
  padding-top: 0;
}

#Company .Access h3 {
  position: relative;
  margin: 50px 0 20px;
  padding: 0 0 25px;
  font-size: 20px;
  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: 260px;
}

#Company .Access .map iframe {
  width: 100%;
  height: 100%;
}

#Company .Access .mapimage,
#Company .Access .mapimage-2 {
  text-align: center;
  box-sizing: border-box;
}
#Company .Access .mapimage {
  margin-bottom: 24px;
  padding-left: 20px;
  padding-right: 20px;
}

#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 .text_wrap p {
  line-height: 23px;
}

#Company .Access .text_wrap p.name {
  margin: 0 0 5px;
  padding: 15px 0 2px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  font-weight: 500;
}

#Company .History table {
  width: 100%;
}

#Company .History table tr {
  border-bottom: 1px solid #e0e0e0;
}

#Company .History table th {
  display: block;
  padding: 10px 0 0;
  line-height: 24px;
  font-weight: 500;
  text-align: left;
  color: #2a439a;
}

#Company .History table th.tit {
  padding: 10px 0 0 0;
  padding-right: 5px;
}

#Company .History table th.month {
  width: 35px;
  text-align: right;
}

#Company .History table td.content {
  display: block;
  padding: 0px 0 10px 0px;
  line-height: 24px;
}

#Company .Environment h3 {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 25px;
  font-size: 20px;
  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: 39px 25px 25px;
}

#Company .Environment .philosophy h3 {
  color: #fff;
}

#Company .Environment .philosophy > p {
  position: relative;
  color: #fff;
  margin: 0 -15px 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  text-align: center;
}

#Company .Environment .philosophy .guideline {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #e8edf2;
  min-height: 93px;
  margin: 0 0 10px;
  padding: 40px 10px 23px;
  border: 3px solid #fff;
}

#Company .Environment .philosophy .guideline > span {
  position: absolute;
  top: 10px;
  left: -3px;
  display: inline-block;
  color: #fff;
  background: #004491;
  width: 67px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 22px;
  text-align: center;
}

#Company .Environment .philosophy .guideline ul li {
  margin: 0 0 22px;
}

#Company .Environment .philosophy .guideline ul li p.tl {
  position: relative;
  padding: 3px 0 5px 26px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

#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: 15px;
}

#Company .Environment .philosophy .guideline ul li p.tl span::before {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -1px;
  background: #000;
  width: 1px;
  height: 23px;
  -webkit-transform: rotate(33deg);
  transform: rotate(33deg);
}

#Company .Environment .philosophy .guideline ul li p.text {
  padding-left: 26px;
  font-size: 16px;
  line-height: 24px;
}

#Company .Environment .philosophy p.name {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: right;
}

#Company .Environment .philosophy p.name span {
  font-size: 12px;
}

#Company .Environment .quality {
  padding: 50px 0 70px;
}

#Company .Environment .quality .wrap {
  padding: 25px 15px 10px;
  border: 1px solid #e5e5e5;
}

#Company .Environment .quality .wrap p.tl {
  margin: 0 0 25px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}

#Company .Environment .quality .wrap ul li {
  position: relative;
  margin: 0 0 10px;
  padding: 3px 0 5px 26px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

#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: 15px;
}

#Company .Environment .quality .wrap ul li span::before {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -1px;
  background: #000;
  width: 1px;
  height: 23px;
  -webkit-transform: rotate(33deg);
  transform: rotate(33deg);
}

#Company .Environment .quality p.name {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: right;
}

#Company .Environment .quality p.name span {
  font-size: 12px;
}

#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 img {
  width: 100%;
}

#Company .Environment .certificate .ph {
  margin: 0 10px;
}

#Company .Environment .certificate .ph p {
  padding: 8px 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 img {
  width: 100%;
}

#Company .Anniversary .ad img {
  width: auto;
  height: 30px;
}

#Company .Anniversary .Content {
  padding: 50px 15px;
}

#Company .Anniversary .Content .inner {
  position: relative;
}

#Company .Anniversary .Content .line-dot {
  position: absolute;
  top: 12px;
  left: 5px;
  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 ol {
  padding-left: 10px;
}

#Company .Anniversary .Content ol li {
  position: relative;
  padding: 0 0 30px;
}

#Company .Anniversary .Content ol li .ad {
  position: relative;
  z-index: 2;
  margin: 0 0 16px 59px;
}

#Company .Anniversary .Content ol li .ad::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -68px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../sp/images/anniversary/line-point_right.svg) no-repeat;
  background-size: contain;
  width: 54px;
  height: 12px;
}

#Company .Anniversary .Content ol li .info {
  position: relative;
  z-index: 2;
  margin: 0 0 0 59px;
}

#Company .Anniversary .Content ol li .info p {
  margin: 0 0 10px;
  line-height: 21px;
}

#Company .Anniversary .Content ol li .sub {
  margin: 20px 0 0 0px;
  padding: 20px 0 0;
  border-top: solid 1px #273145;
}

#Company .Anniversary .Content ol li .anim-in_r.sub {
  margin: 20px 0 0 59px;
}

#Company .Anniversary .Content ol li .bg {
  position: absolute;
  top: 0;
  right: -15px;
}

#Company .Anniversary .Content ol .box01 .bg {
  top: -35px;
}

#Company .Anniversary .Content ol .box06 .bg {
  top: -55px;
}

#Company .Anniversary .Content ol .box07 .bg {
  top: -45px;
}

#Company .Anniversary .Content ol .box08 .bg {
  top: -28px;
}

#Company .Anniversary .Content ol .box10 .bg {
  top: -52px;
}

#Company .Anniversary .Content ol .box11 .ph img {
  width: 179px;
}

#Company .Anniversary .Content ol .box12 .bg {
  top: -48px;
}

#Company .Anniversary .Content ol .box14 .bg {
  top: -21px;
}

#Company .Anniversary .Content ol .box15 .info p {
  margin: 0;
}

#Company .Anniversary .Content ol .box16 .bg {
  top: -61px;
}

#Company .Anniversary .Content ol .box17 .bg {
  top: -57px;
}

#Company .Anniversary .Content ol .box18 {
  padding: 0 0 20px;
}

#Company .Anniversary .Content ol .last {
  width: 100%;
  position: relative;
  z-index: 5;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(26%, #001e40),
    to(rgba(0, 30, 64, 0))
  );
  background: linear-gradient(0deg, #001e40 26%, rgba(0, 30, 64, 0) 100%);
  margin: 0px -2%;
  padding: 0;
  text-align: center;
}

#Company .Anniversary .Content ol .last p {
  margin-bottom: 10px;
  margin-left: 20px;
  line-height: 21px;
  text-align: left !important;
}

#Company .Anniversary .Content ol .last img {
  width: 100%;
}

#Company .Anniversary .back_btn {
  padding: 0 0 60px;
}

#Company .Anniversary .back_btn a {
  position: relative;
  z-index: 1;
  display: block;
  width: 250px;
  margin: auto;
  border: 1px solid #fff;
  line-height: 50px;
  text-align: center;
}

#Company .Anniversary .back_btn a::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 14px;
  background: url(../images/common/arrow_wh_prev.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.anim-in_l-load,
.anim-in_l-load02,
.anim-in_r,
.anim-in_r02,
.anim-in_l,
.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 img {
  width: 100%;
}

#Recruit .About dl {
  text-align: center;
  margin: 20px 0 0;
}

#Recruit .About dl dt {
  color: #004491;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

#Recruit .About dl dd {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
}

#Recruit .About .table_wrap {
  padding: 50px 15px 60px;
}

#Recruit .About b {
  display: block;
  position: relative;
  font-weight: normal;
  padding: 0 0 12px 16px;
  font-size: 18px;
}

#Recruit .About b::before {
  position: absolute;
  top: 5px;
  left: 3px;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#Recruit .About table {
  width: 100%;
  margin: 0 0 25px;
}

#Recruit .About table tr th {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #dcdcdc;
}

#Recruit .About table tr th {
  display: block;
  width: 100%;
  padding: 10px 0px 5px;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}

#Recruit .About table tr td span.sotsu {
  display: inline-block;
  width: 110px;
}

#Recruit .About table tr td {
  display: block;
  width: 100%;
  padding: 5px 0 10px;
  line-height: 20px;
}

#Recruit .About table tr td a {
  text-decoration: underline;
}

#Recruit .About table tr:last-child td {
  border-bottom: 1px solid #e8e8e8;
}

#Recruit .About table ul li {
  padding: 0 0 22px;
}

#Recruit .About table ul li:last-child {
  padding: 0;
}

#Recruit .Product p {
  padding: 100px 20px 0;
  font-size: 15px;
  line-height: 30px;
  text-align: left;
}

#Recruit .Interview .wrap {
  padding: 50px 15px 21px;
}

#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 li {
  width: calc((100% - 18px) / 2);
  margin: 0 18px 39px 0;
}

#Recruit .Interview ul li:nth-child(2n) {
  margin-right: 0;
}

#Recruit .Interview ul li p {
  padding: 12px 0 0;
  font-size: 14px;
  text-align: center;
}

#Recruit .Interview ul li p span {
  display: block;
  padding: 8px 0 0;
  font-size: 18px;
  font-weight: 500;
}

#Recruit a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 250px;
  margin: 60px auto 0;
  border: 1px solid #000;
  line-height: 50px;
  text-align: center;
}

#Recruit a.btn::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 14px;
  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 .Interview a.btn {
  margin: 20px auto 40px;
}

#Recruit .Product .wrap {
  max-width: 1000px;
  margin: auto;
  padding: 20px 20px 64px;
}

#Recruit .Product p.tl {
  position: relative;
  margin: 0 0 25px;
  padding: 0 0 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  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 p {
  padding: 0;
}

#Recruit .Product .box01 {
  position: relative;
}

#Recruit .Product .box01 > img {
  width: 100%;
}

#Recruit .Product .box01 .on_image {
  position: absolute;
  top: 24%;
  left: 10%;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 124px;
  max-height: 280px;
}

#Recruit .Product .box01 .on_image img {
  transform: rotate(146deg);
  max-width: 50px;
}

@media (max-width: 768px) {
  @-moz-document url-prefix() {
    #Recruit .Product .box01 .on_image {
      position: absolute;
      top: 5%;
      left: 0%;
      right: 0;
      bottom: 0;
      margin: auto;
      max-width: 124px;
      max-height: 280px;
    }
    #Recruit .Product .box01 .on_image img {
      max-width: 80px;
    }
  }
}

@media (max-width: 414px) {
  @-moz-document url-prefix() {
    #Recruit .Product .box01 .on_image {
      position: absolute;
      top: 18%;
      left: 11%;
      right: 0;
      bottom: 0;
      margin: auto;
      max-width: 124px;
      max-height: 280px;
    }
    #Recruit .Product .box01 .on_image img {
      max-width: 50px;
    }
  }
}

@media (max-width: 375px) {
  @-moz-document url-prefix() {
    #Recruit .Product .box01 .on_image {
      position: absolute;
      top: 19%;
      left: 16%;
      right: 0;
      bottom: 0;
      margin: auto;
      max-width: 124px;
      max-height: 280px;
    }
    #Recruit .Product .box01 .on_image img {
      max-width: 45px;
    }
  }
}

@media (max-width: 360px) {
  @-moz-document url-prefix() {
    #Recruit .Product .box01 .on_image {
      position: absolute;
      top: 20%;
      left: 18%;
      right: 0;
      bottom: 0;
      margin: auto;
      max-width: 124px;
      max-height: 280px;
    }
    #Recruit .Product .box01 .on_image img {
      max-width: 42px;
    }
  }
}

@media (max-width: 320px) {
  @-moz-document url-prefix() {
    #Recruit .Product .box01 .on_image {
      position: absolute;
      top: 14%;
      left: 21%;
      right: 0;
      bottom: 0;
      margin: auto;
      max-width: 124px;
      max-height: 280px;
    }
  }
}

#Recruit .Product .colmn_wrap {
  margin-bottom: 45px;
}

#Recruit .Product video {
  width: 100%;
  margin-bottom: 45px;
}

.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;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: repeating-linear-gradient(
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8) 2px,
    rgba(0, 0, 0, 0.9) 0,
    rgba(0, 0, 0, 0.9) 3px
  );
  padding: 30px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal .wrap {
  position: absolute;
  top: 116px;
  left: 17px;
  right: 17px;
  margin: 0 0 100px;
  padding: 25px;
  background: #fff;
}

.modal .wrap button {
  display: block;
  position: absolute;
  top: -48px;
  right: 0;
  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);
}

.modal .ph {
  text-align: center;
}

.modal .ph img {
  width: 100%;
  max-width: 310px;
}

.modal .textBox p.name {
  position: relative;
  margin: 25px 0 20px;
  padding: 0 0 30px;
  font-size: 14px;
  text-align: center;
}

.modal .textBox p.name span {
  display: block;
  padding: 10px 0 0;
  font-size: 20px;
  font-weight: 500;
}

.modal .textBox p.name::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;
}

.modal .textBox p.text {
  line-height: 21px;
}

/* Photo
==================================*/
.photos {
  padding: 42px 30px 50px;
}

.photos img {
  width: 100%;
}

.photos ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.photos ul li {
  position: relative;
  width: calc((100% - 15px) / 2);
  margin: 0 15px 15px 0;
}

.photos ul li:nth-child(2n) {
  margin-right: 0;
}

.photos ul li:nth-child(n + 17) {
  display: none;
}

.photos ul li .hover_box {
  display: none;
}

.photos .pager .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px 0 0;
}

.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;
}

.photos .pager .wp-pagenavi a:hover {
  color: #fff;
  background: #004491;
}

.photos .pager .wp-pagenavi a.nextpostslink,
.photos .pager .wp-pagenavi a.previouspostslink {
  line-height: 24px;
}

.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 {
  padding: 45px 15px 75px;
}

#Contact .form_wrap > p {
  line-height: 22px;
  margin: 0 0 20px;
}

#Contact table {
  width: 100%;
  margin: 0 0 26px;
}

#Contact table tr {
  background: #f3f3f3;
  border-bottom: 10px solid #fff;
}

#Contact table tr th,
#Contact table tr td {
  display: block;
}

#Contact table tr th {
  padding: 15px 22px 7px;
  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: 33px;
  margin: 0 0 0 10px;
  font-size: 11px;
  line-height: 17px;
  text-align: center;
  vertical-align: top;
}

#Contact table tr th.appeal {
  line-height: 21px;
}

#Contact table tr th.appeal span {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

#Contact table tr td {
  padding: 0 22px 16px;
}

#Contact input,
#Contact textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  background: #fff;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
}

#Contact input {
  height: 35px;
}

#Contact input.text02 {
  width: calc(100% - 145px);
  max-width: 160px;
  margin: 0 0 10px;
}

#Contact input.text03 {
  width: 100px;
  margin: 0 7px 0 0;
}

#Contact input[type="button"] {
  color: #fff;
  background: #000;
  width: 115px;
  margin: 0 0 0 3px;
  padding: 0 9px;
}

#Contact input[type="button"]:hover {
  opacity: 0.8;
}

#Contact textarea {
  width: 100%;
  height: 207px;
  padding: 7px 12px;
  resize: vertical;
}

#Contact .submit_area {
  margin: 40px 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: 259px;
  height: 55px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

#Contact .privacy p {
  color: #004491;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 500;
}

#Contact .privacy dl dt {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 500;
}

#Contact .privacy dl dd {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 20px;
}

#Contact .privacy dl ul {
  padding: 4px 0 0 9px;
}

#Contact .privacy dl ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
}

#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 {
  line-height: 23px;
}

#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 {
  padding: 20px 0 0;
}

#Contact .form02 ul.koumoku li {
  float: none;
  margin: 0 0 15px;
}

#Contact .form02 ul.koumoku li:last-child {
  margin: 0;
}

#Contact .send_comp {
  padding: 45px 15px 75px;
}

#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: 259px;
  height: 55px;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 53px;
  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;
}

#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 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

#Technology .phArea ul li a p:not(.tl) {
  text-decoration: underline;
}


/* csr
==================================*/
#csr .head_tl {
  background-image: url(../sp/images/head_bg/company_sp.jpg);
}



#csr .Content {
  margin: auto;
  padding: 30px 20px 45px;
}

#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 25px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

#csr .Environment .tit {
  margin-top: 40px;
}

#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: 18px;
  font-weight: 500;
  /* line-height: 50px; */
  text-align: center;
  margin-bottom: 20px;
}

#csr .tit_women {
  padding-top: 35px;
}

#csr .tit_women p {
  margin: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 29px;
  text-align: center;
  margin-bottom: 15px;
}

#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 {
  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 26px 20px;
  border: solid 1px #d6d6d6;
}

#csr .About .table_wrap .tit {
  margin: auto;
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  text-align: center;
  margin-bottom: 20px;
}

#csr .About .table_wrap .under_text {
  margin: auto;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 15px;
}

#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 {
  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;
  width: 30px;
}

#csr .About table tr td span.sotsu {
  display: inline-block;
  width: 110px;
}

#csr .About table tr td {
  padding: 10px 0 10px 30px;
  border-top: 1px solid #e0e0e0;
  line-height: 21px;
}

#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: 17px;
  line-height: 26px;
  color: #004491;

}

#csr .About table tr td .goal {
  background: #004491;
  color: #fff;
  padding: 2px 6px;
  font-size: 15px;
}

#csr .About table tr td .all {
  display: block;
  margin-top: 15px;
}

/* #csr .About table tr td .margin2 {
  padding-left: 65px;
} */

#csr .About table tr td .margin {
  color: #000;
  font-size: 15px;
}

#csr .About table tr td .maru {
  position: relative;
  padding-left: 1rem;
 }

#csr .About table tr td .maru::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .About table tr td .maru2 {
  position: relative;
  padding-left: 1rem;
 }

#csr .About table tr td .maru2::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .About table tr td .maru3 {
  position: relative;
 padding-left: 1rem;
}

#csr .About table tr td .maru3::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .About table tr td .maru4 {
  position: relative;
  padding-left: 1rem;
 }

#csr .About table tr td .maru4::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .About table tr td .maru5 {
  position: relative;
  padding-left: 1rem;
 }

#csr .About table tr td .maru5::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  background: #004491;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#csr .About table tr td .measures {
  display: block;
 }


#csr .activity {
  margin: auto;
}

#csr .activity p {
  margin-bottom: 30px;
  line-height: 21px;
}

#csr .activity img {
  width: 100%;
}

#csr .activity .clean {
 margin-bottom: 15px;
}

#csr .activity .tit {
  margin: auto;
  font-size: 18px;
  font-weight: 500;
  /* line-height: 50px; */
  text-align: center;
  margin-bottom: 30px;
}


#csr .activity .img_flex2 {
  margin-bottom: 45px;
}

#csr .management {
  margin: auto;
}

#csr .management .fuji_text {
  display: flex;
  justify-content: center;
}

#csr .management .fuji_img {
  text-align: center;
}

#csr .management img {
  width: 249px;
}

#csr .management .health {
  margin-top: 60px;
}

#csr .management .health .logo {
  text-align: center;
  margin-bottom: 10px;
}

#csr .management .tit {
  margin: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}

#csr .management p {
  line-height: 21px;
  margin: 30px 0;
  
}

#csr .Content a.btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 250px;
  margin: 60px auto 0;
  border: 1px solid #000;
  line-height: 50px;
  text-align: center;
}

#csr .Content a.btn::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 14px;
  background: url(../images/common/arrow_bk_prev.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 9px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
