@charset "utf-8";
/***
* main
**************************************/
main {
	position: relative;
	overflow-x: clip;
	background-color: var(--color-base);
}
html.mback {
	background-color: #000;
}
/***
* float-banner
**************************************/

@media only screen and (min-width:769px) {

}
.liquidGlass-wrapper {
	position: relative;
	display: flex;
	font-weight: 600;
	overflow: hidden;
	color: black;
	box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.liquidGlass-effect {
	position: absolute;
	z-index: 0;
	inset: 0;

	backdrop-filter: blur(3px);
	/*filter: url(#glass-distortion);*/
	overflow: hidden;
	isolation: isolate;
}

.liquidGlass-tint {
	z-index: 1;
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
}

.liquidGlass-shine {
	position: absolute;
	inset: 0;
	z-index: 2;
	overflow: hidden;
	box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
	inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);/*-1px -2px 1px -1px rgba(255, 255, 255, 0.5);*/
}

.liquidGlass-text {
	z-index: 3;
	font-size: 2rem;
	color: black;
}
.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}
@keyframes moveBackground {
	from {
		background-position: 0% 0%;
	}
	to {
		background-position: 0% -1000%;
	}
}
/* ==========================================
   背景画像 クロスフェード対応版（全ブラウザ共通）
   ========================================== */
.all_contents_wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    /* 元の background-image や transition は削除し、ベースを黒にして白飛びを完全防止 */
    background-color: #000; 
}

/* 背景を束ねるコンテナ */
.bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* コンテンツの一番後ろに配置 */
    overflow: hidden;
}

/* 各背景画像の共通設定 */
.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0; /* 最初はすべて透明にしておく */
    transition: opacity 0.5s ease-in-out; /* 画像自体ではなく「透明度」をフワッとさせる！ */
    will-change: opacity; /* ブラウザに「ここアニメーションするよ」と伝えてガクつきを防止 */
}

/* --- SP用の背景画像 --- */
.bg-kv    { background-image: url("../IMAGES/background_sp_1.webp"); }
.bg-move  { background-image: url("../IMAGES/background_sp_2.webp"); }
.bg-photo { background-image: url("../IMAGES/background_sp_3.webp"); }
.bg-news  { background-image: url("../IMAGES/background_sp_4.webp"); }

/* JSが付与する data-current と一致した層だけ、透明度を1（表示）にする */
.all_contents_wrap[data-current="kv"] .bg-kv,
.all_contents_wrap[data-current="move"] .bg-move,
.all_contents_wrap[data-current="photo"] .bg-photo,
.all_contents_wrap[data-current="news"] .bg-news {
    opacity: 1;
}

/* --- PC用の背景画像 --- */
@media screen and (min-width: 769px) {
	.all_contents_wrap {
		width: auto;
		height: 100vh;
	}
	.bg-layer {
		background-position: left;
	}
	.bg-kv    { background-image: url("../IMAGES/background_pc_1.webp"); }
	.bg-move  { background-image: url("../IMAGES/background_pc_2.webp"); }
	.bg-photo { background-image: url("../IMAGES/background_pc_3.webp"); }
	.bg-news  { background-image: url("../IMAGES/background_pc_4.webp"); }
}
/***
* contents_pc
**************************************/
/*.contents_pc {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100vh;
	background-image: url("../IMAGES/background-image_pc.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}*/
.hamburger {
	display: block;
	position: fixed;
	top: 25px;
	right: 20px;
	width: 30px;
	height: 20px; /* 少し高さを狭めると2本線のバランスが良くなります */
	z-index: 101;
	cursor: pointer;
}
.hamburger span {
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transition: all 0.3s ease;
}
/* 2本線の初期位置（上下に少し余白を持たせる） */
.hamburger span:nth-child(1) { top: 4px; }
.hamburger span:nth-child(2) { bottom: 4px; }

/* クリックされて is-active が付いた時（中央で交差して×になる） */
.hamburger.is-active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

.nav_menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding-top: calc(var(--winW) * 110);
    background-color: rgba(17, 17, 17, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ★縦方向をど真ん中に */
    align-items: center; /* ★横方向をど真ん中に */
    gap: calc(var(--winW) * 45); /* 余白はデザインに合わせて調整してください */
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav_menu.is-active {
    opacity: 1;
    visibility: visible;
}

.nav_menu li {
    width: calc(var(--winW) * 120);
    text-align: left;
}

.nav_menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: calc(var(--winW) * 20);
	letter-spacing: calc(8em / 100);
	line-height: calc(35 / 24);
}

