@charset "UTF-8";
/*============================================================
MAIN VISUAL
*/
#main_visual {
  margin-top: 100px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  #main_visual {
    margin-top: 60px;
  }
}

#main_visual .heading_page {
  padding-left: 30px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  #main_visual .heading_page {
    padding-left: 10px;
  }
}

#main_visual .heading_page span {
  display: block;
}

@media only screen and (max-width: 768px) {
  #main_visual .heading_page span {
    line-height: 1.2;
  }
}

#main_visual .heading_page span.en {
  color: #13c6bb;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  #main_visual .heading_page span.en {
    font-size: 18px;
    margin-bottom: 4px;
  }
}

#main_visual .heading_page span.ja {
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', YuMincho, serif;
  font-weight: 400;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 768px) {
  #main_visual .heading_page span.ja {
    font-size: 30px;
  }
}

#main_visual .pic {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 1250px;
  height: 500px;
  margin: -20px 0 0 80px;
}

@media only screen and (max-width: 768px) {
  #main_visual .pic {
    width: calc(100% + 20px);
    height: 0;
    margin: 14px 0 0 0;
    padding-bottom: 45%;
  }
}

#main_visual .title_en {
  color: #b2f5f1;
  font-size: 120px;
  font-weight: 600;
  line-height: 0.73;
  text-align: right;
  margin-top: -40px;
}

@media only screen and (max-width: 768px) {
  #main_visual .title_en {
    font-size: 32px;
    margin-top: -12px;
  }
}

#main_visual::before {
  content: "";
  background: #f7f8f4;
  width: 50%;
  height: 500px;
  display: block;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  #main_visual::before {
    width: 90%;
    height: 80%;
    top: -30px;
  }
}

#main_visual .pic {
  background-image: url(../images/works/pic_mv_works01.jpg);
}

/*============================================================
LEAD
*/
#lead {
  padding: 60px 0 40px;
}

@media only screen and (max-width: 768px) {
  #lead {
    padding: 30px 0;
  }
}

#lead .h_sec {
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', YuMincho, serif;
  font-weight: 400;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 70px;
}

@media only screen and (max-width: 768px) {
  #lead .h_sec {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

#lead .page_link {
  margin-bottom: 80px;
}

@media only screen and (max-width: 768px) {
  #lead .page_link {
    margin-bottom: 40px;
  }
}

#lead .page_link ul {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  #lead .page_link ul {
    justify-content: space-between;
  }
}

#lead .page_link ul li {
  flex: 0 0 280px;
}

@media only screen and (max-width: 768px) {
  #lead .page_link ul li {
    flex: 0 0 32.5%;
  }
}

#lead .page_link ul li a {
  color: #fff;
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', YuMincho, serif;
  font-weight: 400;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.06em;
  text-indent: 0.06em;
  background: #0c9fbf;
  padding: 20px 10px 16px;
  display: block;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

@media only screen and (max-width: 768px) {
  #lead .page_link ul li a {
    font-size: 16px;
    padding: 15px 4px 12px;
  }
}

#lead .page_link ul li a::after {
  content: "\e90b";
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  display: block;
  margin: 10px auto 0;
}

@media only screen and (max-width: 768px) {
  #lead .page_link ul li a::after {
    font-size: 12px;
    margin: 8px auto 0;
  }
}

#lead .page_link ul li a:hover {
  background: #0a7f99;
}

#lead .page_link ul li:not(:last-child) {
  margin-right: 40px;
}

@media only screen and (max-width: 768px) {
  #lead .page_link ul li:not(:last-child) {
    margin-right: 0;
  }
}

#lead .types .caption {
  margin-bottom: 16px;
  display: flex;
}

@media only screen and (max-width: 768px) {
  #lead .types .caption {
    display: block;
    position: relative;
  }
}

#lead .types .caption dl {
  display: flex;
}

#lead .types .caption dl dt::after {
  content: "";
  width: 16px;
  height: 1px;
  background: #000;
  display: inline-block;
  position: relative;
  top: -6px;
  margin: 0 6px;
}

@media only screen and (max-width: 768px) {
  #lead .types .caption dl dt::after {
    width: 10px;
    top: -5px;
    margin: 0 4px;
  }
}

#lead .types .caption dl:not(:last-child) {
  margin-right: 30px;
}

