@charset "UTF-8";
/* ==========================================================================
汎用CSS
========================================================================== */
/* サイト全体のフォントサイズや色に関する設定
----------------------------------------------------------------- */
html {
  color: #000;
  font-family: ftf(base);
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  vertical-align: baseline;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.wrap {
  overflow: hidden;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  font-size: 16px;
  font-size: 1.1428571429rem;
  text-align: left;
  width: 100%;
}

.margin_side_wrap {
  margin: 0 15%;
}
@media screen and (max-width: 896px) {
  .margin_side_wrap {
    margin: 0 7% 0 9%;
  }
}
@media screen and (max-width: 480px) {
  .margin_side_wrap {
    margin: 0 8% 0 11%;
  }
}

.sec_padding {
  padding: 6rem 0 6rem;
}
@media screen and (max-width: 896px) {
  .sec_padding {
    padding: 4rem 0 4rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_padding {
    padding: 5rem 0 5rem;
  }
}

/* 見出し
----------------------------------------------------------------- */
.sec_wrap {
  display: block;
  letter-spacing: 0.1rem;
}
.sec_wrap .ttl_text {
  margin: 2.5rem 0 3.5rem;
  font-size: 16px;
  font-size: 1.1428571429rem;
  letter-spacing: 0;
}
@media screen and (max-width: 896px) {
  .sec_wrap .ttl_text {
    margin: 3rem 0 4rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_wrap .ttl_text {
    margin: 2rem 20px 4rem;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  h3, .uk-h3 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 896px) {
  h3, .uk-h3 {
    font-size: 2.8rem;
  }
}

/* ボーダー
----------------------------------------------------------------- */
.br_gray {
  border-top: 1px solid #dedede;
  width: 100%;
}

.br_gray_sml {
  border-top: 1px solid #dedede;
  max-width: 860px;
  padding-top: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .br_gray_sml {
    padding-top: 40px;
  }
}

/* 背景
----------------------------------------------------------------- */
.bg_diagonal {
  position: relative;
  right: 0;
}
.bg_diagonal img {
  position: absolute;
  width: 50%;
  right: -40px;
  top: -60px;
}
@media screen and (max-width: 480px) {
  .bg_diagonal img {
    width: 75%;
    top: -30px;
  }
}

.sec_top .uk-grid {
  margin-left: 0;
}

@media screen and (min-width: 1024px) {
  .sec_top .uk-grid + .uk-grid, .sec_top .uk-grid > .uk-grid-margin, .sec_top * + .uk-grid-margin {
    margin-top: 1.5rem;
  }
  .sec_top .uk-grid > * {
    padding-left: 1.25rem;
  }
  .sec_top .uk-grid {
    margin-left: 0;
  }
  #sec_decl .decl_sdg_icon .uk-grid + .uk-grid, #sec_decl .decl_sdg_icon .uk-grid > .uk-grid-margin, #sec_decl .decl_sdg_icon * + .uk-grid-margin {
    margin-top: 1.5rem;
  }
  #sec_decl .decl_sdg_icon .uk-grid > * {
    padding-left: 1.875rem;
  }
}
@media screen and (max-width: 896px) {
  .uk-grid {
    margin-left: -1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .sec_top .uk-grid {
    margin-left: -1rem;
  }
}
/* ==========================================================================
ローディング画面
========================================================================== */
.loading {
  background: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99999;
}

.loading_barWrap {
  background: #ddd;
  width: 42%;
  height: 4px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.loading_bar {
  background: #004da1;
  width: 100%;
  height: 4px;
  -webkit-animation: loadingAnime 1.5s forwards;
          animation: loadingAnime 1.5s forwards;
}

@-webkit-keyframes loadingAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes loadingAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/* ==========================================================================
index.html
========================================================================== */
/* トップ
----------------------------------------------------------------- */
.sec_top {
  height: 100%;
  margin: auto;
  padding: 4rem 4rem 8rem 4rem;
}
.sec_top .top_wrap {
  height: 100%;
}
.sec_top .top_wrap .ttl_goals {
  margin-bottom: 3rem;
}
.sec_top .top_wrap .ttl_goals img {
  max-width: 40vw;
  height: auto;
}
.sec_top .sdg_icon_wrap {
  margin: 0 auto;
}
.sec_top .sdg_icon_wrap .sdg_icon {
  width: 65vw;
}
@media screen and (max-width: 896px) {
  .sec_top {
    padding: 3rem 2rem 8rem 2rem;
  }
  .sec_top .top_wrap .ttl_goals {
    margin-bottom: 3.5rem;
  }
  .sec_top .top_wrap .ttl_goals img {
    max-width: 60vw;
  }
  .sec_top .sdg_icon_wrap .sdg_icon {
    width: 70vw;
  }
}
@media screen and (max-width: 480px) {
  .sec_top {
    padding: 3rem 2rem 8rem 2rem;
  }
  .sec_top .top_wrap .ttl_goals {
    margin-bottom: 3rem;
  }
  .sec_top .top_wrap .ttl_goals img {
    max-width: 88vw;
    margin-left: 1rem;
  }
  .sec_top .sdg_icon_wrap .sdg_icon {
    width: 94vw;
  }
}

/* メッセージ
----------------------------------------------------------------- */
#sec_message .message_wrap {
  display: block;
}
#sec_message .message_wrap .message_cont {
  z-index: 100;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#004da1), to(#19afdc));
  background: linear-gradient(to right, #004da1, #19afdc);
  width: auto;
  padding: 40px 0 60px 40px;
  top: 0;
  float: right;
  width: 68%;
  margin-bottom: 10.6vw;
}
#sec_message .message_wrap .message_cont .message_txt {
  font-size: 18px;
  font-size: 1.2857142857rem;
  font-weight: normal;
  color: #fff;
  text-align: left;
  float: left;
  line-height: 2rem;
}
@media screen and (max-width: 896px) {
  #sec_message .message_wrap .message_cont {
    width: 75%;
    padding: 30px 30px 40px 30px;
    margin-bottom: 90px;
  }
  #sec_message .message_wrap .message_cont .message_txt {
    font-size: 18px;
    font-size: 1.2857142857rem;
    line-height: 2.2rem;
    text-align: justify;
  }
}
@media screen and (max-width: 480px) {
  #sec_message .message_wrap .message_cont {
    width: 65%;
    padding: 30px 20px 30px 30px;
  }
  #sec_message .message_wrap .message_cont .message_txt {
    font-size: 16px;
    line-height: 2.8rem;
  }
}
#sec_message .message_cont_sml {
  position: relative;
}
#sec_message .message_cont_sml .message_sq {
  z-index: -100;
  position: absolute;
  top: 15vw;
  left: 12vw;
  background: -webkit-gradient(linear, left top, right top, from(#ebf7fc), to(#cce3f1));
  background: linear-gradient(to right, #ebf7fc, #cce3f1);
  width: 25%;
  height: 280px;
}
@media screen and (max-width: 896px) {
  #sec_message .message_cont_sml .message_sq {
    top: 35vw;
    left: 5vw;
    width: 30%;
    height: 220px;
  }
}
@media screen and (max-width: 480px) {
  #sec_message .message_cont_sml .message_sq {
    top: 520px;
    left: 40px;
    width: 45%;
    height: 150px;
  }
}

