
@charset "utf-8";
/* ----Cookieポリシー同意---- */
#cookieBox{
  display: none;
  position: fixed;
  z-index: 101;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1000px;
  width: calc(100% - 40px);
}
.block-cookie-consent {
  display: flex;
  background: #fff;
  border: #8FB12C solid 1px;
  align-items: center;
  padding: 1em 1.5em;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1.3;
}
.block-cookie-consent--text a {
  color: #8FB12C;
  text-decoration: underline;
}
.block-cookie-consent--btn {
  background: #8FB12C;
  border-radius: 10px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: bold;
  max-width: 300px;
  min-width: 7em;
  display: block;
  text-align: center;
  position: relative;
  transition: 0.2s;
  border: none;
  letter-spacing: 0.1em;
  padding: 0.5em 0;
  margin-left: 1.5em;
  font-size: 14px;
  line-height: 2;
  cursor: pointer;
}

@media screen and (min-width:768px){
  .block-cookie-consent--text a:hover {
    text-decoration: none;
  }
  .block-cookie-consent--btn:hover{
    opacity: 0.8;
  }
}

@media screen and (max-width:767px) {
  #cookieBox{
    margin-bottom: 3%;
    padding: 0;
    width: calc(100% - 10%);
    left: 0;
  }
  .block-cookie-consent{
    width: auto;
    flex-direction: column;
    padding: 1.2em;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .block-cookie-consent--text{
    font-size: 10px;
    line-height: 1.3em;
  }
  .block-cookie-consent--btn{
    margin: 3% 0 0;
    font-size: 95%;
  }
}