@charset "utf-8";
/* CSS Document */
/*========= ナビゲーションのためのCSS ===============*/


.hamburger {
  display: block;
  position: fixed;
  z-index: 25;
  right: 30px;
  top: 15px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger2 {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  left: 9px;
  background: #242D2B;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 10px;
}
.hamburger span:nth-child(1) {
  top: 12px;
}
.hamburger span:nth-child(2) {
  top: 22px;
}
.hamburger span:nth-child(3) {
  top: 32px;
}
/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 23px;
  left: 10px;
  background: #ea8c3a;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 23px;
  background: #ea8c3a;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index: 23;
  top: 0;
  left: 0;
  color: #fff;
  background: #ea8c3a;
  text-align: center;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0.9em 0em 0.5em 0em;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0px;
	line-height: 0.5; 
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover {
  background: #6a3906;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  position: relative
}
/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  transform: translateX(0%);
}
/* パンくず */
ol{ list-style:none;}

ol li a:link { color: #3E3A39; }



/*==================================================
スマホ固定メニュー
===================================*/	
.pcmail {
  position: fixed;
  bottom: 0px;
  right: 0px;
}
.pcmail img {
  width: 100%;
max-width: 500px;
}

.copyright {
	margin: 0 auto;
	padding: 20px 20px 110px 20px;	
  background-color: #242D2B;
	color: #fff;
}	

/*スマフォ横・タブレット表示設定*/
@media (min-width: 600px) {


}

/*PC表示設定*/
@media (min-width: 1100px) {
.hamburger {
  display: block;
  position: fixed;
  z-index: 25;
  right: 50px;
  top: 25px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}	
  li {
    list-style: none;
  }	
  
}
@media (min-width: 1170px) {

	
.pcmail {
    position: fixed;
    bottom: 20px;
  }
  .pcmail img {
    width: 200px;
  }	
	
.copyright {
	margin: 0 auto;
	padding: 20px;	
  background-color: #242D2B;
	color: #fff;
}	
	
}