@media only screen and (max-width: 768px) {
  #lead .types .caption dl:not(:last-child) {
    margin: 0 0 10px 0;
  }
}

#lead .types .caption .icon {
  color: #0c9fbf;
  font-size: 24px;
  position: absolute;
  bottom: -3px;
  right: 0;
}

#lead .types .note {
  font-size: 14px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  #lead .types .note {
    font-size: 13px;
  }
}

#lead .types .types_tbl {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  #lead .types .types_tbl {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

#lead .types .types_tbl table {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  #lead .types .types_tbl table {
    width: 200%;
    max-width: inherit;
  }
}

#lead .types .types_tbl table th,
#lead .types .types_tbl table td {
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  border: 2px solid #fff;
  padding: 12px 8px;
}

@media only screen and (max-width: 768px) {
  #lead .types .types_tbl table th,
#lead .types .types_tbl table td {
    line-height: 1.3;
    padding: 6px 4px;
  }
}

#lead .types .types_tbl table th a,
#lead .types .types_tbl table td a {
  text-decoration: underline;
  display: block;
}

#lead .types .types_tbl table th a:hover,
#lead .types .types_tbl table td a:hover {
  text-decoration: none;
}

#lead .types .types_tbl table th {
  font-size: 15px;
}

@media only screen and (max-width: 768px) {
  #lead .types .types_tbl table th {
    font-size: 13px;
  }
}

#lead .types .types_tbl table td {
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  #lead .types .types_tbl table td {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  #lead .types .types_tbl table .vertical_sp {
    text-align: center;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    display: inline-block;
    white-space: nowrap;
  }
}

#lead .types .types_tbl table .bg_gray01 {
  background: #e6e6e6;
}

#lead .types .types_tbl table .bg_gray02 {
  background: #e6e6e6;
}

#lead .types .types_tbl table .bg_gray03 {
  background: #d1d1d1;
}

#lead .types .types_tbl table .th_type {
  color: #fff;
  background: #888;
}

#lead .types .types_tbl table .th_manufucturing01 {
  color: #fff;
  background: #eb9d37;
}

@media only screen and (max-width: 768px) {
  #lead .types .types_tbl table .th_manufucturing01 {
    width: 40px;
  }
}

#lead .types .types_tbl table .bg_manufucturing01 {
  color: #d07f15;
  background: #f8ddb9;
}

#lead .types .types_tbl table .bg_manufucturing02 {
  color: #d07f15;
  background: #fbedd9;
}

#lead .types .types_tbl table .th_sales01 {
  color: #fff;
  background: #1381ba;
}

@media only screen and (max-width: 768px) {
  #lead .types .types_tbl table .th_sales01 {
    width: 40px;
  }
}

#lead .types .types_tbl table .bg_sales01 {
  color: #0d5a82;
  background: #9ad6f5;
}

#lead .types .types_tbl table .bg_sales02 {
  color: #0d5a82;
  background: #c8e9f9;
}

#lead .types .types_tbl table .th_management01 {
  color: #fff;
  background: #13c6bb;
}

@media only screen and (max-width: 768px) {
  #lead .types .types_tbl table .th_management01 {
    width: 40px;
  }
}

#lead .types .types_tbl table .bg_management01 {
  color: #0e8e86;
  background: #89f4ed;
}

#lead .types .types_tbl table .bg_management02 {
  color: #0e8e86;
  background: #c5f9f6;
}

/*============================================================
DEPARTMENT
*/
.department {
  padding: 60px 0;
  margin: 100px 0;
}

@media only screen and (max-width: 768px) {
  .department {
    padding: 30px 0;
    margin: 30px 0;
  }
}

.department .h_sec {
  text-align: center;
  margin-bottom: 90px;
}

@media only screen and (max-width: 768px) {
  .department .h_sec {
    margin-bottom: 40px;
  }
}

.department .h_sec span {
  display: block;
}

.department .h_sec span.ja {
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', YuMincho, serif;
  font-weight: 400;
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-indent: 0.03em;
  margin-bottom: 16px;
}

@media only screen and (max-width: 768px) {
  .department .h_sec span.ja {
    font-size: 32px;
    margin: 10px;
  }
}

