/* CSS Document */
.baruni {
	position: fixed; /* bar3を追従にする */
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;

	display: grid;
	justify-items: center;
	align-items: center;
	z-index: 10000;
}
.logohana {
	position: fixed;
	left: 10px;
	top: 10px;
	z-index: 2;
}
.mbx1{
	width: 100%;
	
	padding-top: 0px;

  //background:#CC99aa;
}
.menumg1 {
	width: 30%;
	max-width: 300px;
	min-width: 200px;
	padding-top: 80px;
}
.menumg2 {
	width: 30%;
	max-width: 200px;
	min-width: 80px;
	//margin-left:auto;
	position: absolute;
	top: 80px;
	right: 0px;
	
}
.menumg3 {
	width: 30%;
	max-width: 500px;
	min-width: 240px;
}
/* ハンバーガーボタンのデザイン */
.drawer__button {
	caret-color: transparent;
	position: relative;
	width: 40px;
	height: 40px;

	background-color: transparent;

	border: none;
	cursor: pointer;
	z-index: 10000; /* メニューを開いている時もクリックできるよう設定 */
	display: block;
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 2px;
	/*
	width: 30px;
	height: 2px;
	*/
	background-color: #444;
	
	//background-color: #f29015;
	transform: translateX(-50%);
	z-index: 10000;

}
.drawer__button > span:first-child {
  //transform: translate(10px, 0px);
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
  
}
.drawer__button > span:nth-child(2) {
  //transform: translate(-10px, 0px);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  //background-color: transparent;
  background-color: #444;
}
.drawer__button > span:last-child {
	//transform: translate(0px, 0px);
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, 0px) rotate(-45deg);
  //transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #444;
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, 0px) rotate(45deg);
  //transform: translate(-50%, -50%) rotate(45deg);
  background-color: #444;
}
/* メニューのデザイン */
.drawer__nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	//background-color: rgba(100, 100, 100, 1);
	background:#efefef;
	transition: opacity 0.3s ease;
	opacity: 0;
	visibility: hidden;
	margin: 0px;
	padding: 0px;
	
	overflow-x: hidden;
	overflow-y: scroll;
	
	display: grid;
	justify-items: center;
	align-items: center;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
	position: relative;
	width: 94%;
	height: auto;
	padding: 0;


	//background:#22a;
	//background-color: transparent;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
/*
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}
*/
/* menu文字の制御 */
/*
.drawer__nav__link {
	display: block;
	color: rgba(255,255,255,1);
	text-decoration: none;
	padding-top: 0px;
	padding-bottom: 5px;
	//text-align: center;
	list-style-type: none;
	
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 1.2em;
}
*/
/*
.drawer__nav__item {
	list-style-type: none;
	width: 100%;
	//background:#CC44aa;
}
*/
.ftlogo111 {
	width: 70%;
	max-width:200px;
	margin-right: auto;
	margin-left: auto;
	
}
.horizonmenu {
	display: none;
	word-spacing: 2em;
	font-size: 0.8em;
	padding-top: 4px;
}
.menusam {
	width: 48%;
	margin-bottom: 10px;
}
.menucontt {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	//justify-content: center;
	width: 100%;
	margin: 0px;
	padding: 0px;
	//background:rgba(0,204,0,0.3);
}
.menupips {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;

	width: 100%;
	margin: 0px;
	padding: 0px;
	
	font-size: 0.6em;
	//background:rgba(0,204,0,0.3);
}
.menuicons {
	width: 20px;
	display: inline-block;
}
.sapporo {
	width: 75px;
	display: inline-block;
}
.kitami {
	width: 63px;
	display: inline-block;
}
#pmodal {
	font-size: 1em;
}
@media screen and (min-width:1200px) {
#pmodal {
	font-size: 0.8em;
}
.menusam {
	width: 16.5%;
}
.horizonmenu {
	display: block;
	position: absolute;
	top: 20px;
	right: 100px;
	z-index:10000;
}
}
