@charset "utf-8";

/* ======================================================================================
	COMMON
====================================================================================== */
/* pt-movie_01
------------------------------------------------------------------------ */
	.pt-movie_01 {
		margin-top: 20px;
	}
@media screen and (max-width: 768px) {
	.pt-movie_01 {
		margin-top: 40px;
	}
}
/* movieContentsSection
------------------------------------------------------------------------ */
	.movieContentsSection {
		--movie-movieContentsSection-txt-paddingTopBottom: 40px;
	}
	.movieContentsSection + .movieContentsSection {
		margin-top: 60px;
	}
	.movieContentsBox {
		font-size: clamp(1.25rem, (15 / 1400 * 100vw), 1.5rem);
	}
	.movieContentsBox__txtBox {
		width: calc(910 / 1260 * 100%);
		background: #f3f2f1;
		padding: 35px 0 5px;
		box-shadow: 0 0 0 2px #cce198 inset;
		border-radius: 3px;
	}
	.movieContentsBox__txtBox .heading {
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
		gap: 0px 3.75em;
		
		position: relative;
		z-index: 0;
		color: rgba(var(--site-themeColor-lim-accent_2), 1);
		letter-spacing: .04em;
		padding: calc(20px + .2em) 50px 20px 20px;
	}
	.movieContentsBox__txtBox .heading::before { /* 見出し背景 */
		content: "";
		position: absolute;
		inset: 0;
		width: calc(100% - 4px);
		z-index: -1;
		background: #cce198;
		translate: -13px;
	}
	.movieContentsBox__txtBox .heading::after { /* 折り返し三角 */
		content: "";
		position: absolute;
		inset: 100% auto auto 0;
		z-index: -1;
		width: 13px;
		aspect-ratio: 1;
		background: #c1d78a;
		translate: -13px;
		clip-path: polygon(0 0, 100% 0%, 100% 100%);
	}
	.movieContentsBox__txtBox .heading .num {
		display: block;
		line-height: .8;
		color: rgba(var(--site-themeColor-accent_1), 1);
		font-family: var(--site-font_family-en_2);
		font-size: 8.4em;
		font-weight: 200;
		text-align: center;
		font-style: italic;
		letter-spacing: normal;
	}
	.movieContentsBox__txtBox .heading .ttl {
		display: block;
		line-height: 1.35;
		font-size: 1.6em;
	}
	.movieContentsBox__txtBox .heading .ttl .en {
		display: block;
		line-height: 1;
		font-family: var(--site-font_family-en_1);
		font-size: 1.666667em;
	}
	.movieContentsBox__txtBox .heading .ttl .ja {
		display: block;
		margin-top: .5em;
	}
	.movieContentsBox__txtBox .txt {
		width: 61%;
		min-height: calc(var(--movie-movieContentsSection-txt-paddingTopBottom) * 2 + 3lh);
		line-height: 2;
		font-size: 1em;
		text-align: justify;
		letter-spacing: .08em;
		padding: var(--movie-movieContentsSection-txt-paddingTopBottom) 40px;
	}
	.movieContentsBox__picBox {
		width: calc(700 / 1260 * 100%);
		aspect-ratio: 700 / 394;
		background: #000;
		margin-top: calc(3lh * -1); /* JSで上書き有 */
		translate: 0 calc(var(--movie-movieContentsSection-txt-paddingTopBottom) * -1);
		transition: margin-top 1s ease;
	}
	.movieContentsBox__picBox a {
		display: block;
		position: relative;
		overflow: hidden;
	}
	.movieContentsBox__picBox a::before {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 1;
		border: 1px solid #cce198;
		pointer-events: none;
	}
	.movieContentsBox__picBox a img {
		scale: 1;
		opacity: 1;
	}
	.movieContentsBox__picBox a[href] img {
		scale: 1;
		opacity: .57;
		transition: scale .45s ease-out, opacity .3s ease-out;
	}
	.movieContentsBox__picBox a[href] .icon {
		display: block;
		position: absolute;
		inset: 0;
		width: 27%;
		max-width: 112px;
		aspect-ratio: 1;
		color: #fff;
		margin: auto;
		border: 1px solid currentColor;
		border-radius: 100%;
	}
	.movieContentsBox__picBox a[href] .icon::before {
		content: "";
		position: absolute;
		inset: 0;
		width: 42%;
		aspect-ratio: 1;
		background: currentColor;
		margin: auto;
		clip-path: polygon(0 0, 88% 50%, 0 100%);
		translate: 12% 0;
	}
	/* 交互 */
	:where(.movieContentsSection:nth-of-type(odd)) .movieContentsBox__txtBox {
		margin-right: auto;
	}
	:where(.movieContentsSection:nth-of-type(odd)) .movieContentsBox__txtBox .txt {
		margin-right: auto;
	}
	:where(.movieContentsSection:nth-of-type(odd)) .movieContentsBox__picBox {
		margin-left: auto;
	}
	
	:where(.movieContentsSection:nth-of-type(even)) .movieContentsBox__txtBox {
		margin-left: auto;
	}
	:where(.movieContentsSection:nth-of-type(even)) .movieContentsBox__txtBox .txt {
		margin-left: auto;
	}
	:where(.movieContentsSection:nth-of-type(even)) .movieContentsBox__picBox {
		margin-right: auto;
	}
	
	/* hover */
	@media (hover: hover) and (pointer: fine) {
		.movieContentsBox__picBox a[href]:hover img {
			scale: 1.1;
			opacity: .8;
		}
	}
	.movieContentsBox__picBox a[href]:focus-visible img {
			scale: 1.1;
			opacity: .8;
	}
