@charset "utf-8";
.cookie-consent-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.cookie-consent {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: calc(100% - 32px);
  margin: 0 auto 26px;
  font-size: 14px;
  border-radius: 16px;
  color: #333;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 8px -4px;
  padding: 1.5em 1.2em;
  box-sizing: border-box;
  visibility: hidden;
}
.cookie-text {
  line-height: 1.7;
}
.cookie-consent.is-show {
  visibility: visible;
}
.policy-link a {
  color: #002564;
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}
.policy-link a:hover,.cookie-agree:hover, .cookie-reject:hover {
  opacity: .5;
}
.cookie-reject,.cookie-agree {
  padding: .8rem 1.6rem;
}
.cookie-agree {
  background: #2ca9ff;
  color: #fff;
  font-weight: bold;
  margin: 0 20px 0 0;
  border-radius: 48px;
}
.cookie-agree:hover, .cookie-reject:hover {
  cursor: pointer;
}
.cookie-area {
  display: flex;
}
/* パッと消える */
.cc-hide1 {
  display: none;
}
/* メディアクエリ */
@media screen and (max-width: 1024px) and (min-width: 600px) {
  .cookie-text {
    width: 60%;
  }
  .cookie-agree {
    padding: 0.75rem 1.5rem;
  }
  .cookie-reject {
    padding: 0.75rem 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .cookie-consent {
      flex-direction: column;
  }
  .cookie-text {
      margin-bottom: 1em;
  }
  .cookie-agree {
    margin: 0 1rem 0 0;
    padding: 0.75rem 2rem;
  }
  .cookie-reject {
    margin: 0;
    padding: 0.75rem 2rem;
  }
}