@charset "utf-8";

html[lang="ja"],
.lang_jp,
html[lang="en"],
.lang_en {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

html[lang="zh-cn"],
.lang_cn {
	font-family: "Noto Sans SC", sans-serif;
	font-weight: 400;
}

html[lang="zh-tw"],
.lang_tw {
	font-family: 'Noto Sans TC', sans-serif;
	font-weight: 400;
}

html[lang="ko"],
.lang_ko {
	font-family: 'Noto Sans KR', sans-serif;
	font-weight: 400;
}

body {
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";

	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

input,
button,
select {
	font-family: inherit;
	font-weight: inherit;
	font-feature-settings: "palt";
}

textarea {
	font-family: inherit;
	font-weight: inherit;
	font-feature-settings: "palt";
	resize: vertical;
}

:root {
	--global_nav_height: 53px;
}

/* スクロールバー */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: #d0d0d0;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: #909090;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: #606060;
}

/* ================================================================================ */
/*		文字色・背景色指定																*/
/* ================================================================================ */

body {
	font-size: 18px;
	line-height: 1.8;
	background: #222;
	z-index: 0;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

body::after {
	content: '';

}

button {
	line-height: 1.8;
}

@media screen and (max-width: 896px) {
	body {
		font-size: 16px;
	}
}

@media screen and (max-width: 480px) {
	body {
		font-size: 14px;
	}
}

body,
a {
	color: #000;
}

a:hover {
	opacity: 0.75;
	text-decoration: none;
}

/* ================================================================================ */
/*		loading																	*/
/* ================================================================================ */
#loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	;
	z-index: 9999;
}

#loader .ring {
	height: 60px;
	width: 60px;
	vertical-align: middle;
	transform-origin: center;
	animation: loading_rotate 2s linear infinite;
	position: relative;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
}

#loader .ring circle {
	fill: none;
	stroke: #FFF;
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	stroke-linecap: round;
	animation: loading_stretch calc(2s * 0.75) ease-in-out infinite;
}

@keyframes loading_rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes loading_stretch {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 90, 200;
		stroke-dashoffset: -35px;
	}

	100% {
		stroke-dashoffset: -124px;
	}
}

#loader span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: 3em;
	color: #FFF;
	font-family: arial, sans-serif;
}

/* ================================================================================ */
/*		caution																	*/
/* ================================================================================ */
.js_caution {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #FFF;
	padding: 2em;
	width: 80%;
	z-index: 2;
	border: 2px solid #c5243a;
}

.js_caution h2 {
	color: #c5243a;
	text-align: center;
	margin-bottom: .5em;
}

/* ================================================================================ */
/*		レイアウト																	*/
/* ================================================================================ */
article {
	max-width: 500px;
	margin: auto;
	position: relative;
	width: 100%;
	overflow-x: hidden;
	min-height: 100svh;
	display: flow-root;
}

.wrapper {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
}

.column {
	width: 100%;
	margin: 0;
	padding: 2em 1.5em;
	text-align: center;
}

@media screen and (max-width: 480px) {
	.column {
		padding: 1.5em 1em;
	}
}

/* ================================================================================ */
/*		背景																	*/
/* ================================================================================ */

.bg_01 {}

.bg_02 {}

.bg_03 {}

.bg_04 {}

/* ================================================================================ */
/*		文字色																	*/
/* ================================================================================ */
.color_00 {
	color: #000;
}

.color_01 {
	color: #fff;
}

/* ================================================================================ */
/*		ヘッダー																	*/
/* ================================================================================ */
.open_fixed {
	position: fixed;
}

/*	----	ヘッダー	----	*/


#top_head {
	top: 0;
	left: 0;
	position: absolute;
}

/* Fixed reset */
#top_head.fixed {
	padding-top: 0;
	background: transparent;
}

#mobile_head {
	z-index: 999;
	top: 0;
	position: relative;
}

