@charset "utf-8";

/* reset */
/* reset
================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  /*vertical-align: baseline;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
html{
  zoom: 1;
}
body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}



/* メインコンテンツ制御 */
main {
  padding: 16px 3%;  /*上下　左右*/
}



ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

strong {
  font-weight: 700;
}
textarea {
  overflow: auto;
}
input, button, textarea{
  font-family: inherit;
  border: none;
  /*background-color: transparent;*/
}
a {
  text-decoration: none;
}
a, a img, :hover{
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:focus, a:hover, a:active {
  outline:0;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
embed, object, iframe, audio {
  max-width: 100%;
}
/* /reset */

/*typography ---------------------------------------*/
body{
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', sans-serif;
  height:100%;
  font-size:16px;
  line-height:180%;
  color: #562c28;
}

p {
  margin-bottom: 1em;
}
a{
  color: #3c5e58;
  text-decoration: underline;
}

/*header ---------------------------------------*/

/* ヘッダーを固定 */
header {
  top: 0;
  left: 0;
  right: 0;
}

.logo {
  color: #ffffff;
  font-size:30px;
  font-weight:bold;
}

/* Custom styles for the dropdown */
.dropdown-menu {
  display: none;
}
.dropdown-menu.show {
  display: block;
}

.rotate-180 {
  transform: rotate(180deg);
}

.hamburger {
    display: inline-block;
    cursor: pointer;
  }
  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #562c28;
    margin: 4px 0;
    transition: transform 0.3s ease-in-out;
  }


/*footer ---------------------------------------*/
footer {
  background-color: #333;
  color: #374151;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #374151;
  text-decoration: none;
  margin: 0 10px;
}


/*
img {
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  max-width: 100%;
  width: auto;
  height: auto;

}
*/

