@charset "utf-8";
/*========================================
  style.css
    color   濃い　#26453D 
            中間　#42602D
            薄い　#B5CAA0
                            20250114w4403
==========================================*/
/*
----------------------------------------------*/
@import url(parts/basic.css); /*リセット、基本 */
@import url(parts/header.css);
@import url(parts/aside.css);
/*@import url(parts/home.css);*/
@import url(parts/footer.css);
@import url(parts/ham_menu.css);
@import url(parts/pagetop.css);


/* base style -----------------------------*/
html {
position: relative;
min-height: 100%;
}
body {
  background-color: #fff;
  color: #333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}
#container {
  width: 100%;
  min-height: 100vh;
}
header {
  width: 100%;
  height: 50px;
  margin: 0 auto;
}
.header_wrap {
  max-width: 1180px;
  margin: 0 auto;
}
#content {
  max-width: 1180px;
  min-height: calc(100vh - 50px - 28px - 60px); /* height - header -footer -調整 */
  margin: 30px auto;
}
main{
  width: 76%;
  float: right;
}
aside {
  width: 20%;
  float: left;
  text-shadow: none;
}
footer {
  clear: both;
  width: 100%;
  height: 28px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer_wrap {
  max-width: 1180px;
  margin: 0 auto;
  
}

/* media screen
 ----------------------------------------------*/
@media screen and (max-width: 800px) {
  #contents {
    min-height: calc(100vh - 50px - 28px); /* height - header -footer -調整 */
  }
  aside {
    display: none;
  }
  main {
    width: 100%;
  }
  .header_wrap, #content, .footer_wrap {
    max-width: 98%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {}