.nav_menu li.is-active a {
    color: #CB9910;
    font-weight: bold;
}
.js-bg-change {
	cursor: pointer;
}
@media screen and (min-width: 769px) {
	.contents_pc {

	}
	.hamburger {
		display: none;
	}
	.nav_menu {
		opacity: 1;
		visibility: visible;
		background-color: transparent;
		height: auto;
		width: auto;
		justify-content: flex-start;
		align-items: flex-start;
		left: auto;
		position: fixed;
		display: flex;
		flex-direction: column;
		padding-top: 0;
		padding-right: 0;
		top: calc(var(--winW) * 60.5);
		right: calc(var(--winW) * 78.5);
		gap: calc(var(--winW) * 53);
	}
	.nav_menu li {
		color: #fff;
	}
	.nav_menu li a {
		width: 100%;
		font-size: calc(var(--winW) * 18);
		line-height: 145%;
		display: inline-block;
	}

}
/***
* contents_sp
**************************************/
.contents_sp {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	overflow-y: auto;
	position: relative;
	background-color: transparent;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.contents_sp::-webkit-scrollbar {
    display: none;
}
.headerLogoArea {
	width: calc(var(--winW) * 141);
	margin-top: calc(var(--winW) * 31);
	margin-left: calc(var(--winW) * 16);
}
@media screen and (min-width: 769px) {
    .contents_pc {
        position: relative;
        z-index: 10; 
    }

	.contents_sp {
		width: 100%;
		height: 100%;
		overflow: hidden;
		overflow-y: auto;
		position: fixed;
		top: 0;
		left: 0;
		right: auto;
		padding-right: calc(var(--winW) * 328.5);
		box-sizing: border-box;
	}
	.contents_sp .wrapper,
	.contents_sp #gn_footer {
		width: 442px; 
		margin-left: auto; 
	}
	.headerLogoArea {
		width: 92px;
		margin-top: 30px;
		margin-left: 30px;
	}
}

section .liquidGlass-wrapper,
section .liquidGlass-effect,
section .liquidGlass-tint,
section .liquidGlass-shine {
	border-radius: calc(var(--winW) * 35);
}

/* さらに、はみ出しバグを強制的に抑え込むおまじないを追加 */

@media screen and (min-width: 769px) {
	section .liquidGlass-wrapper,
	section .liquidGlass-effect,
	section .liquidGlass-tint,
	section .liquidGlass-shine {
		border-radius: 35px;
	}
}

/***
* section-kv
**************************************/
.kv_area {
	width: 100%;
	margin-top: 100vh;
	margin-bottom: calc(var(--winW) * 500);
	position: relative;
}
.kv_area .liquidGlass-wrapper {
	padding: calc(var(--winW) * 20.36) calc(var(--winW) * 2) calc(var(--winW) * 42) calc(var(--winW) * 2);
}
.kv_area h1 {
	text-align: center;
	font-size: calc(var(--winW) * 16);
	letter-spacing: calc(27em / 100);
	color: #fff;
	margin-bottom: calc(var(--winW) * 25);
}
.kv_area h1 img {
	width: calc(var(--winW) * 232);
	margin: 0 auto;
	margin-top: calc(var(--winW) * 15);
	margin-bottom: calc(var(--winW) * 14);
}
.kv_area h1 span {
	font-size: calc(var(--winW) * 16);
	letter-spacing: calc(4em / 100);
}
.kv_area img {
	width: calc(var(--winW) * 371);
}
@media only screen and (min-width: 769px) {
	.kv_area {
		width: 100%;
		margin-top: 100px;
		margin-bottom: 220px;
	}
	.kv_area .liquidGlass-wrapper {
		padding: 24px 2px 50px 2px;
	}
	.kv_area h1 {
		text-align: center;
		font-size: 16px;
		color: #fff;
		margin-bottom: 27px;
		letter-spacing: 27%;
	}
	.kv_area h1 img {
		width: 232px;
		margin-top: 15px;
		margin-bottom: 14px;
	}
	.kv_area h1 span {
		font-size: 16px;
		letter-spacing: 4%;
	}
	.kv_area img {
		width: 438px;
	}
}
@keyframes growAndShrink {
	0% {
		height: 0;
		top: 0;
	}
	30% {
		height: 100%;
		top: 0;
	}
	70% {
		height: 100%;
		top: 100%;
	}
	100% {
		height: 0;
		top: 100%;
	}
}
.scroll-indicator {
	position: absolute;
	top: -175px;
	left: 50%;
	transform: translate(-50%, 0);
	display: flex;
	align-items: center;
	flex-direction: column-reverse;
	gap: 10px;
	z-index: 90;
}
.line-wrapper {
	width: 2px;
	height: 151px;
	position: relative;
	overflow: hidden;
}
.scroll-indicator .line {
	width: 100%;
	height: 0;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	animation: growAndShrink 2.5s ease-in-out infinite;
}
.scroll-text {
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.1em;
}
@media only screen and (min-width: 769px) {
	.scroll-indicator {
		top: unset;
		bottom: -220px;
	}
	.line-wrapper {
		width: 2px;
		height: 120px;
	}
	.scroll-indicator .line {
		width: 100%;
		height: 0;
		background-color: #fff;
		position: absolute;
		top: 0;
		left: 0;
	}
	.scroll-text {
		font-size: 14px;
	}
}
/***
* section-move
**************************************/
.move_area {
	width: 100%;
	margin-bottom: calc(var(--winW) * 500);
}
.move_area .liquidGlass-wrapper {
	padding: calc(var(--winW) *24) calc(var(--winW) * 24) calc(var(--winW) * 24) calc(var(--winW) * 24);
}
section h2 {
	color: #fff;
	font-size: calc(var(--winW) * 24);
	padding-bottom: calc(var(--winW) * 7);
	border-bottom: calc(var(--winW) * 1) solid #CB9910;
	display: inline-block;
	margin-bottom: calc(var(--winW) * 24);
}