#global_nav {
	top: -150%;
	left: 0;
	height: 100%;
	background-color: rgba(200, 200, 200, .7);
	width: 100%;
	text-align: center;
	padding: 0 10px;
	transition: top .2s ease-in-out, opacity 1s, visibility 1s;
	display: block;
	position: fixed;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: #909090 transparent;
	opacity: 0;
	visibility: hidden;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
	z-index: 5;
}

/* #global_nav スライドアニメーション */
.open #global_nav {
	/* #global_nav top + #mobile_head height */
	opacity: 1;
	visibility: visible;
	top: 0;
	padding-bottom: 0;
}

#global_nav>ul {
	max-width: 480px;
	list-style: none;
	position: static;
	height: auto;
	background-color: #FFF;
	transform: none;
	flex-wrap: wrap;
	margin: 54px auto 0;
	justify-content: center;
	padding: 1em 0;
	border-radius: 6px;
}

#global_nav>ul>li {
	float: none;
	position: static;
	border: none;
	width: calc(100% - 2em);
	border-top: 1px solid #707070;
	text-align: center;
	margin-left: 1em;
}

#global_nav>ul>li:last-child {
	border-bottom: 1px solid #707070;
}

#global_nav>ul>li:not(.global_nav_tel)>a {
	width: 100%;
	display: block;
	padding: 1em;
	position: relative;
	text-align: left;
}

#global_nav>ul>li.active>a::after {
	content: none;
}

#global_nav>ul>li:not(.global_nav_tel)>a::after {
	position: absolute;
	display: block;
	content: "";
	top: 50%;
	right: .5em;
	height: 1em;
	width: 1em;
	background: url(../img/separator.svg) no-repeat center center;
	transform: translateY(-50%);
	background-size: contain;
	left: auto;
}

#global_nav>ul>li:not(.global_nav_tel)>a:hover::after {
	transform: translateY(-50%);
}

#global_nav>ul>li.head_contact>a::after {
	background: url(../img/separatorWhite.svg) no-repeat center center;
	background-size: contain;
}

#global_nav>ul>li:not(.head_contact).active>a {
	background: #EEE;
	color: #222;
	pointer-events: none;
}

#global_nav>ul>li:not(.head_contact).active>a::after {
	content: none;
}

.global_nav_none {
	display: block;
	margin-top: 1.5em;
	line-height: 1.8;
}

#global_nav::-webkit-scrollbar {
	width: 12px;
	background-color: transparent;
}

#global_nav::-webkit-scrollbar-thumb {
	border-radius: 10px;
	box-shadow: inset 0 0 10px 10px #909090;
	border: solid 1px transparent;
}

#nav_toggle_wrap {
	position: absolute;
	left: 10px;
	top: 10px;
	inline-size: max-content;
	block-size: max-content;
	cursor: pointer;
}

#nav_toggle_wrap>span {
	white-space: nowrap;
	background-color: #5C5C5C;
	color: #FFF;
	border-radius: 999px;
	box-shadow: 3px 3px 0 rgba(0, 0, 0, .35);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .35em .8em .45em;
	line-height: 1;
}

#nav_toggle_wrap>span:hover {
	opacity: 0.75;
	text-decoration: none;
}

.head_back {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	gap: .5em;
	align-items: center;
	white-space: nowrap;
	z-index: 999;
	inline-size: max-content;
	block-size: max-content;
}

.head_back .btn_back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .35em .8em .45em;
	line-height: 1;
	background-color: #5C5C5C;
	color: #FFF;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 3px 3px 0 rgba(0, 0, 0, .35);
	-webkit-tap-highlight-color: transparent;
}

/* ================================================================================ */
/*		フッター																	*/
/* ================================================================================ */

#topBtn {
	/*	display: none; */
	width: 50px;
	height: 50px;
	position: fixed;
	right: 12px;
	bottom: 24px;
	opacity: 0.5;
	z-index: 10;
	transition: all 0.3s ease;
}

#topBtn svg,
#topBtn img {
	width: 100%;
	height: auto;
}

#topBtn:hover {
	opacity: 1;
}

