/*! 通知バーのアニメーション用 */
@-webkit-keyframes ga-cookie-accept-bar-fade-in {
  from {
    transition:all .5s;
    opacity:0;
  }
  to {
    opacity:1;
  }
}
@keyframes ga-cookie-accept-bar-fade-in {
   from {
    transition:all .5s;
    opacity:0;
  }
  to {
    opacity:1;
  }
}
@-webkit-keyframes ga-cookie-accept-bar-fade-out {
   from {
    transition:all .5s;
    opacity:0;
  }
  to {
    opacity:1;
  }
}
@keyframes ga-cookie-accept-bar-fade-out {
   from {
    transition:all .5s;
    opacity:0;
  }
  to {
opacity:1;
  }
}
/*! 通知バー */
.module-ga-cookie-accept-bar {
  -webkit-animation-duration: .6s;
          animation-duration: .6s;
  -webkit-animation-name: ga-cookie-accept-bar-fade-in;
          animation-name: ga-cookie-accept-bar-fade-in;
          
          
  background-color: #f5f5f5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-size: .8rem;
  line-height: 1.5;
  padding: 15px 25px;
  position: fixed;
  /*right: 0;*/
  bottom: 0;
  width: 100%;
  z-index: 1000;
  /*margin:0 15px 15px 0;*/
  opacity:0.9;
}

.module-ga-cookie-accept-bar > div {
  display:flex;
  max-width:1000px;
  margin:0 auto;
}
.module-ga-cookie-accept-bar.state-remove {
  -webkit-animation-duration: .6s;
          animation-duration: .6s;
  -webkit-animation-name: ga-cookie-accept-bar-fade-out;
          animation-name: ga-cookie-accept-bar-fade-out;
}
.module-ga-cookie-accept-bar p {
  margin: 0.5em 0;
  /*float: left;
  width: 65%;*/
  flex:8;
  padding-right:20px;
}

.module-ga-cookie-accept-bar p:nth-child(2) {
  /*width: 30%;
  float: right;*/
  text-align: right;
  flex:1;
  padding-right:0;
  margin:auto 0;
}

.module-ga-cookie-accept-bar p:nth-child(3) {
  text-align: right;
  flex:0.5;
  margin-top:-10px;
  padding-right:0;
}

.module-ga-cookie-accept-bar a {
  color:#a48266;
  text-decoration: underline;
  /*display:block;*/
  /*margin:25px;*/
}
.module-ga-cookie-accept-bar .material-icons {
  vertical-align: middle;
  margin-right: .2em;
}
/*.module-ga-cookie-accept-bar p button:first-child {
  margin-right: 1em;
}*/
/*! ボタン */
.module-ga-cookie-accept-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: inline-block;
  background-color: #a98667;
  color: #fff;
  font-family: inherit;
  font-size: 1em;
  margin-bottom: .5em;
  padding: .5em 1.0em;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.2), 0 3px 1px -2px rgba(0,0,0,0.2);
          box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.2), 0 3px 1px -2px rgba(0,0,0,0.2);
  -webkit-transition: .3s ease-out;
  transition: .2s ease-out;
  width:100px;
}
.module-ga-cookie-accept-btn:hover{
  -webkit-box-shadow: 0 3px 3px 0 rgba(48,48,48,0.4), 0 1px 7px 0 rgba(48,48,48,0.4), 0 3px 1px -1px rgba(48,48,48,0.4);
          box-shadow: 0 3px 3px 0 rgba(48,48,48,0.4), 0 1px 7px 0 rgba(48,48,48,0.4), 0 3px 1px -1px rgba(48,48,48,0.4);
  cursor: pointer;
  opacity:0.85;
}
.module-ga-cookie-accept-btn.module-ga-cookie-deny-btn {
  background-color: transparent;
  color: #101010;
  padding: .5em 1.0em;
  margin-left: 10px;
}

/*	リセットボタン	*/
#name-ga-cookie-reset-bar {
  -webkit-animation-duration: .6s;
          animation-duration: .6s;
  -webkit-animation-name: ga-cookie-accept-bar-fade-in;
          animation-name: ga-cookie-accept-bar-fade-in;
          
  position:fixed; right:0; bottom:0;
  /*margin:0 15px 15px 0;*/ 
  padding:12px;
  background:#f5f5f5;
  font-size: .8rem; line-height: 1.5;
  width: 100%;
  text-align: center;
  z-index: 1000;
}

#name-ga-cookie-reset-bar p {
  margin: 0 50px;
}

#name-ga-cookie-reset-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  /*display: inline-block;*/
  background-color: #a98667;
  color: #fff;
  font-family: inherit;
  font-size: 1em;
  /*margin-bottom: .5em;*/
  padding: .5em 1.5em;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.2), 0 3px 1px -2px rgba(0,0,0,0.2);
          box-shadow: 0 2px 2px 0 rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.2), 0 3px 1px -2px rgba(0,0,0,0.2);
  -webkit-transition: .3s ease-out;
  transition: .2s ease-out;
  margin-left: 10px;
}

.cookie-popup-disp-none {
	display:none;
}

.button-close {
	font-size:150%;
}


#name-ga-cookie-close-btn {
   -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  font-size:150%;
  background: none;
  cursor: pointer;
  font-family:Arial;
}
@media screen and ( max-width:450px ) {

.module-ga-cookie-accept-bar    { font-size: 80%; }
}