/*カードarea開始*/
/* コンテナ全体のスタイル */
.video-accordion {
	display: flex;
	width: calc(var(--winW) * 322);
	height: calc(var(--winW) * 407);
	gap: 0;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: calc(var(--winW) * 28);
	background-color: rgba(0, 0, 0, 0);
	transform: translateZ(0);
}

/* 各カードの基本スタイル */
.video-card {
    display: flex;
    height: 100%;
    flex: 1; 
    min-width: calc(var(--winW) * 41);
    position: relative;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}
.video-card:first-child,
.video-card:first-child .card-sidebar {
    border-radius: calc(var(--winW) * 16) 0 0 calc(var(--winW) * 16);
}

/* 一番右のカード本体と、その上に乗っている帯の角を丸くする */
.video-card:last-child,
.video-card:last-child .card-sidebar {
    border-radius: 0 calc(var(--winW) * 16) calc(var(--winW) * 16) 0;
}
.video-card.is-open .card-sidebar {
	border-radius: 0;
}
.video-card.is-open {
	flex: 8;
}
.card-sidebar {
    width: calc(var(--winW) * 41);
    height: 100%;
    opacity: 1;
    position: absolute;
    background-color: rgba(22, 45, 42, 0.75);
    backdrop-filter: blur(4px); 
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: calc(var(--winW) * 20);
    cursor: pointer;
    z-index: 10;
    user-select: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1); 
}

.video-card.is-open .card-sidebar {
	background-color: rgba(22, 45, 42, 0.6);
	/*border-radius: calc(var(--winW) * 16) 0 0 calc(var(--winW) * 16);*/
}

.card_number {
	color: #fff;
	position: absolute;
	font-weight: 100;
	font-size: calc(var(--winW) * 24);
	letter-spacing: 0;
	white-space: nowrap;
	writing-mode: vertical-rl;
	text-orientation: sideways;
}
.bar {
	color: #fff;
	font-weight: 100;
	font-size: calc(var(--winW) * 24);
	margin: calc(var(--winW) * 8) 0;
}
.season {
	color: #fff;
	font-weight: 100;
	font-size: calc(var(--winW) * 16);
}
.video-card.is-disabled .card-sidebar {
    cursor: default;
    pointer-events: none;
}
/* ==========================================
	 コンテンツエリア（画像と再生ボタン）
	 ========================================== */
.card-content {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    margin-left: calc(var(--winW) * 48); 
}
.video-card.is-open .card-content {
	opacity: 1;
	pointer-events: auto;
}

.card-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(var(--winW) * 80);
	height: calc(var(--winW) * 80);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}
