@charset "UTF-8";
/* CSS Document */

/* リセット */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}


body {
  line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display:block;
}

nav ul {
  list-style:none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

a {
  margin:0;
  padding:0;
  font-size:1rem;
  vertical-align:baseline;
  background:transparent;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}
/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000;
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  width: 100%;
  border-collapse:collapse;
  border-spacing:0;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

li{list-style:none;}

a:link {
  color: #464646;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:visited {color: #464646;}
a:hover { opacity: 0.5;}

/*--clearfix--*/
.clearfix{zoom: 100%;}
.clearfix:after{
display: block;
  clear: both;
  content: ".";
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  visibility: hidden;
}
.clearfix{
  display: inline-block;
}

*html .clearfix{height: 1px;}

.clearfix{display: block;}

/*--float--*/
.f_left{float:left;}
.f_right{float:right;}

.clear{clear: both;}

/*Font*/

.bold{font-weight: lighter;}

.font16{font-size: 1rem;}

.red{color:#FF0000;}
.blue{color:#002B8A;}

.left   { text-align: left;}
.center { text-align: center;}
.right  { text-align: right;}


/******************/
/******************/

form {
clear:both;
display:block;
}

fieldset {
margin-bottom:10px;
clear:both;
display:block;
}

label {
display:block;
margin-bottom:5px;
}


input[type=radio] {
display:inline;
margin-right:10px;
}

input[type=text],
textarea {
padding: 0.6rem;
width:100%;
margin:0 auto;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
}

input[type=button] {
font-weight:bold;
padding:10px 30px;
cursor:pointer;
}

input[type=submit] {
  background: none;
  border: 0px;
  color: #fff;
}


/******************/
/******************/

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  padding: 0.6rem;
  border: 1px solid #d3d3d3;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	border-radius: 1px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
}



/*レスポンシブメニュー*/

.nav-button { display: none;}
.nav{margin-top: 2px}
.nav a {
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  padding: 18px 10px;
  display: block;
}
.nav li {
  display: inline-block;
  margin: 0 10px;
}
.nav-wrap.open { display: block;}
.nav-wrap.close { display: none;}
/*@media screen and (min-width: 481px)*/
@media screen and (min-width: 992px)
{
    .header {
        display: flex;
        justify-content: space-between;
        background: #7b6d61;
        padding: 4px 20px;
    }
    .logo img{
        max-width: 200px;
        width: 100%;
        padding-top: 2px;
    }
  .nav-wrap {
    display: block !important;
  }
}
/*@media screen and (max-width: 480px)*/
@media screen and (max-width: 991px)
{
    .header {
        display: flex;
        justify-content: space-between;
        background: #7b6d61;
        padding: 0px 20px;
    }
    .logo img{
        max-width: 200px;
        width: 75%;
        padding-top: 2px;
    }

  .logo {
    font-size: 16px;
    padding: 0.6rem 0 0.6rem;
    color: #396060;
}
  .nav-button {
    display: block;
    cursor: pointer;
  }
  .nav-wrap {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    background-color: rgb(86 66 24 / 70%);
    width: 80%;
    height: 100%;
  }
  .nav-wrap li{
    display: block;
    margin: 2em;
  }
  .nav-wrap li a{
    color: #fff;
    font-size: 18px;
  }
  /*メニューボタン*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .nav-button {
    margin-top: 1.1rem;
    z-index: 20;
    position: relative;
    /*width: 40px;
    height: 36px;*/
    width: 30px;
    height: 27px;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
  }
  .nav-button span:nth-of-type(1) { top: 0;}
  .nav-button span:nth-of-type(2) { top: 12px;}
  .nav-button span:nth-of-type(3) { bottom: 0;}
  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
  }
  .nav-button.active span:nth-of-type(2) { opacity: 0;}
  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }
}

.px-0{
    padding-left: 0!important;
    padding-right: 0!important;
}
.side_bg_none:after,
.side_bg_none:before{
    background: none !important;
}
