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





@media only screen and (max-width: 810px) {
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333!important;
    font-weight: normal;
  }
  a.header_button  {
  	  color: #FFF !important;
	}	
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
.nav_list > .nav_item > ul {
		display: none;
	}
	.nav_list > .nav_item > ul.active {
		display: block;
	}
	.header.change-color {
  background-color: #fff;
}
  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
	.nav_list > .nav_item > ul li.nav_item_ch {
		background: #FFCA7B;
		display: block;
		float: none;
		padding: 10px;
	}
	.nav_list::after {
		content: "";
		display: block;
		clear: both;
	}
}/* sp */

@media only screen and (min-width: 811px) {
  .header_inner {
    max-width: 100%; /*980px*/
    /*width: 100%;*/
    padding: 15px 30px;
    margin-left: auto;
    margin-right: auto;
    transition: all .5s;
  }
  .logo {
    /*padding: 12px 30px;*/
    padding: 0px 0px;
  }
  .nav {
    position: absolute;
    top: 32px;
    right: 37px;
  }
  .nav_list {
    /*text-align: right;*/
  }
  .nav_list li {
    /*display: inline-block;*/
    float: left;
    /*text-align: right;
    padding-left: 20px;*/
    position: relative;
  }
  ul.nav_list > li {
    margin-left: 20px;
  }
  .nav_list li a {
    color: #000;
    font-weight: 600;
  }
  .nav_item > ul {
    position: absolute;
    display: none;
    /*width: 180px;*/
    left: 0;
  }
  .nav_item > ul > li a {
    /*padding: 5px;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: -5px;*/
    display: block;
    color: #fff;
    text-decoration: none;
    background: #C1995D;
    width: 180px;
    padding: 5px;
  }
  .nav_item > ul > li a:hover {
    background: #FFCA7B;
    /*width: 180px;*/
  }
  /*.header.change-color {
    background: rgba(0, 176, 236, 0.5);
  }*/
  /*.header.change-color {
    background: rgba(0, 217, 37, 0.5);
  }	*/
	.header.change-color {
    background: rgba(255, 255, 255, 1);
  }	
	/*.nav_list > .nav_item > ul {
		display: none;
	}
	.nav_list > .nav_item > ul.active {
		display: block;
	}
	.nav_list > .nav_item > ul li.nav_item_ch {
		background: blue;
		display: block;
		float: none;
		padding: 10px;
	}*/
	
	/*.nav_list::after {
		content: "";
		display: block;
		clear: both;
	}*/
	/*.nav_list ul.active {
		display: block;
	}*/
	/*.nav_list > .nav_item > ul {
		display: none;
	}
	.nav_list > .nav_item > .nav_item_child {
		display: block;
	}*/
}/* pc */