.department .h_sec span.en {
  color: #13c6bb;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

@media only screen and (max-width: 768px) {
  .department .h_sec span.en {
    font-size: 12px;
  }
}

.department .departments .departments_item {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item {
    display: block;
  }
}

.department .departments .departments_item .pic {
  flex: 0 0 665px;
  height: 580px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item .pic {
    height: 0;
    padding-bottom: 65%;
  }
}

.department .departments .departments_item .holder {
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item .holder {
    margin: -40px -5px 0;
    padding: 25px 20px !important;
  }
}

.department .departments .departments_item .holder .title {
  font-family: 'Noto Serif JP', '游明朝体', 'Yu Mincho', YuMincho, serif;
  font-weight: 400;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item .holder .title {
    font-size: 26px;
    margin-bottom: 15px;
  }
}

.department .departments .departments_item .holder .title::after {
  content: "";
  background: #13c6bb;
  width: 20px;
  height: 2px;
  display: block;
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item .holder .title::after {
    width: 15px;
    margin-top: 12px;
  }
}

.department .departments .departments_item .holder p {
  font-size: 15px;
  line-height: 2;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item .holder p {
    font-size: 14px;
    line-height: 2;
  }
}

.department .departments .departments_item .holder .links {
  margin-top: 15px;
  display: flex;
  background: #f7f8f4;
  padding: 26px;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item .holder .links {
    padding: 8px 5px;
    display: block;
  }
}

.department .departments .departments_item .holder .links li a {
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item .holder .links li a {
    display: block;
    padding: 10px;
  }
}

.department .departments .departments_item .holder .links li a::before {
  content: "\e900";
  color: #0c9fbf;
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: -1px;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item .holder .links li a::before {
    margin-right: 5px;
  }
}

.department .departments .departments_item .holder .links li a:hover {
  color: #0c9fbf;
}

.department .departments .departments_item .holder .links li a.disable {
  color: #aaa;
}

.department .departments .departments_item .holder .links li:not(:last-child) {
  margin-right: 30px;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item .holder .links li:not(:last-child) {
    margin-right: 0;
  }
}

.department .departments .departments_item:nth-child(odd) .pic {
  margin: 0 -100px 0 -80px;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item:nth-child(odd) .pic {
    margin: 0 -20px;
  }
}

.department .departments .departments_item:nth-child(odd) .holder {
  padding: 45px 0 45px 50px;
}

.department .departments .departments_item:nth-child(even) {
  flex-flow: row-reverse;
}

.department .departments .departments_item:nth-child(even) .pic {
  margin: 0 -80px 0 -100px;
}

.department .departments .departments_item:nth-child(even) .holder {
  padding: 45px 50px 45px 0;
}

.department .departments .departments_item:not(:last-child) {
  margin-bottom: 80px;
}

@media only screen and (max-width: 768px) {
  .department .departments .departments_item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.department .departments .departments_item.steel .pic {
  background-image: url(../images/works/pic_manufucturing_steel01.jpg);
}

.department .departments .departments_item.rolling .pic {
  background-image: url(../images/works/pic_manufucturing_rolling01.jpg);
}

.department .departments .departments_item.maintenance .pic {
  background-image: url(../images/works/pic_manufucturing_maintenance01.jpg);
}

.department .departments .departments_item.rd .pic {
  background-image: url(../images/works/pic_manufucturing_rd01.jpg);
}

.department .departments .departments_item.recycling .pic {
  background-image: url(../images/works/pic_manufucturing_recycling01.jpg);
}

.department .departments .departments_item.sales .pic {
  background-image: url(../images/works/pic_manufucturing_sales01.jpg);
}

.department .departments .departments_item.buying .pic {
  background-image: url(../images/works/pic_manufucturing_buying01.jpg);
}

.department .departments .departments_item.delivery .pic {
  background-image: url(../images/works/pic_manufucturing_delivery01.jpg);
}

.department .departments .departments_item.hr .pic {
  background-image: url(../images/works/pic_manufucturing_hr01.jpg);
}

.department .departments .departments_item.accounting .pic {
  background-image: url(../images/works/pic_manufucturing_accounting01.jpg);
}

.department .departments .departments_item.global .pic {
  background-image: url(../images/works/pic_manufucturing_global01.jpg);
}

.department .departments .departments_item.planning .pic {
  background-image: url(../images/works/pic_manufucturing_planning01.jpg);
}
