.cookie_modal {
  font-family: YakuHanJP, "Yu Gothic", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, arial ;
  position: fixed;
  bottom: 0;
  left: 0px;
  z-index: 10050;
  width: 100%;
  padding: 15px 5%;
  background: #dbdbdb;
  box-sizing: border-box;
}
.btn_area {
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -ms-flexbox;
  position: relative;
}
.btn_area p {
  all: initial;
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin: 0;
  width: 100%;
  text-align: left;
  font-weight: bold;
  padding-right: 15px;
}

.cookie_btn {
  text-align: center;
}

.privacyLink a {
  cursor: pointer;
  color: #000;
  text-decoration: underline;
	padding:0;
	background: none;
	font-weight: bold;
}
.privacyLink a:hover {
  color: #000;
  opacity: 1 ;
}

.cookie_accept {
  display: block;
  min-width: 150px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, #1b5597 50%, #01396d 50%);
  background-position: right bottom;
  transition: color cubic-bezier(0.215, 0.61, 0.355, 1) .15s, background-position cubic-bezier(0.215, 0.61, 0.355, 1) .4s;
}

.cookie_accept:hover {
  color: #fff ;
    background-position: left bottom ;
    opacity: 1 ;
}

.cookie_disagree {
  display: inline-block;
  width: 25px; /*枠の大きさ*/
  height: 25px; /*枠の大きさ*/
  position: fixed;
  text-decoration: none;
  position: absolute;
  right: -4%;
  top: -8px;
}

.cookie_disagree::before,
.cookie_disagree::after {
  content: "";
  display: block;
  width: 100%; /*バツ線の長さ*/
  height: 3px; /*バツ線の太さ*/
  background: #000;
  transform: rotate(45deg);
  transform-origin: 0% 50%;
  position: absolute;
  top: calc(14% - 5px);
  left: 14%;
}

.cookie_disagree::after {
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
  left: auto;
  right: 14%;
}

@media (max-width: 48em) {

  .btn_area {
    display: block;
  }

  .btn_area p {
    font-size: 12px;
    line-height: 15px;
    padding-right: 0;
  }

  .cookie_modal {
    padding: 27px 5% 10px;
  }

  .cookie_btn {
    width: 180px;
    margin: 1px auto 0;
  }

  .cookie_disagree {
    top: -20px;
    width: 30px;
    height: 30px;
  }
}
