@charset "utf-8";

/*===============================
 全体共通
===============================*/
body {
  background: #fff;
  color: #333;
  font-family: "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 2;
  position: relative;
}

ul,ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*---------- PC・スマホ切り替え ----------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width:600px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*---------- 背景 ----------*/
.bg_1 {
  background: #f3ebdf;
}

.bg_2 {
  background: #689C70;
}

.bg_3 {
  background: #271F16;
}

/*---------- 枠 ----------*/
.wrapper {
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width:600px) {
  .wrapper {
    padding: 0 15px;
  }
}

/*---------- リンク ----------*/
a {
  color: #689C70;
  transition: all .5s;
}

a:hover {
  text-decoration: none;
}

/*---------- ボタン ----------*/
.btn_bl {
  border: 1px solid #1092b9;
  border-radius: 100vw;
  color: #1092b9;
  display: inline-block;
  padding: 10px 25px;
  margin: 15px 0 0;
}

.btn_bl:hover {
  background: #1092b9;
  color: #fff;
}

.btn_wt {
  border: 1px solid #fff;
  border-radius: 100vw;
  color: #fff;
  display: inline-block;
  padding: 10px 25px;
  margin: 15px 0 0;
}

.btn_wt span {
  margin-left: 10px;
}

.btn_wt:hover {
  background-color: #fff;
  color: #1c293f;
}

/*---------- 見出し ----------*/
h2,h3,h4,h5,h6 {
  font-family: "Sawarabi Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ipaexm", ipaexm, serif;
}


/*---------- テーブル ----------*/
.uk-table caption {
  background: #041d30;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
}

.uk-table th {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  vertical-align: top;
}

.uk-table th,
.uk-table td {
  box-sizing: border-box;
  border-bottom: 1px dotted #ccc;
}

.uk-table tr:last-child th,
.uk-table tr:last-child td {
  border: none;
}

@media screen and (max-width:600px) {
  .uk-table th,
  .uk-table td {
    display: block;
  }
  .uk-table th {
    border-bottom: none;
  }
  .uk-table td {
    padding: 0 12px 16px;
  }
}


/*===============================
 header
===============================*/
header {
  height: 90px;
  position: relative;
  z-index: 150;
}

/*---------- logo ----------*/
header h1,
header .logo {
  width: 300px;
  margin: 15px 0;
}

header h1 a:hover,
header .logo a:hover {
  opacity: 0.6;
}

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

@media screen and (max-width:640px) {
  header h1 img,
  header .logo img {
    width: 180px;
  }
}

/*---------- nav ----------*/
.uk-navbar-container {
  background: transparent !important;
}

.uk-navbar-container.active {
  display: block;
}

.uk-navbar-nav li a {
  color: #333;
  font-size: 18px;
  min-height: 30px;
}

.uk-navbar-nav li a:hover {
  color: #689C70;
  /*opacity: 0.8;*/
}

.uk-navbar-dropdown {
  width: 250px;
}

@media screen and (max-width:960px) {
  .uk-navbar-container {
    display: none;
    box-sizing: border-box;
    background: #fff !important;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    padding: 5vw;
  }
  .uk-navbar-nav {
    margin: 40px 0 0;
    display: block;
  }
  .uk-navbar-nav li {
    display: block;
  }
  .uk-navbar-nav li a {
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
    display: block;
    min-height: auto;
    padding: 7px;
    width: 100%;
  }
  .uk-navbar-nav li a span {
    display: none;
  }
  .uk-navbar-dropdown {
    display: block;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-left: 1em;
    width: 100% !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }
}

/*---------- ハンバーガーメニュー ----------*/
.nav_btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #fff;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  padding: 0;
}

.nav_btn span{
  display: inline-block;
  transition: all .5s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #041d30;
  width: 45%;
}

.nav_btn span:nth-of-type(1) {
  top:15px; 
}

.nav_btn span:nth-of-type(2) {
  top:23px;
}

.nav_btn span:nth-of-type(3) {
  top:31px;
}

.nav_btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.nav_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.nav_btn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media screen and (max-width:960px) {
  .nav_btn {
    display: block;
  }
}


/*===============================
 topページ
===============================*/
/*---------- メインビジュアル ----------*/
.mainvisual {
  position: relative;
}

.mainvisual_logo {
  color: #724604;
  text-align: center;
  width: 90%;
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index: 100;
}

.mainvisual_logo strong {
  font-size: 40px;
  font-weight: bold;
}

.mainvisual_logo span {
  background: #f3ebdf;
  padding: 3px 5px;
}

@media screen and (max-width:600px) {
.mainvisual_logo strong {
  font-size: 26px;
}
}

/*---------- お知らせ ----------*/


/*---------- 代表ごあいさつ ----------*/


/*---------- 田中製材所について ----------*/
.top_products figure {
  text-align: center;
}
.top_products figcaption {
  font-size: 0.9em;
}


/*---------- 実績 ----------*/
.works_badge {
  background: #724604;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 5px 15px;
}

.works_badge + .works_badge {
  margin-left: 10px;
}

.top_works ul h3 {
  margin-top: 10px;
}


/*===============================
 下層ページ共通
===============================*/
/*---------- 見出し ----------*/
/*
.title {
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.title::before {
  background-color: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.title h1 {
  color: #fff;
  line-height: 1.5;
  position: relative;
}

@media screen and (max-width:748px) {
  .title {
    padding: 150px 0 60px;
  }
}
*/

/*---------- パンくずリスト ----------*/
/*
.uk-breadcrumb {
  margin: 15px 0 30px;
}
*/


/*===============================
 ●●について
===============================*/


/*===============================
 事業内容
===============================*/


/*===============================
 実績
===============================*/


/*===============================
 会社概要
===============================*/


/*===============================
 採用情報
===============================*/


/*===============================
 お問い合わせ
===============================*/


/*===============================
 footer
===============================*/
footer {
  color: #fff;
}

/*---------- logo ----------*/
.footer_logo {
  margin: 0 0 20px;
}

.footer_logo img {
  width: 300px;
}

@media screen and (max-width:640px) {
  .footer_logo img {
    width: 45%;
  }
}

/*---------- nav ----------*/
footer nav {
  border-top: 1px solid #fff;
}

footer nav li + li {
  padding: 5px 0 0;
}

footer nav ul:nth-of-type(2) li:nth-child(n+2) {
  padding-left: 1em;
}

footer nav a {
  color: #fff;
}

footer nav a:hover {
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width:640px) {
  footer nav ul {
    margin: 0 !important;
  }
}
