@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* スマホ閲覧時のハンバーガーメニュー */
#hanburger {
  display: none; /* チェックボックスを非表示 */
}
.menu_button { /* ボタンのスタイル */
  width: 50px; /* 幅 */
  height: 50px; /* 高さ */
  position: fixed;
  top: 10px;
  right: 10px;
  background: #6C2300; /* 背景色 */
  z-index: 9999;
}
.menu_button::before { /* アイコンのスタイル */
  font-family: "Font Awesome 5 Free";
  content: "\f0c9"; /* アイコン「３本線」 */
  font-weight: 900;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#hanburger:checked + .menu_button::before { /* アイコンのスタイル（チェック済み） */
  content: "\f00d"; /* アイコン「×印」 */
}
#hanburger:checked ~ .global_menu { /* メニュー全体のスタイル（チェック済） */
  visibility: visible; /* メニューを表示 */
}

@media screen and (max-width: 799px) {
	.global_menu { /* メニュー全体のスタイル */
	  visibility: hidden; /* メニューを非表示 */
	  width: 100%;
	  height: 100%;
	  position: fixed;
	  top: 70px;
	  left: 0;
	  padding: 15px;
	  color: #6c2300; /* 文字色 */
	  background: rgba(237, 227, 213, 0.9); /* 背景色 */
	  overflow-y: scroll;
	  text-align: left;
		z-index: 9998;
	}
	.global_menu > ul {
		list-style: none;
	}
	.global_menu > ul > li{
		padding: 10px;
		border-bottom: 1px solid #C9A67D;
	}
	.global_menu a {
		text-decoration: none;
		color: #333;
	}
	.global_menu a:hover {
		color: #EC5F00;
	}
	.child_menu > ul {
		margin-left: 20px;
		list-style: none;
	}
	.child_menu > ul > li > ul {
		display: flex;
		flex-wrap: wrap;
		list-style: none;
		padding-bottom: 10px;
	}
	.child_menu > ul > li > ul li {
		padding-right: 5px;
		padding-left: 5px;
		border-right: 1px solid #999;
	}
	.child_menu > ul > li > ul li:last-child {
		border: none;
	}
	.subitem {
		display: none;
	}
	.pc {
		display: none;
	}
	.sp {
		display: block;
		text-align: center;
	}
	header .sp {
		background: #fff8f0;
	}
}



@media screen and (min-width: 800px) {
  /* PC閲覧時のメガメニュー */
  .menu_button {
    display: none; /* ハンバーガーメニューのボタンを非表示 */
  }
  .global_menu { /* メニュー全体のスタイル */
    position: relative;
    padding: 0;
    visibility: visible;
    overflow-y: visible;
    text-align: center;
    display: flex;
    justify-content: space-around;
    border-bottom: solid 2px #742C00;
	font-size: 1.1em;
   background-color: #fff;
  }
  .global_menu > ul {
    display: flex;
    width: 100%;
    margin: 0;
    max-width: 750px;
  }
  .menu {
    width: 100%;
  }
  .menu, .child_menu > ul > li {
    display: inline-block;
  }
  .menu:not(:last-child) {
    margin-bottom: 0;
  }
  .menu > a { /* 親項目のスタイル */
    line-height: 68px;
    text-decoration: none;
    color: #2B0E00;
    font-weight: bold;
  }
  .menu:hover > a {
    background: #faf5ee;
    color: #EC5F00 !important;
    display: block;
  }
  .child_menu { /* 下層メニューのスタイル */
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 30px;
    color: #333; /* 文字色 */
    background-color: rgba(237, 227, 213, 0.95); /* 背景色 */
    visibility: hidden; /* 下層メニューを非表示 */
    z-index: 9999;
    font-size: 16px !important;
    border-top: solid 5px #742C00;
  }
  .menu:hover .child_menu { /* 下層メニューのスタイル（親項目ホバー時） */
    visibility: visible; /* 下層メニューを表示 */
  }
  .child_menu > ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-around;
  }
  .child_menu > ul > li {
    text-align: left;
    color: #6c2300 !important;
    padding: 4px 15px 10px 25px;
    font-weight: bold;
  }
  .child_menu > ul > li a {
    color: #272727 !important; /* 文字色 */
    font-size: 1em !important;
    padding: 0 !important;
    text-decoration: none;
	font-size: 1em;
  }
  .child_menu > ul > li > ul {
    font-weight: normal;
    border-top: 1px dotted #742C00;
    margin-top: 5px;
  }
  .child_menu > ul > li li {
    margin-left: 20px;
  }
  .child_menu a:hover {
    background: unset;
    color: #EC5F00 !important;
	font-weight: bold;
  }
  .child_menu2 {
    width: 100%;
  }
  .child_menu2 ul {
    display: flex;
    flex-wrap: wrap;
  }
  .child_menu2 li {
    padding-left: 10px;
    padding-right: 10px;
    border-right: 1px solid #ccc;
  }
  .child_menu2 li:last-child {
    border: none;
  }
  .global_menu.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 40px;
  }
  .global_menu.fixed .menu > a {
    line-height: 20px;
  }
  .global_menu .header {
	  margin-top: 5px;
	  padding-left: 5px;
  }
  .sp {
    display: none !important;
  }
  .pc {
    display: block;
  }
  #page-header.w-header {
    padding-top: 0;
  }
}
#btn-menu,header .container,#nav-main,#nav-branch {
  display: none!important;
}


.arrow_r {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  font-weight: normal;
}
.arrow_r:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #742c00;
  border-right: solid 2px #742c00;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left:-12px;
  bottom: 0;
  margin: auto;
}