.play-btn svg {
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}
.play-btn:hover {
	transform: translate(-50%, -50%) scale(1.05);
}
.play-btn:hover svg circle[fill="white"] {
	fill-opacity: 0.5;
}
@media screen and (min-width: 769px) {
	.video-accordion {
		width: 394px;
		height: 480px;
		gap: 0;
		border-radius: 16px;
		overflow: hidden;
		margin-bottom: 28px;
	}
	.video-card:first-child,
	.video-card:first-child .card-sidebar {
	    border-radius: 16px 0 0 16px;
	}

	/* 一番右のカード本体と、その上に乗っている帯の角を丸くする */
	.video-card:last-child,
	.video-card:last-child .card-sidebar {
	    border-radius: 0 16px 16px 0;
	}
	.video-card.is-open .card-sidebar {
		border-radius: 0;
	}
	.video-card {
		display: flex;
		height: 100%;
		flex: 1; 
		min-width: 48px;
		position: relative;
		overflow: hidden;
		transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	}
	.card-sidebar {
		width: 48px;
		height: 100%;
		padding-top: 20px;
	}
	.card_number {
		font-size: 24px;
	}
	.bar {
		font-size: 24px;
	}
	.season {
		font-size: 16px;
	}
	.card-content {
	    flex: 1;
	    position: relative;
	    height: 100%;
	    overflow: hidden;
	    opacity: 0;
	    pointer-events: none;
	    transition: opacity 0.4s ease;
	    /* PC用：サイドバーの幅（50px）分ずらす */
	    margin-left: 50px; 
	}
	.video-card.is-open .card-content {
		opacity: 1;
		pointer-events: auto;
	}
	.card-bg {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 16px 0 0 16px;
	}
	.play-btn {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 93px;
		height: 93px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: transform 0.3s ease;
	}
}
/*カードarea終了*/
.move_info_area {
	
}
.move_area h3 {
	color: #fff;
	font-size: calc(var(--winW) * 22);
	margin-bottom: calc(var(--winW) * 10);
	letter-spacing: calc(-1.5em / 100);
	line-height: calc(19 / 22);
}
.move_area h3 span {
	font-size: calc(var(--winW) * 14);
}
.move_txet {
	color: #ffffff;
	font-size: calc(var(--winW) * 16);
	letter-spacing: calc(-0.5em / 100);
	line-height: calc(26 / 18);
	margin-bottom: calc(var(--winW) * 40);
}
.cameraman_img {
	width: calc(var(--winW) * 327);
	margin-bottom: calc(var(--winW) * 20);
}
.gallery_img {
	width: calc(var(--winW) * 327);
	margin: auto;
}
.occupation {
	color: #ffffff;
	opacity: 60%;
	font-size: calc(var(--winW) * 12);
	line-height: calc(20 / 14);
	margin-bottom: calc(var(--winW) * 6);
}
.cameraman_name {
	color: #fff;
	font-size: calc(var(--winW) * 25);
	margin-bottom: calc(var(--winW) * 24);
}
.cameraman_name {
	color: #fff;
	font-size: calc(var(--winW) * 20);
}
.cameraman_name span {
	font-size: calc(var(--winW) * 12);
}
.cameraman_text {
	color: #fff;
	font-size: calc(var(--winW) * 16);
	letter-spacing: calc(0em / 100);
	line-height: calc(28 / 16);
}
/***
* 撮影後記 アコーディオン
**************************************/
.postscript-box {
    border: calc(var(--winW) * 1) solid rgba(255, 255, 255, 0.4);
    border-radius: calc(var(--winW) * 8);
    padding: calc(var(--winW) * 16);
    margin-top: calc(var(--winW) * 20);
    background-color: rgba(17, 17, 17, 0.6);
}

