/*　Cookie取得同意モーダル
_________________________________________*/
.js-modal-cookie{
background: rgba(0, 0, 0, 0.8);
color: #ffffff;
left: 0;
bottom: 0;
position: fixed;
transition: .7s bottom;
width: 100%;
z-index: 9999;
}
.js-modal-cookie_inner{
width: 90%;
max-width: 1200px;
overflow: hidden;
margin: 0 auto;
line-height: 1.5em;
box-sizing: border-box;
}
.js-modal-cookie a{
color: white;
text-decoration: underline;
font-size:
}
.cookie-btn-close {
z-index: 4;
display: block;
box-sizing: content-box;
border: 0;
outline: 0;
width: 25px;
height: 25px;
background: transparent;
padding: 0;
text-align: center;
cursor: pointer;
position: absolute;
right: 20px;
top: 5px;
}
.cookie-btn-close span{
font-size: 0;
}
.cookie-btn-close:after, .cookie-btn-close:before {
content: "";
position: absolute;
top: 11px;
left: 2px;
display: block;
background: #fff;
width: 21px;
text-align: center;
height: 2px;
border-radius: 2px;
-webkit-transition: all .6s cubic-bezier(.19,1,.22,1);
transition: all .6s cubic-bezier(.19,1,.22,1);
}
.cookie-btn-close:before {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.cookie-btn-close:after {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.cookie-btn-agree{
display: inline-block;
border: 0;
outline: 0;
background: #004c97;
padding: 20px 10px;
text-align: center;
cursor: pointer;
color: white;
min-width: 10em;
transition: all .6s cubic-bezier(.19,1,.22,1);
}
.cookie-btn-agree:hover{
background: #003f7d;
}

.mr_20 {
margin-right: 20px;
}

.ptb_20 {
padding: 20px 0;
}

.ptb_30 {
padding: 30px 0;
}

.ptb_40 {
padding: 40px 0;
}

.l_flex {
display: flex;
}

.l_flex_c {
display: flex;
align-items: center;
}

.alc {
text-align: center;
}

@media screen and (min-width:768px) {
.pc_mr_20 {
margin-right: 20px;
}
}



@media screen and (max-width:768px) {
    /*　画面サイズが768pxからはここを読み込む　*/
.cookie-btn-agree{
width: 95%;
display: inline-block;
border: 0;
outline: 0;
background: #004c97;
padding: 5px 10px;
text-align: center;
cursor: pointer;
color: white;
min-width: 10em;
transition: all .6s cubic-bezier(.19,1,.22,1);
}
.cookie-btn-agree:hover{
background: #003f7d;
}

.sp_col {
display: block;
}

.js-modal-cookie_inner p {
font-size: 12.8px;
padding: 0;
}


}


