@charset "UTF-8";
html {
  height: 100%;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, Arial, sans-serif;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.6;
  color: #000;
  margin: 0 auto;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  background-repeat: repeat;
  background-image: url(../media/images/common/bg.jpg);
  min-width: 1000px;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 0;
    font-size: 14px;
  }
}
body * {
  box-sizing: border-box;
}

#wholewrapper {
  position: relative;
  height: 100%;
}

a {
  color: #000;
  transition: 500ms;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

img {
  max-width: 100%;
  vertical-align: top;
}

span.br-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  span.br-pc {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  span.br-sp {
    display: block;
  }
}

.inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 979px) {
  .inner {
    padding: 0 20px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 10px;
  }
}

/**
* スマホメニューのボタン
**/
#spmenuBtn {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  height: 50px;
  width: 50px;
  padding: 5px;
  background-color: #663300;
  color: #fff;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  #spmenuBtn {
    display: block;
  }
}

/**
* スマホメニュー表示時の背景
**/
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 890;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
@media print, screen and (min-width: 980px) {
  #overlay {
    display: none !important;
  }
}

/**
* スマホメニュー・中身
**/
#spmenu {
  display: none;
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 900;
}
@media print, screen and (min-width: 980px) {
  #spmenu {
    display: none !important;
  }
}
#spmenu ul {
  margin: 0;
  padding: 0;
}
#spmenu ul li {
  list-style-type: none;
}
#spmenu ul li a {
  display: block;
  text-decoration: none;
}
#spmenu ul.depth1 {
  display: block;
}
#spmenu ul.depth1 > li {
  display: block;
  font-size: 15px;
  font-weight: bold;
  border-bottom: solid 1px #663300;
}
#spmenu ul.depth1 > li > a {
  color: #663300;
  background-color: #e3d2c9;
  padding: 10px;
}
#spmenu ul.depth1 > li > a > span {
  display: inline-block;
  vertical-align: middle;
}
#spmenu ul.depth1 > li > a > span.icon {
  display: none;
}
#spmenu ul.depth1 > li ul.depth2 > li {
  font-size: 15px;
  font-weight: normal;
}
#spmenu ul.depth1 > li ul.depth2 > li > a {
  color: #663300;
  background-color: #e3d2c9;
  padding: 5px 10px 5px 20px;
}
#spmenu ul.depth1 > li ul.depth2 > li:last-of-type > a {
  padding-bottom: 10px;
}

/**
** フッター
**/
footer {
  background-image: url("../media/images/top/footer.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 1200px;
  padding-top: 670px;
  position: relative;
  bottom: 0;
  margin-top: -670px;
  z-index: -1;
}
@media screen and (max-width: 979px) {
  footer {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  footer {
    height: 600px;
    padding-top: 335px;
    margin-top: -335px;
    background-size: auto 600px;
  }
}
footer .footer_inner {
  height: 470px;
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  footer .footer_inner {
    display: block;
    height: 235px;
    padding-top: 40px;
    width: 300px;
    margin: 0 auto;
  }
}
footer .footer_inner .basic_info {
  width: 350px;
}
@media screen and (max-width: 979px) {
  footer .footer_inner .basic_info {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_inner .basic_info {
    width: 100%;
  }
}
footer .footer_inner .basic_info h3 {
  margin: 0 0 22px;
  color: #336600;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .basic_info h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
footer .footer_inner .basic_info p {
  margin: 0;
  color: #336600;
  font-size: 17px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  footer .footer_inner .basic_info p {
    font-size: 15px;
  }
}
footer .footer_inner .basic_info p a {
  color: #336600;
  text-decoration: none;
}
footer .footer_inner .basic_info p a:hover {
  text-decoration: underline;
}
footer .footer_inner .sitemap {
  padding-top: 50px;
}
@media screen and (max-width: 979px) {
  footer .footer_inner .sitemap {
    padding-top: 0;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_inner .sitemap {
    display: none;
  }
}
footer .footer_inner .sitemap ul {
  margin: 0;
  padding: 0;
}
footer .footer_inner .sitemap ul li {
  list-style-type: none;
  color: #000;
}
footer .footer_inner .sitemap ul li a {
  text-decoration: none;
  color: #000;
}
footer .footer_inner .sitemap ul li a:hover {
  text-decoration: underline;
}
footer .footer_inner .sitemap ul.depth1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  list-style-type: none;
}
@media screen and (max-width: 979px) {
  footer .footer_inner .sitemap ul.depth1 {
    display: block;
  }
}
footer .footer_inner .sitemap ul.depth1 > li {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  margin-left: 20px;
}
@media screen and (max-width: 979px) {
  footer .footer_inner .sitemap ul.depth1 > li {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
footer .footer_inner .sitemap ul.depth1 > li:first-of-type {
  margin-left: 0;
}
footer .footer_inner .sitemap ul.depth1 > li ul.depth2 {
  margin-top: 15px;
}
@media screen and (max-width: 979px) {
  footer .footer_inner .sitemap ul.depth1 > li ul.depth2 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
footer .footer_inner .sitemap ul.depth1 > li ul.depth2 > li {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
}
@media screen and (max-width: 979px) {
  footer .footer_inner .sitemap ul.depth1 > li ul.depth2 > li {
    display: inline-block;
    margin-right: 10px;
  }
}
footer .copyright {
  text-align: center;
  height: 60px;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    height: 30px;
  }
}
footer .copyright p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 23px;
}
@media screen and (max-width: 767px) {
  footer .copyright p {
    font-size: 12px;
    padding: 9px;
  }
}

/**
** ページトップ
**/
.topagetop {
  display: none;
  text-align: right;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: 800;
}
.topagetop .inner {
  position: relative;
}
.topagetop > a {
  display: inline-block;
  width: 56px;
  height: 51px;
}

/*# sourceMappingURL=common.css.map */