/* ==========================================================================
冬木工業SDGs宣言
========================================================================== */
#sec_decl .sec_wrap .decl_cont_sml {
  position: relative;
}
#sec_decl .sec_wrap .decl_cont_sml .decl_sq {
  z-index: 0;
  position: absolute;
  top: 12vw;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#ebf7fc), to(#cce3f1));
  background: linear-gradient(to right, #ebf7fc, #cce3f1);
  width: 85%;
  height: 300px;
}
@media screen and (max-width: 896px) {
  #sec_decl .sec_wrap .decl_cont_sml .decl_sq {
    top: 18vw;
    height: 250px;
  }
}
@media screen and (max-width: 480px) {
  #sec_decl .sec_wrap .decl_cont_sml .decl_sq {
    top: 30vw;
    height: 200px;
  }
}
#sec_decl .sec_wrap .decl_sdg_icon {
  position: relative;
  margin: 0 auto;
  margin-bottom: 7.5vw;
}
#sec_decl .sec_wrap .decl_sdg_icon .decl_sdg_icon_ttl {
  display: block;
}
#sec_decl .sec_wrap .decl_sdg_icon .decl_sdg_icon_ttl h5 {
  position: relative;
  margin: 0 auto;
  margin-bottom: 2rem;
  padding: 7px 0;
  font-size: 24px;
  font-size: 1.7142857143rem;
  letter-spacing: 0.1rem;
  text-align: center;
  color: #fff;
  background-color: #004da1;
  max-width: 768px;
  width: 100vw;
}
#sec_decl .sec_wrap .decl_sdg_icon .decl_sdg_icon_ttl h5::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -25px;
  top: 0px;
  border-left: 25px solid #004da1;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
}
@media screen and (max-width: 896px) {
  #sec_decl .sec_wrap .decl_sdg_icon .decl_sdg_icon_ttl h5 {
    max-width: 650px;
  }
}
@media screen and (max-width: 480px) {
  #sec_decl .sec_wrap .decl_sdg_icon .decl_sdg_icon_ttl h5 {
    width: 80%;
  }
  #sec_decl .sec_wrap .decl_sdg_icon .decl_sdg_icon_ttl h5::before {
    right: -20px;
    border-left: 20px solid #004da1;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
}
#sec_decl .sec_wrap .decl_sdg_icon .decl_sdg_icon_cont {
  margin: auto;
  max-width: 820px;
  width: 100vw;
}
@media screen and (max-width: 896px) {
  #sec_decl .sec_wrap .decl_sdg_icon .decl_sdg_icon_cont {
    max-width: 680px;
  }
}
@media screen and (max-width: 480px) {
  #sec_decl .sec_wrap .decl_sdg_icon .decl_sdg_icon_cont {
    width: 88%;
  }
}

