@charset "UTF-8";
/*ボタン*/
.buttonpopup {
	position: relative;
	display: inline-block;
	padding: 0.25em 0.5em;
	text-decoration: none;
	color: #FFF;
	background: #fd9535;
	border-radius: 4px;
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
	font-weight: bold;
	border: solid 2px #d27d00;
	cursor: pointer;
}
.buttonpopup:active {
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}

/*ポップアップ*/
.popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: .6s;
}
.popup.is-show {
	opacity: 1;
	visibility: visible;
}
.popup-inner {
	position: relative;
	width: 80%;
	margin:0 auto;
	max-width: 650px;
	top:20%;
	background-color: #fff;
	text-align:center;
	z-index: 2;
	display: flex;
	flex-direction: row;
}
.popup-inner-left{
    width: 50%;
    padding: 30px;
}
.popup-inner-right{
    width: 50%;
    background: #FA5518;
    padding: 30px;
    position: relative;
}
.line_icon{
    width: 20% !important;
    margin: 0 0 15px 0;
}
.line_txt{
    line-height: 1.3;
    font-size: 1.5rem;
}
.ofcl_logo{
    position: absolute;
    top: 35%;
    left: 10%;
}
.popup-inner img {
	width: 80%;
}
.close-area {
	display:inline-block;
	cursor: pointer;
	text-align:center;
}
.black-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 1;
	cursor: pointer;
}

@media (max-width: 768px) {
    .popup-inner {
        flex-direction: column-reverse;
    }
    .popup-inner-left{
        width: 100%;
    }
    .popup-inner-right{
        width: 100%;
        height: 160px;
    }
    .ofcl_logo{
        position: unset;
    }
}