#topBtn .ipagetop_inner {
	fill: #707070;
	stroke: #FFF;
	stroke-width: 10;
}

#topBtn .ipagetop_arrow {
	fill: #fff;
}

@media screen and (max-width: 480px) {
	#topBtn {
		width: 40px;
		height: 40px;
		right: 5px;
		bottom: 5px;
	}

	#topBtn .ipagetop_inner {
		fill: #3e230b;
		stroke: #FFF;
	}
}

/* ================================================================================ */
/*		OTHER																	*/
/* ================================================================================ */

.is_disabled {
	pointer-events: none;
	cursor: default;
	opacity: 0.6;
	filter: none !important;
	transition: opacity .2s;
}

.lang_sel {
	display: flex;
	flex-direction: column;
	min-height: 100svh
}

.lang_btn_wrap {
	flex-grow: 1;
	padding: 0 2em 2em;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lang_btn_wrap ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.75em;
	height: 100%;
	margin-top: 0;
}

.lang_btn_wrap ul li>a {
	background-color: #5C5C5C;
	color: #FFF;
	font-size: 1.7em;
	display: inline-block;
	padding: .25em .5em .35em;
	line-height: 1.1;
	min-width: 7em;
	width: 55%;
	font-weight: 500;
	border-radius: 999px;
	box-shadow: 3px 3px 0 rgba(0, 0, 0, .35);
}


.cont_sel {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	min-height: 100svh
}

.cont_btn_wrap {
	flex-grow: 1;
	padding: 6em 2em 2em;
	text-align: center !important;
}

/*
html[lang="en"] .cont_btn_wrap {
	padding: 8em 2em 4em;
}
*/
.cont_btn_wrap ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.75em;
	height: 100%;
	margin-top: 0;
}

.cont_btn_wrap ul li>a {
	background-color: #5C5C5C;
	color: #FFF;
	font-size: 1.2em;
	display: inline-block;
	padding: .5em .15em .6em;
	line-height: 1.1;
	width: 100%;
	font-weight: 500;
}

.cont_btn_wrap ul li>a>p {
	font-weight: 500;
}

.cont_btn_wrap ul li>a>span {
	font-size: .65em;
	padding-top: .7em;
	display: inline-block;
}

