@charset "UTF-8";
/* 20201028 「お知らせ」内バナー設置 */
.banner_section {
  width: calc(100% - 60px);
  max-width: 720px;
  margin: 40px auto; 
  display: flex;
  justify-content: center;
  position: relative;
  top: 50px;
}
.banner_section a {
  transition: all 0.2s ease-in-out;
}
.banner_section a:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
  opacity: 0.8;
}
.banner_section img {
  width: 100%;
  height: auto;
}
.banner_section--notice {
width: 48%;
margin-right: 4%;
}
.banner_section--eat,
.banner_section--coupon {
width: 24%;
}
.news_info {
  text-align: center;
  line-height: 2;
  font-size: 14px;
  width: 90%;
  max-width: 600px;
  background: #fff;
  /*border: solid 2px #999;*/
  padding: 10px 30px 7px;
  margin: 40px auto 0;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {	
  .banner_section {
      margin: 40px auto; 
      width: calc(100% - 80px);
      max-width: 400px;
  min-width: 290px;
  flex-wrap: wrap;
  }
  .banner_section--notice {
      margin-right: 0;
      margin-bottom: 10px;
  width: 100%;
  }
.banner_section--eat,
.banner_section--coupon {
  width: 50%;
}
} 
/* 20201030 banner takeout menu */
.Main_Banner {
	position: absolute;
	right: 100px;
	bottom: 50px;
	z-index: 999;
}
.Main_Banner a {
	display: block;
	cursor: pointer;
}
.Main_Banner a:hover {
	opacity: 0.9;
	transition:  ease-in-out .3s;
}
.Main_Banner img {
	width: 300px;
}
.Main_Banner--info {
  margin-top: -0.5em;
}
.Main_Banner--info img{
  border: solid 2px #fff;
}
@media screen and (max-width: 767px) {	
	.Main_Banner {
		text-align: center;
		bottom: 40px;
		left: 0;
		right: 0;
	}
	.Main_Banner img {
		width: 80%;
		max-width: 300px; 
  }
}

/*固定ボタン*/
.fixed_bottom {
    background: #000;
    position: fixed;
    z-index: 1000;
    right: 0;
    top: 0;
    line-height: 1.7;
    text-align: center;
	transition:  ease-in-out .3s;
}
.fixed_bottom:hover {
    opacity: 0.7;
}
.fixed_bottom img {
    display: block;
    width: 26px;
    margin: 0 auto 8px;
}
.fixed_bottom a {
    display: block;
    padding: 10px 10px 12px;
    color: #fff;
    font-size: 9px;
}
.fixed_bottom a span {
    color: #fff;
    font-size: 12px;
}
    @media screen and (max-width: 767px) {	
    .fixed_bottom {
        text-align: left;
    }
    .fixed_bottom img {
        width: 22px;
        margin-right: 10px;
        margin-top: 4px;
        float: left;
    }
    .fixed_bottom a {
        padding: 10px 8px 10px 12px;
        font-size: 11px;
        font-weight: bold;
    line-height: 1.5;
    text-align: center;
    }
    .fixed_bottom a span {
        font-size: 12px;
    }
}