@charset "UTF-8";

@media screen and (max-width: 480px) {
    .pc--only {
        display: none !important;
    }  
}
  
@media screen and (min-width: 481px) {
    .sp--only {
        display: none !important;
    }
}

body.open_popup {
    overflow: hidden;
}

.bpmodal {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9998;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.bpmodal::before {
    content: "×";
    position: fixed;
    top: 1px;
    right: 13px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    line-height: 1;
    font-size: 60px;
    font-weight: 400;
    font-family: Arial, Baskerville, monospace;
	z-index: 9999;
}

body.open_popup .bpmodal {
    opacity: 1;
    visibility: visible;
}

.bpmodal-content {
    background: none;
    margin: auto;
    padding: 0;
    border: none;
    position: absolute;
    max-width: 880px;
    width: calc(100% - 160px);
    -webkit-transform: translate(-50%, -50%);
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
  
@media print, screen and (max-width: 768px) {
    .bpmodal-content {
        width: calc(100% - 90px);
    }
}
  
.bpmodal-content a {
    display: inline-block;
}