@media all and (-ms-high-contrast: none) {
  #sec_decl .sec_wrap .decl_sdg_icon .decl_sdg_icon_ttl h5 {
    padding: 10px 0 6px;
  }
}
/* ==========================================================================
冬木工業の取り組み
========================================================================== */
#sec_effort .effort_wrap {
  display: block;
  max-width: 880px;
  margin: auto;
  background: rgba(255, 255, 255, 0.8);
}
#sec_effort .effort_wrap .effort_sdg_cont {
  padding: 0 30px;
}
#sec_effort .effort_wrap .effort_sdg_cont:first-child {
  padding-top: 30px;
}
#sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_icon {
  padding-bottom: 50px;
}
@media screen and (max-width: 480px) {
  #sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_icon {
    padding-bottom: 0;
  }
}
#sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_icon img {
  width: 100px;
  display: block;
}
@media screen and (max-width: 480px) {
  #sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_icon img {
    display: inline-block;
  }
}
#sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_icon img + img {
  margin-top: 15px;
}
@media screen and (max-width: 480px) {
  #sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_icon img + img {
    margin-top: 0;
    margin-left: 15px;
  }
}
#sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_icon .effort_sdg_icon_twins_1 {
  display: block;
  margin-bottom: 15px;
}
#sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_icon .effort_sdg_icon_twins_2 {
  display: block;
  margin-bottom: 50px;
}
#sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_text {
  padding-bottom: 50px;
  margin-left: 2rem;
}
#sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_text:last-child {
  padding-bottom: 30px;
}
#sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_text h5 {
  font-size: 24px;
  font-size: 1.7142857143rem;
  color: #221814;
  line-height: 1;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 896px) {
  #sec_effort .effort_wrap .effort_sdg_cont {
    padding: 0 60px;
  }
}
@media screen and (max-width: 480px) {
  #sec_effort .effort_wrap .effort_sdg_cont {
    padding: 0 30px;
  }
  #sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_icon img {
    width: 80px;
  }
  #sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_icon .effort_sdg_icon_twins_1 {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 15px;
  }
  #sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_icon .effort_sdg_icon_twins_2 {
    display: inline-block;
    margin-bottom: 0;
  }
  #sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_text {
    padding-bottom: 30px;
    margin-top: 2rem;
    margin-left: 0;
  }
  #sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_text h5 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  #sec_effort .effort_wrap .effort_sdg_cont .effort_sdg_text p {
    font-size: 13px;
    line-height: 2;
  }
}