.cont_wrap {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.cont_title {
	padding: var(--global_nav_height) 1rem 1.25em;
	margin-bottom: 2em;
	width: 100%;
	text-align: center;
	line-height: 1.1;
	position: relative;
	color: #FFF;
}

.cont_title h1 {
	font-size: 1.3em;
	font-weight: bold;
}


/* ================================================================================ */
/*		model-loading																	*/
/* ================================================================================ */
/* ％表示ローディング（画面中央に数値、バー付き） */
.mv-loading {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: grid;
	place-items: center;
	background: rgba(0, 0, 0, .55);
	opacity: 1;
	transition: opacity .25s ease;
}

.mv-loading.is-hide {
	opacity: 0;
	pointer-events: none;
}

.mv-loading__center {
	width: min(520px, 90vw);
	display: grid;
	gap: 12px;
	justify-items: center;
}

.mv-loading__pct {
	color: #fff;
	font-size: 1.1em;
	line-height: 1;
	letter-spacing: .03em;
	text-align: center;
}

.mv-loading__label {
	color: #fff;
	font-size: .85em;
	padding-right: .5em;
}

.mv-progress {
	width: min(520px, 90vw);
	height: 10px;
	background: rgba(255, 255, 255, .25);
	border-radius: 999px;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.mv-progress__fill {
	width: 0%;
	height: 100%;
	background: #FFF;
	transition: width .18s linear;
}

/* ================================================================================ */
/*		model-viewer																	*/
/* ================================================================================ */
.mv-full {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100dvh;
	background: #000;
}

.bg_02 .mv-full {
	background: #DDD;
}

@supports not (height: 100dvh) {
	.mv-full {
		height: 100vh;
	}
}

.mv-full>model-viewer {
	width: 100%;
	height: 100%;
	display: block;
}

.hotspot {
	position: relative;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: #fff;
	box-shadow: 0 1px 6px rgba(0, 0, 0, .25);
	cursor: pointer;
	--hotspot-color: #0a66c2;
	border: 2px solid var(--hotspot-color);
}

.hotspot::after {
	content: "";
	position: absolute;
	inset: -8px;
}

.hotspot-hideback {
	--min-hotspot-opacity: 0;
}

.hotspot:not([data-visible]) {
	/* 例：見えていない時の枠だけ表示したい等があればここで */
	/* background: transparent; border-style: dashed; */
}

/* SVGアイコン共通 */
.hotspot-badge {
	width: 20px;
	height: 20px;
	background-color: var(--hotspot-color);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

/* ===============================
   アイコン（SVGをCSSで指定）
   =============================== */

/* 情報アイコン */
.hotspot--icon-info .hotspot-badge {
	-webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 11v9' stroke='%23000' stroke-width='3' stroke-linecap='round' fill='none'/><circle cx='12' cy='5.5' r='2' fill='%23000'/></svg>");
	mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 11v9' stroke='%23000' stroke-width='3' stroke-linecap='round' fill='none'/><circle cx='12' cy='5.5' r='2' fill='%23000'/></svg>");
}

/* 警告アイコン：三角 + 中抜きの「！」 */
.hotspot--icon-alert .hotspot-badge {
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path transform='scale(0.88) translate(1.44,1.44)' fill='%23000' fill-rule='evenodd' d='M12 2 L23 21 H1 Z M11 9 H13 V16 H11 Z M12 18 m-1.6 0 a1.6 1.6 0 1 0 3.2 0 a1.6 1.6 0 1 0 -3.2 0 Z'/></svg>");
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path transform='scale(0.88) translate(1.44,1.44)' fill='%23000' fill-rule='evenodd' d='M12 2 L23 21 H1 Z M11 9 H13 V16 H11 Z M12 18 m-1.6 0 a1.6 1.6 0 1 0 3.2 0 a1.6 1.6 0 1 0 -3.2 0 Z'/></svg>");
}

/* プラスアイコン */
.hotspot--icon-plus .hotspot-badge {
	-webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M11 5h2v14h-2zM5 11h14v2H5z'/></svg>");
	mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M11 5h2v14h-2zM5 11h14v2H5z'/></svg>");
}

/* チェックアイコン */
.hotspot--icon-check .hotspot-badge {
	-webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M9 16.17l-3.5-3.5L4 14l5 5 11-11-1.41-1.42z'/></svg>");
	mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23000' d='M9 16.17l-3.5-3.5L4 14l5 5 11-11-1.41-1.42z'/></svg>");
}

/* ===============================
   カラーパレット（枠線とSVG色）
   =============================== */
.hotspot--color-01 {
	--hotspot-color: #0a66c2;
}

.hotspot--color-02 {
	--hotspot-color: #ff5722;
}

.hotspot--color-03 {
	--hotspot-color: #2e7d32;
}

.hotspot--color-04 {
	--hotspot-color: #d32f2f;
}

.hotspot--color-05 {
	--hotspot-color: #888888;
}

.hotspot--color-06 {
	--hotspot-color: #0097a7;
}

.hotspot--color-07 {
	--hotspot-color: #7b1fa2;
}

.hotspot--color-08 {
	--hotspot-color: #c2185b;
}

.hotspot--color-09 {
	--hotspot-color: #fbc02d;
}

.hotspot--color-10 {
	--hotspot-color: #388e3c;
}

.hotspot--color-11 {
	--hotspot-color: #0288d1;
}

.hotspot--color-12 {
	--hotspot-color: #5d4037;
}


/* アノテーション（ホットスポットと一緒に3D空間で追従） */
.annotation {
	background-color: rgba(136, 136, 136, .9);
	color: #fff;
	position: absolute;
	transform: translate(0, 35px);
	border-radius: 10px;
	padding: 8px 10px;
	font-size: 12px;
	white-space: nowrap;
	pointer-events: none;
}

/* 見えていない時はアノテーションも隠す場合 
.hotspot:not([data-visible]) .annotation {
	display: none;
}
*/

/* ================================================================================ */
/*		modal													*/
/* ================================================================================ */

/* modal 変数 */
:root {
	--mv-modal-max-height: 80dvh;

	/* モーダル：タイトル */
	--mv-modal-title-font-size: 20px;
	--mv-modal-title-line-height: 1.4;
	--mv-modal-title-margin-bottom: 0.7;

	/* モーダル：メディア */
	--mv-modal-media-margin-bottom: 0.7;

	/* モーダル：本文 */
	--mv-modal-body-font-size: 1em;
	--mv-modal-body-line-height: 1.7;
	--mv-modal-body-lines: 4;

	/* ズームアイコン */
	--mv-modal-zoom-icon-size: 32px;
	--mv-modal-zoom-icon-bg: rgba(0, 0, 0, .55);
	--mv-modal-zoom-icon-radius: 6px;
}

.mv-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
}

.mv-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.mv-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .5);
	backdrop-filter: blur(2px);
}

