/* cookie同意ツール */
.cookie_consent { position:fixed; bottom:0; left:0; z-index:1000; background:rgba(0,0,0,0.5); padding:25px 50px; width:100%; box-sizing:border-box; display:flex; align-items:center; justify-content:space-between; opacity: 0;visibility: hidden;transition: opacity 0.5s ease, visibility 0.5s ease;}
.cookie_consent.is-show {opacity: 1; visibility: visible;}
.cookie_consent .tx { color:#fff; font-size:14px; width:calc( 100% - 300px - 40px);}
.cookie_consent .btn_wrap { display:flex; align-items:center; width:300px;}
.cookie_consent .btn_wrap .button { font-size:14px; color:#fff; background:#00b8c2; padding:15px; border-radius:5px; line-height:1; margin-right:10px; cursor:pointer; transition:0.2s; text-decoration:none;}
.cookie_consent .btn_wrap .close { font-size:24px; color:#fff; transition:0.2s; cursor:pointer; margin-left:20px;}
.cookie_consent .btn_wrap .button:hover, .cookie_consent .btn_wrap .close:hover { opacity:0.7;}

@media screen and (max-width: 800px){
  /* cookie同意ツール */
  .cookie_consent { padding:20px; display:block;}
  .cookie_consent .tx { font-size:13px; line-height:1.4; width:auto; margin-bottom:15px;}
  .cookie_consent .btn_wrap { justify-content:flex-end; width:100%;}

}