.postscript-title {
    color: #fff;
    font-size: calc(var(--winW) * 16);
	line-height: calc(22 / 16);
    padding-bottom: calc(var(--winW) * 10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: calc(var(--winW) * 15);
}

.postscript-content {
    color: #fff;
    font-size: calc(var(--winW) * 16);
	font-weight: 100;
    line-height: calc(28 / 16);
    opacity: 0.8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.postscript-box.is-expanded .postscript-content {
    display: block;
}

.postscript-toggle {
    text-align: center;
    margin-top: calc(var(--winW) * 15);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    opacity: 0.6;
    font-size: calc(var(--winW) * 16);
}

/* 下向きの三角矢印（CSSで作ります） */
.toggle-arrow {
    display: inline-block;
    margin-top: calc(var(--winW) * 8);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #aaa;
    transition: transform 0.3s ease;
}

/* 展開時は矢印を180度回転させて上向きにする */
.postscript-box.is-expanded .toggle-arrow {
    transform: rotate(180deg);
}

/* PC用調整 */
@media screen and (min-width: 769px) {
    .postscript-box {
        padding: 16px;
        margin-top: 20px;
    }
    .postscript-title {
        font-size: 16px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    .postscript-content {
        font-size: 16px;
		-webkit-line-clamp: 2;
    }
    .postscript-toggle {
        margin-top: 15px;
        font-size: 14px;
    }
    .toggle-arrow {
        margin-top: 8px;
    }
}
@media screen and (min-width: 769px){
	.move_area {
		width: 100%;
		margin-bottom: 40px;
	}
	.move_area .liquidGlass-wrapper {
		padding: 24px 24px 54.3px 24px;
	}
	section h2 {
		color: #fff;
		font-size: 24px;
		padding-bottom: 7px;
		border-bottom: 1px solid #CB9910;
		display: inline-block;
		margin-bottom: 24px;
	}
	.move_info_area {
		
	}
	.move_areaいいい h3 {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.move_area h3 span {
		font-size: 16px;
	}
	.move_txet {
		font-size: 16px;
		letter-spacing: calc(-0.5em / 100);
		line-height: calc(28 / 16);
		margin-bottom: 25px;
	}
	.cameraman_img {
		width: 394px;
		margin-bottom: 20px;
	}
	.gallery_img {
		width: 394px;
	}
	.occupation {
		font-size: 12px;
	}
	.cameraman_name {
		font-size: 25px;
		margin-bottom: 24px;
	}
	.cameraman_name {
		color: #fff;
		font-size: 20px;
		margin-bottom: 24px;
	}
	.cameraman_name span {
		font-size: 14px;
	}
	.cameraman_text {
		font-size: 16px;
		letter-spacing: calc(-2em / 100);
	}
}
/***
* section-Photo
**************************************/
.photo_area {
	width: 100%;
	margin-bottom: calc(var(--winW) * 500);
}
.photo_area .liquidGlass-wrapper {
	padding: calc(var(--winW) * 24) calc(var(--winW) * 24) calc(var(--winW) * 27) calc(var(--winW) * 24);
}
.img_area {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: calc(var(--winW) * 20);
}
.img_area img {
	width: calc(var(--winW) * 327);
	cursor: pointer;
}
@media screen and (min-width: 769px){
	.photo_area {
		width: 100%;
		margin-bottom: 40px;
	}
	.photo_area .liquidGlass-wrapper {
		padding: 24px 24px 24px 24px;
	}
	.img_area {
		gap: 20px;
	}
	.img_area img {
		width: 394px;
	}
}
/***
* section-news
**************************************/
.news_area {
	width: 100%;
	margin-bottom: calc(var(--winW) * 500);
	position: relative;
}
.news_area .liquidGlass-wrapper {
	padding: calc(var(--winW) * 24) calc(var(--winW) * 24) calc(var(--winW) * 24) calc(var(--winW) * 24);
}
.news_area .liquidGlass-text {
	width: 100%;
}
.news_list {
	width: 100%;
}
.news_list li {
	color: #fff;
	border-top: calc(var(--winW) * 1) solid #fff; 
}
.news_list li:last-child {
	border-bottom: calc(var(--winW) * 1) solid #fff;
}
.news_list a {
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: center;
	padding: calc(var(--winW) * 15) calc(var(--winW) * 0) calc(var(--winW) * 15) calc(var(--winW) * 0);
	color: #fff;
	text-decoration: none;
	transition: background-color 0.3s;
}
.news_list a:hover {
	background-color: rgba(255, 255, 255, 0.05);
}
.news_date {
	font-weight: 300;
	font-size: calc(var(--winW) * 14);
	letter-spacing: 0.05em;
}
.news_title {
	font-weight: 400;
	font-size: calc(var(--winW) * 14);
	letter-spacing: 0.05em;
}
.news_title.size_small {
	font-size: calc(var(--winW) * 12);
	letter-spacing: 0.05em;
}
.news_svg {
	display: inline-block;
	width: calc(var(--winW) * 16.8);
	height: calc(var(--winW) * 16);
	position: absolute;
	transform: translate(0, -50%);
	top: 50%;
	right: 0;
}
@media screen and (min-width: 769px){
	.news_area {
		width: 100%;
		margin-bottom: 40px;
	}
	.news_area .liquidGlass-wrapper {
		padding: 24px 24px 24px 24px;
	}
	.news_list li {
		border-top: 1px solid #fff; 
	}
	.news_list li:last-child {
		border-bottom: 1px solid #fff;
	}
	.news_list a {
		display: flex;
		position: relative;
		justify-content: space-between;
		align-items: center;
		padding: 15px 0 15px 0;
		color: #fff;
		text-decoration: none;
	}
	.news_date {
		font-weight: 300;
		font-size: 16px;
		letter-spacing: 0.05em;
	}
	.news_title {
		font-weight: 400;
		font-size: 16px;
		letter-spacing: 0.05em;
	}
	.news_title.size_small {
		font-size: 14px;
		letter-spacing: 0.05em;
	}
	.news_svg {
		display: inline-block;
		width: 16.8px;
		height: 16px;
		position: absolute;
		transform: translate(0, -50%);
		top: 50%;
		right: 0;
	}
}
/***
* modal-covers
**************************************/
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 0;
	z-index: 9999; 
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.modal-overlay::-webkit-scrollbar {
	display: none;
}
/* モーダルの白枠コンテンツ */
.modal-content {
	padding: calc(var(--winW) * 75) calc(var(--winW) * 20) calc(var(--winW) * 230);
	width: 100%;
	position: relative;
	color: #fff;
	transform: translateY(-50px);
	transition: transform 0.3s ease;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
/* 表示時のアクティブクラス */
.modal-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

.modal-overlay.is-active .modal-content {
	transform: translateY(0);
}
/* 閉じるボタン */
.modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
	transition: color 0.2s;
	line-height: 1;
}
.modal-close:hover {
	color: #999;
}
.news_article_title {
	font-size: calc(var(--winW) * 20);
	letter-spacing: calc(0em / 100);
	line-height: calc(40 / 20);
	margin-bottom: calc(var(--winW) * 20);
}
.news_img {
	width: calc(var(--winW) * 335);
	margin-bottom: calc(var(--winW) * 20);
}
.modal-content .news_img:nth-of-type(2) {
	margin-top: calc(var(--winW) * 20);
}
.news_text {
	font-size: calc(var(--winW) * 16);
	letter-spacing: calc(0em / 100);
	line-height: calc(32 / 16);
}
/* --- PC版 --- */
@media screen and (min-width: 769px) {
	/* PCの時は表示エリア（contents_sp）と全く同じ位置に黒背景を重ねる */
	.modal-overlay {
		width: 442px;
		left: auto;
		right: calc(var(--winW) * 328.5) 
	}
	.modal-content {
		padding: 75px 20px 230px;
	}
	.news_article_title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.news_img {
		width: 402px;
		margin-bottom: 20px;
	}
	.modal-content .news_img:nth-of-type(2) {
		margin-top: 20px;
	}
	.news_text {
		font-size: 16px;
	}
}
.modal_video {
	margin-top: calc(var(--winW) * 10);
	height: 80vh;
}
@media screen and (min-width: 769px) {
	.modal_video {
		margin-top: 10px;
		height: 90vh;
	}
}
/***
* Fullscreen Image Modal
**************************************/
.modal-fullscreen-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.9); /* 背景を少し暗く */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000; /* 既存のモーダル(9999)より上に表示 */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 表示時のアクティブクラス */
.modal-fullscreen-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

.modal-fullscreen-content {
	width: 90%;
	height: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 画像を画面サイズに収める */
.modal-fullscreen-content img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* 閉じるボタン */
.modal-fullscreen-close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
	z-index: 10001;
	transition: color 0.2s;
	line-height: 1;
}

.modal-fullscreen-close:hover {
	color: #999;
}
@media screen and (min-width: 769px) {
	.modal-fullscreen-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.8);
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 10000;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	/* 表示時のアクティブクラス */
	.modal-fullscreen-overlay.is-active {
		opacity: 1;
		visibility: visible;
	}

	.modal-fullscreen-content {
		width: 90%;
		height: 90%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/* 画像を画面サイズに収める */
	.modal-fullscreen-content img {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
	}

	/* 閉じるボタン */
	.modal-fullscreen-close {
		position: absolute;
		top: 20px;
		right: 30px;
		font-size: 40px;
		color: #fff;
		cursor: pointer;
		z-index: 10001;
		transition: color 0.2s;
		line-height: 1;
	}
}
.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: calc(var(--winW) * 22);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 769px) {
	.video-responsive {
		margin-top: 22px;
	}
}

.unpublished{
    position: absolute;
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
}