.mv-modal__dialog {
	position: absolute;
	top: 10%;
	left: 50%;
	right: auto;
	transform: translateX(-50%) translateY(10px) scale(0.97);
	width: calc(100% - 32px);
	max-width: 900px;

	background: #fff;
	color: #222;
	border-radius: 12px;
	padding: 16px 18px 18px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .35);

	max-height: var(--mv-modal-max-height);
	overflow: hidden;

	display: flex;
	flex-direction: column;

	opacity: 0;
	transition: opacity .25s ease-out, transform .25s ease-out;
}

.mv-modal.is-open .mv-modal__dialog {
	opacity: 1;
	transform: translateX(-50%) translateY(0) scale(1);
}

@media screen and (max-width: 640px) {
	.mv-modal__dialog {
		padding: 16px 14px 18px;
	}
}

.mv-modal__title {
	margin: 0 32px calc(1em * var(--mv-modal-title-margin-bottom)) 0;
	font-weight: 700;
	font-size: var(--mv-modal-title-font-size);
	line-height: var(--mv-modal-title-line-height);
	flex: 0 0 auto;
}

.mv-modal__body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow-y: scroll;
}

/* ------------------------------
   画像・動画（拡大用アイコン付き）
   ------------------------------ */
.pop-media-wrap {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
	height: calc(var(--mv-modal-max-height) - (var(--mv-modal-title-font-size) * var(--mv-modal-title-line-height)) - (var(--mv-modal-title-font-size) * var(--mv-modal-title-margin-bottom)) - (var(--mv-modal-body-font-size) * var(--mv-modal-body-line-height) * var(--mv-modal-body-lines)) - (var(--mv-modal-body-font-size) * var(--mv-modal-media-margin-bottom)));
	margin-bottom: calc(1em * var(--mv-modal-media-margin-bottom));
}

.pop-media {
	position: absolute;
	inset: 0;
	margin: 0;
	box-sizing: border-box;

	display: flex;
	align-items: center;
	justify-content: center;
}

.pop-media-wrap img,
.pop-media-wrap video {
	display: block;
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain;
	cursor: zoom-in;
	position: relative;
}

.pop-body {
	flex: 0 0 auto;
	font-size: var(--mv-modal-body-font-size);
	max-height: calc(var(--mv-modal-body-font-size) * var(--mv-modal-body-line-height) * var(--mv-modal-body-lines));
	overflow-y: auto;
	padding-right: 4px;
	line-height: var(--mv-modal-body-line-height);
}

.pop-body.line_5 {
	--mv-modal-body-lines: 5;
}

.pop-body.line_6 {
	--mv-modal-body-lines: 6;
}

.pop-body.line_7 {
	--mv-modal-body-lines: 7;
}

.pop-body.line_8 {
	--mv-modal-body-lines: 8;
}

.pop-body.line_9 {
	--mv-modal-body-lines: 9;
}

.pop-body.line_auto {
	max-height: none;
}

