/* Cookie同意ポップアップ  */
@media screen and (min-width: 681px) {
.cookie-consent { display: flex; justify-content: space-between; align-items: center; position: fixed; bottom: 0; width: 100%; font-size: 1.0rem; color: #fff; background: rgba(0,0,0,0.7); padding: 20px; box-sizing: border-box; visibility: hidden; z-index:10000;}
.cookie-consent.is-show { visibility: visible;}
.cookie-consent a { text-decoration: underline; color: #fff !important;}
.cookie-agree {color: #fff; background: #0080ff; padding: 10px 20px; margin: 10px 30px 0; transition:0.2s; width: 102px;}
.cookie-agree:hover {cursor:pointer; background: #00ffff;}
.cc-hide1 { display: none;}
}

@media screen and (max-width: 680px) {
/* Cookie同意ポップアップ */
.cookie-consent { position: fixed; bottom: 0; width: 100%; font-size: 1.2rem; color: #fff; background: rgba(0,0,0,0.7); padding: 15px; box-sizing: border-box; visibility: hidden; z-index:10000;}
.cookie-consent.is-show { visibility: visible;}
.cookie-consent p { font-size:0.9rem;}
.cookie-consent a { text-decoration: underline; color: #fff !important;}
.cookie-agree {color: #fff; background: #0080ff; padding:10px; margin: 10px auto 0; width: 15%; text-align: center;}
.cc-hide1 { display: none;}
}