@media screen and (max-width: 1200px) {
	.movieContentsBox__txtBox .heading .num {
		font-size: 7.75em;
	}
}

@media screen and (max-width: 1024px) {
	.movieContentsBox__txtBox .heading {
		font-size: .925em;
	}
}
@media screen and (max-width: 768px) {
	.movieContentsSection {
		--movie-movieContentsSection-heading-paddingTopBottom: 26px;
		--movie-movieContentsSection-txt-paddingTopBottom: 20px;
	}
	.movieContentsSection + .movieContentsSection {
		margin-top: 80px;
	}
	.movieContentsBox {
		font-size: clamp(1.25rem, (13 / 375 * 100vw), 1.4rem);
		background: #f3f2f1;
		padding: 0 0 calc(var(--movie-movieContentsSection-txt-paddingTopBottom) + 10px);
		box-shadow: 0 0 0 2px #cce198 inset;
		border-radius: 3px;
	}
	.movieContentsBox__txtBox {
		width: 100%;
		background: transparent;
		padding-top: 0;
		box-shadow: none;
		border-radius: 0;
	}
	.movieContentsBox__txtBox .heading {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0 0;
		font-size: 1em;
		text-align: center;
		padding: var(--movie-movieContentsSection-heading-paddingTopBottom) min(5.5vw, 30px);
	}
	.movieContentsBox__txtBox .heading::before { /* 見出し背景 */
		width: 100%;
		translate: 0;
	}
	.movieContentsBox__txtBox .heading::after { /* 折り返し三角 */
		content: none;
	}
	.movieContentsBox__txtBox .heading .num {
		font-size: clamp(50px, (50 / 375 * 100vw), 60px);
		margin-top: calc(var(--movie-movieContentsSection-heading-paddingTopBottom) * -1);
		padding-right: .2em; /* 微調整 */
		translate: 0 -50%;
	}
	.movieContentsBox__txtBox .heading .ttl {
		font-size: 1.307em;
	}
	.movieContentsBox__txtBox .heading .ttl .en {
		font-size: 1.411em;
	}
	.movieContentsBox__txtBox .txt {
		width: 100%;
		min-height: 0;
		padding: var(--movie-movieContentsSection-txt-paddingTopBottom) min(5.5vw, 30px);
	}
	.movieContentsBox__picBox {
		width: calc(100% - (min(5.5vw, 30px) * 2));
		margin-top: 0 !important; /* JSで上書き阻止 */
		margin-left: auto;
		margin-right: auto;
		translate: 0 0;
	}
}
@media screen and (max-width: 480px) {
	.movieContentsSection + .movieContentsSection {
		margin-top: 60px;
	}
	.movieContentsBox {
		width: 100%;
	}
}


/* vbox- | venobox設定
------------------------------------------------------------------------ */
	.vbox-child {
		width: 80% !important; /* 強制的に幅を調整 */
	}
@media screen and (max-width: 1200px) {
	.vbox-child {
		width: 90% !important; /* 強制的に幅を調整 */
	}
}
@media screen and (max-width: 768px) {
	.vbox-child {
		width: 98% !important; /* 強制的に幅を調整 */
	}
}