/* 閉じるボタン */
.mv-modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	background: #f3f3f3;
	border: 3px solid #333;
	border-radius: 50%;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0;
	line-height: 1;
}

.mv-modal__close svg {
	width: 20px;
	height: 20px;
	transition: transform 0.15s ease-out;
}

.mv-modal__close:hover {
	background: #e8e8e8;
}

.mv-modal__close:hover svg {
	transform: scale(1.2);
}

/* ======================================================================== */
/*   画像・動画 拡大モーダル（mvZoomModal） - プレミアムふわっと版         */
/* ======================================================================== */

.mv-zoom-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;

	/* display は使わない */
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;

	background-color: rgba(0, 0, 0, 0.0);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	/* 背景フェードは速め */
	transition:
		opacity 0.35s ease-out,
		background-color 0.35s ease-out,
		visibility 0.35s ease-out;
}

.mv-zoom-modal.is-open {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.85);
	visibility: visible;
	pointer-events: auto;
}

/* ------------------------------
   コンテンツ（白い枠）
   ------------------------------ */

.mv-zoom-content {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 90vw;
	max-height: 90vh;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;

	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	transform: scale(0.88);

	transition:
		opacity 0.45s cubic-bezier(.16, .68, .43, 1.02),
		transform 0.45s cubic-bezier(.16, .68, .43, 1.02);

	transition-delay: 0.05s;
	padding: 50px;
}

.mv-zoom-modal.is-open .mv-zoom-content {
	opacity: 1;
	transform: scale(1);
	transition-delay: 0.05s;
	/* 開くときにだけ 0.05 秒遅らせる */
}

.mv-zoom-content img,
.mv-zoom-content video {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	height: 100%;
	width: 100%;
}

.mv-modal__close.mv-zoom-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}

/* ================================================================================ */
/*		model-viewer座標ピック																	*/
/* ================================================================================ */

/* 座標ピック用の簡易パネル */
.mv-probe {
	position: fixed;
	right: 12px;
	bottom: 12px;
	width: min(325px, 90vw);
	background: rgba(0, 0, 0, .75);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 10px;
	padding: 10px 12px;
	z-index: 10000;
	font-size: 12px;
	line-height: 1.5;
	-webkit-user-select: text;
	user-select: text;
}

.mv-probe__btn {
	display: inline-block;
	padding: 6px 10px;
	border-radius: 8px;
	border: 1px solid #ddd;
	background: #f5f5f5;
	color: #111;
	cursor: pointer;
	font-weight: 700;
	margin-bottom: 8px;
}

.mv-probe__out {
	margin: 0;
	white-space: pre-wrap;
	word-break: break-all;
	background: rgba(255, 255, 255, .08);
	border-radius: 6px;
	padding: 8px;
}

.mv-probe__help {
	opacity: .8;
}

@media screen and (max-width: 640px) {
	.mv-probe {
		display: none;
	}
}

/* ================================================================================ */
/*		border																	*/
/* ================================================================================ */
.border1 {
	border: 1px solid #000;
}


/* ================================================================================ */
/*		media screen																	*/
/* ================================================================================ */

@media screen and (max-width: 1250px) {
	/*	----	PAGE	----	*/

}

@media screen and (max-width: 1150px) {
	/*	----	PAGE	----	*/
}

@media screen and (max-width: 960px) {}

@media screen and (max-width: 910px) {
	/*	----	PAGE	----	*/
}

@media screen and (max-width: 896px) {
	/*	----	PAGE	----	*/
}

@media screen and (max-width: 830px) {
	/*	----	PAGE	----	*/
}

@media screen and (max-width: 768px) {
	/*	----	PAGE	----	*/
}

@media screen and (max-width: 701px) {
	/*	----	PAGE	----	*/
}

@media screen and (max-width: 640px) {
	/*	----	PAGE	----	*/
}

@media screen and (max-width: 559px) {
	/*	----	PAGE	----	*/
}

@media screen and (max-width: 480px) {
	/*	----	PAGE	----	*/

}