@charset "Shift_JIS";
/* ----Cookieポリシー同意---- */
.gdpr-consent {
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  padding: 14px 30px 14px 20px;
  background: rgba(0, 129, 191, 0.9);
  transition-property: -webkit-transform, opacity;
  transition-property: transform, opacity;
  transition-duration: 400ms;
  pointer-events: none;
  box-sizing: border-box;
}
.gdpr-consent.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: all;
}
@media (max-width: 767px) {
  .gdpr-consent {
    padding-right: 40px;
  }
}
.gdpr-consent__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 20px 26px;
  width: 1005px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .gdpr-consent__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.gdpr-consent__text {
  font-size: 0.845rem;
  color: #ffffff;
  line-height: 1.5;
  text-align: left;
}
.gdpr-consent__text a {
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: underline;
  color: #ffffff;

}
.gdpr-consent__text a:hover {
  opacity: 0.7;
}
.gdpr-consent__options {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px 40px;
}
@media (max-width: 767px) {
  .gdpr-consent__options {
    -ms-flex-pack: center;
        justify-content: center;
    width: 100%;
  }
}
.gdpr-consent__option {
  font-size: 14px;
  font-size: 0.875rem;
}
.gdpr-consent__option--disagree {
  cursor: pointer;
  transition: opacity 0.3s ease;
  color: #ffffff;
  text-decoration: underline;
}
.gdpr-consent__option--disagree:hover {
  opacity: 0.7;
}
.gdpr-consent__option--agree {
  width: 81px;
  border: 1px solid #ffffff;
  border-radius: 9999px;
  background: #ffffff;
  color: #0081C0;
  line-height: 25px;
  transition: .3s;
  font-size: 15px;
}
.gdpr-consent__option--agree:hover {
  background: transparent;
  color: #ffffff;
}
.gdpr-consent__close {
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 8px;
  right: 8px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
.gdpr-consent__close:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .gdpr-consent__close {
    right: 10px;
  }
}