/* クッキー同意ブロック */
.NoticeBox {
	color: #000000;
	display: none;
	font-size: 14px;
	width: 1000px;
	max-width: calc(100% - 32px);
	margin: 0 auto;
	padding: 3px;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 30px;
	z-index: 117;
}
/* privacy */
.m-privacy {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10050;
  }
.m-privacy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #004ea2;
  border:2px solid #fff;
  }
.m-privacy-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  }
.m-privacy-text a {
  color: #fff;
  text-decoration:underline;
  }
.m-privacy-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  }
.m-privacy-btns__agree {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  width: 64px;
  height: 40px;
  border-radius: 4px;
  background-color: #595757;
  color: #fff;
  font-size: 1.6rem;
  }
.m-privacy-btns__agree:hover {
  opacity: 0.7;
  text-decoration: none;
  }
.m-privacy-btns__close {
  position: relative;
  width: 48px;
  height: 48px;
  }
.m-privacy-btns__close:before, .m-privacy-btns__close:after {
  content: "";
  background-color: #9e9e9e;
  width: 2px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  }
.m-privacy-btns__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
  }
.m-privacy-btns__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
  }
  .m-privacy-btns button{
  padding:5px 15px ;
  font-size: 1.2rem;
  }

@media screen and (max-width: 767px) {
  .m-privacy-inner {
    height: auto;
    max-width: inherit;
    padding: 9px 5px;
    }
  .m-privacy-text {
    margin-right: 10px;
    font-size: 0.8rem;
    line-height: 1.2;
    }
  .m-privacy-btns__agree {
    width: 50px;
    height: 32px;
    font-size: 1.2rem;
    }
  .m-privacy-btns__close {
    width: 32px;
    height: 32px;
    }
  .m-privacy-btns__close:before, .m-privacy-btns__close:after {
    height: 12px;
    }
  .m-privacy-btns button{
    width: 65px;
    height: 40px;
    padding: 1px;
    font-size: 0.8rem;
  }
}
