/*
* nca_brand_nx-group-owned-media.css
* /brand/nx-group-owned-media/
*/

@charset "UTF-8";
/* =================================
NCA対応　他社対応cssから水色枠と紫枠部分取り出し（section内）
================================= */


/* =================================
NCA対応　モジュールなし箇所
================================= */

/* nca_pageBack
---------------------------------------------------------- */
.nca_pageBack {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    margin-top: 48px;
    -webkit-text-decoration: underline 1px solid transparent;
    text-decoration: underline 1px solid transparent;
    -webkit-transition: -webkit-text-decoration .3s ease;
    transition: -webkit-text-decoration .3s ease;
    transition: text-decoration .3s ease;
    transition: text-decoration .3s ease,-webkit-text-decoration .3s ease
}

.nca_pageBack::before {
    background: url(/assets/img/ico_arrow_left.svg) 50% 50%/100% 100% no-repeat;
    content: "";
    height: min(24px,1.6666666667vw);
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
    width: min(24px,1.6666666667vw)
}

@media screen and (width < 768px) {
    .nca_pageBack::before {
        height: 24px;
        width: 24px;
    }
}

@media(hover: hover)and (pointer:fine) {
    .nca_pageBack:hover {
        color: #1a005d;
        text-decoration-color: #1a005d
    }

    .nca_pageBack:hover:before {
        background-image: url(/assets/img/ico_arrow_left_hover.svg)
    }
}

/* video
---------------------------------------------------------- */
@media print,screen and (768px <= width) {
    .video__thum {
		cursor: pointer;
	}

	.video__link {
		cursor: pointer;
	}

	.video__modal {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100%;
		z-index: 1000;
	}

	.video__modal-bg {
		position: absolute;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100%;
		background: rgba(0, 0, 0, 0.8);
		z-index: 1001;
	}

	.video__modal-content {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 1150px;
		max-width: 100%;
		padding: 15px;
		z-index: 1002;
	}

	.video__modal-iframe {
		width: 100%;
		height: 0;
		padding-bottom: 56.25%;
		position: relative;
	}

	.video__modal-content .iframeMovie {
		width: 100%;
		height: 100%;
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		border: none;
	}

  .video__modal-close_btn {
		width: 51.5px;
		position: absolute;
		top: -81.5px;
		right: 15px;
		cursor: pointer;
	}
}

@media screen and (width < 768px) {
    .video_box {
        display: grid;
    }
	.video__link {
		width: 100%;
		order: 2;
	}

	.video__modal {
		width: 100%;
		order: 1;
	}

	.video__modal-iframe {
		width: 100%;
		height: 0;
		padding-bottom: 56.25%;
		position: relative;
	}

	.video__modal-iframe .iframeMovie {
		width: 100%;
		height: 100%;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		border: none;
	}
}