@charset "UTF-8";
/*-----------------------------------------------------------
		font
-----------------------------------------------------------*/
/*-----------------------------------------------------------
		リセット
-----------------------------------------------------------*/
html {
	overflow-y: scroll;
}

fieldset, img {
	border: none;
	vertical-align: top;
}

ul, ol {
	list-style-type: none;
}

address, caption, cite, code, dfn, em, var {
	font-style: normal;
}

caption, th {
	text-align: left;
}

a {
	outline: none;
}

h1, h2, h3, h4, h5, h6,
html, body, div,
p, ul, ol, li, dl, dt, dd,
pre, blockquote,
form, fieldset, input, textarea,
table, th, td, figure {
	margin: 0;
	padding: 0;
}

/*-----------------------------------------------------------
		初期設定
-----------------------------------------------------------*/
:root {
	color: #12456D;
	font-size: 0.465vw;
}
@media (max-width: 859px) {
	:root {
		font-size: 10px;
	}
}
@media (max-width: 639px) {
	:root {
		font-size: 1vw;
	}
}
@media (max-width: 859px) {
	:root {
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
}

body {
	color: #12456D;
	line-height: 1.5;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 1.6rem;
	word-wrap: break-word;
	font-weight: 400;
}
@media (max-width: 859px) {
	body {
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
}
@media (max-width: 639px) {
	body {
		font-size: 3.75vw;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}

img {
	max-width: 100%;
}

button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
}

a {
	text-decoration: none;
	color: #12456D;
}
@media (min-width: 1100px) {
	a:hover {
		color: #12456D;
		text-decoration: underline;
	}
	a:visited {
		color: #12456D;
	}
	a:active {
		text-decoration: none;
	}
}

q:before, q:after {
	content: "";
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*-----------------------------------------------------------
		フォームタグ設定
-----------------------------------------------------------*/
[type=text], [type=email], [type=tel], [type=password], [type=number], [type=search], [type=date], textarea, select {
	padding: 0.75em 1em;
	box-sizing: border-box;
	border: 1px solid #C3C3C4;
	border-radius: 1rem;
}

select {
	max-width: 100%;
	padding: 0.75em 3em 0.75em 1em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #C3C3C4;
	border-radius: 1rem;
	background: #fff url("../img/common/arrow.svg") right center/auto 100% no-repeat;
}

select::-ms-expand {
	display: none;
}

[type=text], [type=email], [type=tel], [type=password], [type=submit], [type=number], [type=search], [type=date], textarea, button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

[type=text]:focus, [type=email]:focus, [type=password]:focus, [type=number]:focus, [type=search]:focus, [type=date]:focus, textarea:focus {
	background: #fff;
	border: 1px solid #aaa;
}

button {
	cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=checkbox] + label,
input[type=radio] + label,
[type=radio] + .mwform-radio-field-text,
[type=checkbox] + .mwform-checkbox-field-text {
	display: inline-block;
	position: relative;
	padding-left: 2em;
}
input[type=checkbox] + label:before, input[type=checkbox] + label:after,
input[type=radio] + label:before,
input[type=radio] + label:after,
[type=radio] + .mwform-radio-field-text:before,
[type=radio] + .mwform-radio-field-text:after,
[type=checkbox] + .mwform-checkbox-field-text:before,
[type=checkbox] + .mwform-checkbox-field-text:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	box-sizing: border-box;
	border-radius: 0.5rem;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before,
[type=radio] + .mwform-radio-field-text:before,
[type=checkbox] + .mwform-checkbox-field-text:before {
	left: 0px;
	width: 1.25em;
	height: 1.25em;
	border: 1px solid #C3C3C4;
	background-color: #fff;
}
input[type=checkbox] + label.single,
input[type=radio] + label.single,
[type=radio] + .mwform-radio-field-text.single,
[type=checkbox] + .mwform-checkbox-field-text.single {
	height: 1.25em;
	padding-left: 1.25em;
}

input[type=radio] + label:before, input[type=radio] + label:after,
[type=radio] + .mwform-radio-field-text:before,
[type=radio] + .mwform-radio-field-text:after {
	border-radius: 50%;
}

input[type=checkbox]:checked + label:after,
[type=checkbox]:checked + .mwform-checkbox-field-text:after {
	border-radius: 0.4rem;
}

input[type=checkbox]:checked + label:after,
input[type=radio]:checked + label:after,
[type=checkbox]:checked + .mwform-checkbox-field-text:after,
[type=radio]:checked + .mwform-radio-field-text:after {
	left: 3px;
	width: -webkit-calc(1.25em - 6px);
	width: calc(1.25em - 6px);
	height: -webkit-calc(1.25em - 6px);
	height: calc(1.25em - 6px);
	background-color: #12456D;
}

/*-----------------------------------------------------------
		スクロールバー設定
-----------------------------------------------------------*/
:-moz-placeholder {
	color: #BABABA;
}
:placeholder-shown {
	color: #BABABA;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
	color: #BABABA;
}

/* Firefox 18- */
:-moz-placeholder {
	color: #BABABA;
	opacity: 1;
}

/* Firefox 19+ */
::-moz-placeholder {
	color: #BABABA;
	opacity: 1;
}

/* IE 10+ */
:-ms-input-placeholder {
	color: #BABABA;
}

/*-----------------------------------------------------------
		基本レイアウト
-----------------------------------------------------------*/
body, html {
	position: relative;
	height: 100%;
	background: url(../img/common/bg.webp);
}
body.fuji, html.fuji {
	background-image: url(../img/fuji/bg.webp);
}
body.forest, html.forest {
	background-image: url(../img/forest/bg.webp);
}
body.international, html.international {
	background-image: url(../img/international/bg.webp);
}
body.colla, html.colla {
	background-image: url(../img/colla/bg.webp);
}

.linkbox {
	cursor: pointer;
}

.sp {
	display: none;
}
@media (max-width: 639px) {
	.sp {
		display: inherit;
	}
}

@media (max-width: 639px) {
	.spnone {
		display: none !important;
	}
}

.tb {
	display: none;
}
@media (max-width: 859px) {
	.tb {
		display: inherit;
	}
}

@media (max-width: 859px) {
	.tbnone {
		display: none !important;
	}
}

@media (max-width: 859px) {
	.pc {
		display: none !important;
	}
}

@-webkit-keyframes marker-bounce {
	0%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

@keyframes marker-bounce {
	0%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
/*----------------------- TOP大枠 --------------------------*/
.areamap {
	position: relative;
	width: 100%;
	min-height: 100dvh;
	overflow: hidden;
}
.areamap .bg {
	padding-top: 6.2rem;
}
.areamap .bg header {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 2000;
	width: 100%;
	background-color: #fff;
}
.areamap .bg header .logo {
	width: 34%;
}
.areamap .bg header .nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.areamap .bg header .nav .questionary {
	margin-right: 1em;
}
.areamap .bg header .nav .questionary a {
	display: block;
	padding: 0.75em 2em;
	border: 1px solid #12456D;
	border-radius: 0.35em;
	color: #12456D;
	text-align: center;
	text-decoration: none;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.25;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
@media (min-width: 1100px) {
	.areamap .bg header .nav .questionary a:hover {
		background-color: #12456D;
		color: #fff;
	}
}
.areamap .bg header .nav .back {
	height: 100%;
}
.areamap .bg header .nav .back a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 38rem;
	height: 100%;
	padding: 0 3rem;
	background-color: #99c059;
	box-sizing: border-box;
}
.areamap .bg header .pulldown {
	position: relative;
}
.areamap .bg header .pulldown a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 16.5em;
	padding: 0.72em 0;
	text-decoration: none;
	color: #fff;
	font-size: 2rem;
	box-sizing: border-box;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.areamap .bg header .pulldown a.color1 {
	background-color: #3b5789;
	border: 1px solid #3b5789;
}
@media (min-width: 1100px) {
	.areamap .bg header .pulldown a.color1:hover {
		background-color: #fff;
		color: #3b5789;
	}
}
.areamap .bg header .pulldown a.color2 {
	background-color: #419ec4;
	border: 1px solid #419ec4;
}
@media (min-width: 1100px) {
	.areamap .bg header .pulldown a.color2:hover {
		background-color: #fff;
		color: #419ec4;
	}
}
.areamap .bg header .pulldown a.color3 {
	background-color: #99c059;
	border: 1px solid #99c059;
}
@media (min-width: 1100px) {
	.areamap .bg header .pulldown a.color3:hover {
		background-color: #fff;
		color: #99c059;
	}
}
.areamap .bg header .pulldown a.color4 {
	background-color: #dfa045;
	border: 1px solid #dfa045;
}
@media (min-width: 1100px) {
	.areamap .bg header .pulldown a.color4:hover {
		background-color: #fff;
		color: #dfa045;
	}
}
.areamap .bg header .pulldown ul {
	position: absolute;
	left: 0;
	top: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.areamap .bg header .pulldown:hover ul {
	visibility: visible;
	opacity: 1;
}
.areamap .bg header .btn {
	display: none;
}
.areamap .bg header .btn a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 16.5em;
	height: 100%;
	text-decoration: none;
	color: #fff;
	font-size: 2rem;
	box-sizing: border-box;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.areamap .bg header.is-single .nav {
	display: none;
}
.areamap .bg header.is-single .btn {
	display: block;
}
.areamap .bg .title {
	position: absolute;
	top: -webkit-calc(2vw + 8.5rem);
	top: calc(2vw + 8.5rem);
	left: 2vw;
	z-index: 10;
}
.areamap .bg .title img {
	height: 3.2rem;
}
.areamap .bg .title span {
	display: block;
	margin-top: 0.5em;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
}
.areamap .bg .title.company {
	padding-bottom: 1.25em;
	background-color: #fff;
	border-radius: 1rem;
	overflow: hidden;
}
.areamap .bg .title.company span {
	display: block;
	margin: 0;
}
.areamap .bg .title.company .label {
	padding: 1.25rem 2rem;
	background-color: #99c059;
}
.areamap .bg .title.company .label img {
	display: block;
	height: 1.4rem;
	margin: 0 auto;
}
.areamap .bg .title.company .logo {
	padding: 2rem 3rem 0;
}
.areamap .bg .title.company .logo img {
	display: block;
	max-height: 4rem;
	max-width: 40rem;
	height: auto;
	margin: 0 auto;
}
.areamap .bg .title.company .name {
	margin: 0.25em 2em;
	text-align: center;
	color: #12456D;
	font-size: 1.6rem;
}
.areamap .bg .balloon {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	-webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
	transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
	-webkit-perspective: 100rem;
	perspective: 100rem;
}
.areamap .bg .balloon.new .icon svg {
	fill: #f15c3a !important;
}
.areamap .bg .balloon.is-active {
	visibility: visible;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.areamap .bg .balloon .icon,
.areamap .bg .balloon .linkbtn {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
	transition: opacity 0.2s, -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
	transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.2s;
	transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.2s, -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.areamap .bg .balloon .icon {
	display: block;
	width: 4rem;
	-webkit-transform-origin: center;
	transform-origin: center;
	opacity: 1;
	-webkit-animation: marker-bounce 0.8s ease-in-out infinite;
	animation: marker-bounce 0.8s ease-in-out infinite;
}
.areamap .bg .balloon .icon svg {
	fill: #99c059;
}
.areamap .bg .balloon:nth-child(1) .icon {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.areamap .bg .balloon:nth-child(2) .icon {
	-webkit-animation-delay: 0.15s;
	animation-delay: 0.15s;
}
.areamap .bg .balloon:nth-child(3) .icon {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.areamap .bg .balloon:nth-child(4) .icon {
	-webkit-animation-delay: 0.45s;
	animation-delay: 0.45s;
}
.areamap .bg .balloon:nth-child(5) .icon {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.areamap .bg .balloon:nth-child(6) .icon {
	-webkit-animation-delay: 0.75s;
	animation-delay: 0.75s;
}
.areamap .bg .balloon:nth-child(7) .icon {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}
.areamap .bg .balloon:nth-child(8) .icon {
	-webkit-animation-delay: 1.05s;
	animation-delay: 1.05s;
}
.areamap .bg .balloon:nth-child(9) .icon {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}
.areamap .bg .balloon:nth-child(10) .icon {
	-webkit-animation-delay: 1.35s;
	animation-delay: 1.35s;
}
.areamap .bg .balloon:nth-child(11) .icon {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}
.areamap .bg .balloon:nth-child(12) .icon {
	-webkit-animation-delay: 1.65s;
	animation-delay: 1.65s;
}
.areamap .bg .balloon:nth-child(13) .icon {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}
.areamap .bg .balloon:nth-child(14) .icon {
	-webkit-animation-delay: 1.95s;
	animation-delay: 1.95s;
}
.areamap .bg .balloon:nth-child(15) .icon {
	-webkit-animation-delay: 2.1s;
	animation-delay: 2.1s;
}
.areamap .bg .balloon:nth-child(16) .icon {
	-webkit-animation-delay: 2.25s;
	animation-delay: 2.25s;
}
.areamap .bg .balloon:nth-child(17) .icon {
	-webkit-animation-delay: 2.4s;
	animation-delay: 2.4s;
}
.areamap .bg .balloon:nth-child(18) .icon {
	-webkit-animation-delay: 2.55s;
	animation-delay: 2.55s;
}
.areamap .bg .balloon:nth-child(19) .icon {
	-webkit-animation-delay: 2.7s;
	animation-delay: 2.7s;
}
.areamap .bg .balloon:nth-child(20) .icon {
	-webkit-animation-delay: 2.85s;
	animation-delay: 2.85s;
}
.areamap .bg .balloon:nth-child(21) .icon {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}
.areamap .bg .balloon:nth-child(22) .icon {
	-webkit-animation-delay: 3.15s;
	animation-delay: 3.15s;
}
.areamap .bg .balloon:nth-child(23) .icon {
	-webkit-animation-delay: 3.3s;
	animation-delay: 3.3s;
}
.areamap .bg .balloon:nth-child(24) .icon {
	-webkit-animation-delay: 3.45s;
	animation-delay: 3.45s;
}
.areamap .bg .balloon:nth-child(25) .icon {
	-webkit-animation-delay: 3.6s;
	animation-delay: 3.6s;
}
.areamap .bg .balloon:nth-child(26) .icon {
	-webkit-animation-delay: 3.75s;
	animation-delay: 3.75s;
}
.areamap .bg .balloon:nth-child(27) .icon {
	-webkit-animation-delay: 3.9s;
	animation-delay: 3.9s;
}
.areamap .bg .balloon:nth-child(28) .icon {
	-webkit-animation-delay: 4.05s;
	animation-delay: 4.05s;
}
.areamap .bg .balloon:nth-child(29) .icon {
	-webkit-animation-delay: 4.2s;
	animation-delay: 4.2s;
}
.areamap .bg .balloon:nth-child(30) .icon {
	-webkit-animation-delay: 4.35s;
	animation-delay: 4.35s;
}
.areamap .bg .balloon:nth-child(31) .icon {
	-webkit-animation-delay: 4.5s;
	animation-delay: 4.5s;
}
.areamap .bg .balloon:nth-child(32) .icon {
	-webkit-animation-delay: 4.65s;
	animation-delay: 4.65s;
}
.areamap .bg .balloon:nth-child(33) .icon {
	-webkit-animation-delay: 4.8s;
	animation-delay: 4.8s;
}
.areamap .bg .balloon:nth-child(34) .icon {
	-webkit-animation-delay: 4.95s;
	animation-delay: 4.95s;
}
.areamap .bg .balloon:nth-child(35) .icon {
	-webkit-animation-delay: 5.1s;
	animation-delay: 5.1s;
}
.areamap .bg .balloon:nth-child(36) .icon {
	-webkit-animation-delay: 5.25s;
	animation-delay: 5.25s;
}
.areamap .bg .balloon:nth-child(37) .icon {
	-webkit-animation-delay: 5.4s;
	animation-delay: 5.4s;
}
.areamap .bg .balloon:nth-child(38) .icon {
	-webkit-animation-delay: 5.55s;
	animation-delay: 5.55s;
}
.areamap .bg .balloon:nth-child(39) .icon {
	-webkit-animation-delay: 5.7s;
	animation-delay: 5.7s;
}
.areamap .bg .balloon:nth-child(40) .icon {
	-webkit-animation-delay: 5.85s;
	animation-delay: 5.85s;
}
.areamap .bg .balloon .linkbtn {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 10;
	width: 37.5rem;
	min-height: 9rem;
	margin-left: -18.75rem;
	padding: 0.5em 3em 0.5em 1em;
	border-radius: 1rem;
	background-color: #fff;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
	font-size: 2.3rem;
	color: #000;
	line-height: 1.1;
	font-weight: 500;
	text-decoration: none;
	box-sizing: border-box;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-webkit-transform-origin: center;
	transform-origin: center;
	opacity: 0;
	pointer-events: none;
}
.areamap .bg .balloon .linkbtn span {
	font-weight: 700;
	color: #c40018;
	margin-right: 0.5em;
}
.areamap .bg .balloon .linkbtn::after {
	content: "";
	display: block;
	position: absolute;
	right: 1em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1em;
	aspect-ratio: 1/1;
	background: center/100% no-repeat;
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iX+e5ne+9rOe5p++9pOe5ne+9pOe5ne+9vF8xIiBkYXRhLW5hbWU9Iue5ne+9rOe5p++9pOe5ne+9pOe5ne+9vCAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMS45OCAyMS45OCI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogI2ZmZjsKICAgICAgfQoKICAgICAgLmNscy0yIHsKICAgICAgICBmaWxsOiAjOTljMDU5OwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICA8Y2lyY2xlIGNsYXNzPSJjbHMtMiIgY3g9IjEwLjk5IiBjeT0iMTAuOTkiIHI9IjEwLjk5Ii8+CiAgPHBvbHlnb24gY2xhc3M9ImNscy0xIiBwb2ludHM9IjE1LjY2IDEwLjk5IDguOSAxNi4xOSA4LjkgNS43OSAxNS42NiAxMC45OSIvPgo8L3N2Zz4=");
}
.areamap .bg .balloon .linkbtn::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	bottom: -1.8rem;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
	border-width: 1rem 0.6rem;
}
.areamap .bg .balloon:hover {
	z-index: 30;
}
.areamap .bg .balloon:hover .icon {
	-webkit-transform: translateX(-50%) rotateY(180deg);
	transform: translateX(-50%) rotateY(180deg);
	opacity: 0;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
.areamap .bg .balloon:hover .linkbtn {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
	opacity: 1;
	pointer-events: auto;
}
.areamap .bg .good {
	position: absolute;
	width: 25rem;
}

.positionbox {
	position: relative;
	aspect-ratio: 21/9.3;
	background: center/cover no-repeat;
}

.modalbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-align-content: flex-start;
	align-content: flex-start;
	position: fixed;
	left: 0;
	top: 100%;
	z-index: 300;
	width: 100%;
	height: 100dvh;
	background-color: #fff;
	-webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
	transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
	overflow: auto;
}
.modalbox::-webkit-scrollbar {
	width: 1rem;
}
.modalbox::-webkit-scrollbar-thumb {
	border-radius: 0;
}
.modalbox.is-active {
	top: 6.1rem;
}
.modalbox .side {
	width: 43rem;
	padding: 5rem;
	box-sizing: border-box;
}
.modalbox .side .area img, .modalbox .side .label img {
	height: 2rem;
}
.modalbox .side .area {
	text-align: center;
}
.modalbox .side .logo {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin-top: 3rem;
	height: 6rem;
	text-align: center;
}
.modalbox .side .logo img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.modalbox .side .name {
	margin-top: 0.5em;
	font-size: 2rem;
	text-align: center;
	font-weight: 600;
}
.modalbox .side .btns {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-top: 3rem;
}
.modalbox .side .btns .web a, .modalbox .side .btns .contact a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	padding: 0.75em 0;
	border-radius: 1.3rem;
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	box-shadow: 0.13rem 0.13rem 0.25rem rgba(0, 0, 0, 0.1);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.modalbox .side .btns .web a::before, .modalbox .side .btns .contact a::before {
	content: "";
	display: block;
	margin-right: 0.5em;
	width: 3.2rem;
	aspect-ratio: 1/1;
	background: center/100% no-repeat;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.modalbox .side .btns .web a span, .modalbox .side .btns .contact a span {
	font-size: 0.82em;
}
@media (min-width: 1100px) {
	.modalbox .side .btns .web a:hover, .modalbox .side .btns .contact a:hover {
		color: #DA3831;
	}
}
.modalbox .side .btns .web {
	width: 48%;
}
.modalbox .side .btns .web a::before {
	background-image: url(../img/common/link_web_w.svg);
}
@media (min-width: 1100px) {
	.modalbox .side .btns .web a:hover::before {
		background-image: url(../img/common/link_web.svg);
	}
}
.modalbox .side .btns .web + .contact {
	width: 48%;
}
.modalbox .side .btns .contact {
	width: 100%;
}
.modalbox .side .btns .contact a::before {
	background-image: url(../img/common/link_mail_w.svg);
}
@media (min-width: 1100px) {
	.modalbox .side .btns .contact a:hover::before {
		background-image: url(../img/common/link_mail.svg);
	}
}
.modalbox .side .pagenav {
	margin-top: 3rem;
}
.modalbox .side .pagenav li {
	position: relative;
	border-bottom: 1px solid;
	-webkit-border-image: -webkit-gradient(linear, left top, right top, from(#e8eaeb), to(#cfd0d0)) 1;
	-webkit-border-image: -webkit-linear-gradient(left, #e8eaeb, #cfd0d0) 1;
	-o-border-image: linear-gradient(90deg, #e8eaeb, #cfd0d0) 1;
	border-image: -webkit-gradient(linear, left top, right top, from(#e8eaeb), to(#cfd0d0)) 1;
	border-image: linear-gradient(90deg, #e8eaeb, #cfd0d0) 1;
	font-size: 1.8rem;
}
.modalbox .side .pagenav li a {
	display: block;
	padding: 0.75em 1.75em 0.75em 0.5em;
	font-weight: 500;
	text-decoration: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.modalbox .side .pagenav li span {
	position: absolute;
	right: 0;
	top: 0.5em;
	width: 2em;
	aspect-ratio: 1/1;
	cursor: pointer;
}
.modalbox .side .pagenav li span::before, .modalbox .side .pagenav li span::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #12456D;
}
.modalbox .side .pagenav li span::before {
	width: 50%;
	height: 2px;
}
.modalbox .side .pagenav li span::after {
	width: 2px;
	height: 50%;
}
.modalbox .side .pagenav li span.is-open::after {
	display: none;
}
.modalbox .side .pagenav li span.is-open + ul {
	display: block;
}
.modalbox .side .pagenav li ul {
	display: none;
	padding-left: 1em;
	padding-bottom: 0.5em;
}
.modalbox .side .pagenav li ul li {
	border: none;
}
.modalbox .side .label {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-top: 4rem;
	cursor: pointer;
}
.modalbox .side .label span {
	display: block;
	position: relative;
	width: 1.5em;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: #fff;
}
.modalbox .side .label span::before, .modalbox .side .label span::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.modalbox .side .label span::before {
	width: 50%;
	height: 2px;
}
.modalbox .side .label span::after {
	width: 2px;
	height: 50%;
}
.modalbox .side .label.is-open span::after {
	display: none;
}
.modalbox .side .change {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.modalbox .side .change.is-open {
	visibility: visible;
	opacity: 1;
}
.modalbox .side .change li {
	margin-top: 1rem;
}
.modalbox .side .change li a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	font-size: 2.1rem;
	font-weight: 700;
	text-decoration: none;
}
.modalbox .side .change li a::before {
	content: "";
	display: block;
	width: 2.15em;
	margin-right: 0.5em;
	aspect-ratio: 45/25;
	border-radius: 0.85rem;
	background: center/23% auto no-repeat;
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iX+e5ne+9rOe5p++9pOe5ne+9pOe5ne+9vF8xIiBkYXRhLW5hbWU9Iue5ne+9rOe5p++9pOe5ne+9pOe5ne+9vCAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMC4yNCAxMC4yNCI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogI2ZmZjsKICAgICAgfQogICAgPC9zdHlsZT4KICA8L2RlZnM+CiAgPGcgaWQ9Il/nuafvvbDnuZ3vvavnuZ3vvbznuZ3oqokyMDE5IiBkYXRhLW5hbWU9Iue5p++9sOe5ne+9q+e5ne+9vOe5neODuzIwMTkiPgogICAgPHBhdGggaWQ9Il/nuZ3ku6PjgZtfMTAiIGRhdGEtbmFtZT0i57md5Luj44GbIDEwIiBjbGFzcz0iY2xzLTEiIGQ9Ik01LjEyLDBsLjkzLjkzLTMuNTIsMy41M2g3LjcydjEuMzNIMi41MnMzLjUzLDMuNTMsMy41MywzLjUzbC0uOTMuOTNMMCw1LjEyLDUuMTIsMFoiLz4KICA8L2c+Cjwvc3ZnPg==");
}
.modalbox .side .change li a.color1::before {
	background-color: #3b5789;
}
.modalbox .side .change li a.color2::before {
	background-color: #419ec4;
}
.modalbox .side .change li a.color3::before {
	background-color: #99c059;
}
.modalbox .side .change li a.color4::before {
	background-color: #dfa045;
}
.modalbox .singlebox {
	position: -webkit-sticky;
	position: sticky;
	top: 5rem;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	height: -webkit-calc(100% - 13rem);
	height: calc(100% - 13rem);
	margin: 5rem 2.5rem 0 0;
	padding: 0 2.5rem 5rem 0;
	box-sizing: border-box;
	overflow: auto;
}
.modalbox .singlebox::-webkit-scrollbar {
	width: 1rem;
}
.modalbox .singlebox::-webkit-scrollbar-thumb {
	border-radius: 0;
}
.modalbox .content {
	display: none;
}
.modalbox .content.is-active {
	display: block;
}
.modalbox .content .block + .block {
	margin-top: 5rem;
}
.modalbox .content .block .headbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	padding-bottom: 2.8rem;
	background: url(../img/common/blockbg1.webp) center bottom/100% no-repeat;
}
.modalbox .content .block .headbox h2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	font-size: 3rem;
	font-weight: 500;
	box-sizing: border-box;
	white-space: nowrap;
}
.modalbox .content .block .headbox h2 span {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	min-height: 9.2rem;
	padding-right: 2.5em;
	margin-right: -1px;
	background: url(../img/common/blockbg.webp) right bottom/auto 100% no-repeat;
}
.modalbox .content .block .headbox .catch {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	min-height: 9.2rem;
	padding-right: 2.5em;
	border-radius: 0 3rem 0 0;
	background-color: #fff;
	line-height: 1.25;
	font-weight: 600;
}
.modalbox .content .block .inbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 3rem 5rem 5rem;
	background-color: #fff;
	border-radius: 0 0 2.7rem 2.7rem;
}
.modalbox .content .block .inbox .catalog {
	width: 23.5%;
}
.modalbox .content .block .inbox .catalog figure {
	border-radius: 1rem;
	overflow: hidden;
}
.modalbox .content .block .inbox .catalog h3 {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	margin-top: 1.25em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #2d476b;
	font-size: 2.4rem;
	font-weight: 500;
}
.modalbox .content .block .inbox .catalog h3::before {
	content: "";
	display: block;
	width: 1.84em;
	aspect-ratio: 1/1;
	margin-right: 0.5em;
}
.modalbox .content .block .inbox .catalog ul {
	margin-top: 1em;
	font-size: 2rem;
}
.modalbox .content .block .inbox .catalog ul li + li {
	margin-top: 0.5em;
}
.modalbox .content .block .inbox .catalog ul li a {
	display: block;
	font-weight: 500;
	text-decoration: none;
}
.modalbox .content .block .inbox .catalog ul li a::before {
	content: "▶︎";
	margin-right: 0.25em;
}
.modalbox .content .block .inbox .catalog ul li a:hover {
	color: #DA3831;
}
.modalbox .content .block .inbox .linkbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 70%;
	margin-top: -2rem;
}
.modalbox .content .block .inbox .linkbox .itembox {
	width: 48%;
}
.modalbox .content .block .inbox .linkbox h3 {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	padding-bottom: 0.25em;
	font-size: 2.6rem;
	font-weight: 500;
	border-bottom: 1px solid #3b5789;
}
.modalbox .content .block .inbox .linkbox h3::before {
	content: "";
	display: block;
	width: 1.84em;
	aspect-ratio: 1/1;
	margin-right: 0.5em;
	background: url(../img/common/catalog.svg) center/100% no-repeat;
}
.modalbox .content .block .inbox .linkbox h3.cicon::before {
	background: url(../img/colla/catalog.svg) center/100% no-repeat;
}
.modalbox .content .block .inbox .linkbox h3.wicon::before {
	background: url(../img/colla/web.svg) center/100% no-repeat;
}
.modalbox .content .block .inbox .linkbox ul {
	margin-top: 1em;
	font-size: 2rem;
}
.modalbox .content .block .inbox .linkbox ul li + li {
	margin-top: 0.5em;
}
.modalbox .content .block .inbox .linkbox ul li a {
	display: block;
	font-weight: 500;
	text-decoration: none;
}
.modalbox .content .block .inbox .linkbox ul li a::before {
	content: "▶︎";
	margin-right: 0.25em;
}
.modalbox .content .block .inbox .linkbox ul li a:hover {
	color: #DA3831;
}
.modalbox .content .block .inbox .movie {
	width: 70%;
	margin-top: -2rem;
}
.modalbox .content .block .inbox .movie h3 {
	font-size: 2.6rem;
	font-weight: 500;
}
.modalbox .content .block .inbox .movie .items {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 5rem;
	margin-top: 2rem;
}
.modalbox .content .block .inbox .movie .items .item {
	width: -webkit-calc((100% - 5rem) / 2);
	width: calc((100% - 5rem) / 2);
}
.modalbox .content .block .inbox .movie .items .item figure {
	position: relative;
	border-radius: 1.8rem;
	overflow: hidden;
	border: 0.37rem solid #fff;
	box-shadow: 0.4rem 0.4rem 1rem rgba(0, 0, 0, 0.2);
}
.modalbox .content .block .inbox .movie .items .item figure::after {
	content: "";
	display: block;
	position: absolute;
	right: 3rem;
	bottom: 3rem;
	width: 7.5rem;
	aspect-ratio: 1/1;
	background: url(../img/common/play.svg) center/100% no-repeat;
}
.modalbox .content .block .inbox .movie .items .item figure img {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.modalbox .content .block .inbox .movie .items .item figure a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.modalbox .content .block .inbox .movie .items .item .name {
	margin-top: 0.75em;
	font-size: 2.6rem;
	font-weight: 500;
}
.modalbox .content .block .inbox .linkarea {
	margin-top: 4rem;
	padding: 1em;
	border: 1px solid #3b5789;
	text-align: center;
}
.modalbox .content .block .inbox .linkarea .comment {
	font-weight: 600;
}
.modalbox .content .block .inbox .linkarea .logo {
	margin-top: 1em;
}
.modalbox .content .block .inbox .linkarea .logo img {
	max-width: 24rem;
	max-height: 9rem;
}
.modalbox .content .block .inbox .linkarea .logo figcaption {
	margin-top: 0.75em;
}

.fuji header .btn a {
	background-color: #3b5789;
	border: 1px solid #3b5789;
}
@media (min-width: 1100px) {
	.fuji header .btn a:hover {
		background-color: #fff;
		color: #3b5789;
	}
}
.fuji .areamap .bg .balloon .icon {
	width: 3rem;
}
.fuji .areamap .bg .balloon .icon svg {
	fill: #3b5789;
	overflow: visible;
	-webkit-filter: drop-shadow(0 0 1px rgb(255, 255, 255));
	filter: drop-shadow(0 0 1px rgb(255, 255, 255));
}
.fuji .areamap .bg .balloon .linkbtn::after {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMS45OCAyMS45OCI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogI2ZmZjsKICAgICAgfQoKICAgICAgLmNscy0yIHsKICAgICAgICBmaWxsOiAjM2I1Nzg5OwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICAgIDxjaXJjbGUgY2xhc3M9ImNscy0yIiBjeD0iMTAuOTkiIGN5PSIxMC45OSIgcj0iMTAuOTkiLz4KICAgIDxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIxNS42NiAxMC45OSA4LjkgMTYuMTkgOC45IDUuNzkgMTUuNjYgMTAuOTkiLz4KPC9zdmc+");
}
.fuji .modalbox {
	background-color: #daeef6;
}
.fuji .modalbox::-webkit-scrollbar-thumb {
	background-color: #3b5789;
}
.fuji .modalbox::-webkit-scrollbar-track {
	background-color: #daeef6;
}
.fuji .modalbox header .btn a {
	background-color: #3b5789;
	border: 1px solid #3b5789;
}
@media (min-width: 1100px) {
	.fuji .modalbox header .btn a:hover {
		background-color: #fff;
		color: #3b5789;
	}
}
.fuji .modalbox .side .pagenav li a.is-current {
	background-color: #3b5789;
	color: #fff;
}
@media (min-width: 1100px) {
	.fuji .modalbox .side .pagenav li a:hover {
		background-color: #3b5789;
		color: #fff;
	}
}
.fuji .modalbox .side .web a, .fuji .modalbox .side .contact a {
	background-color: #3b5789;
}
@media (min-width: 1100px) {
	.fuji .modalbox .side .web a:hover, .fuji .modalbox .side .contact a:hover {
		background-color: #fff;
	}
}
.fuji .modalbox .side .label span::before, .fuji .modalbox .side .label span::after {
	background-color: #3b5789;
}
.fuji .modalbox .content::-webkit-scrollbar-thumb {
	background-color: #3b5789;
}
.fuji .modalbox .content::-webkit-scrollbar-track {
	background-color: #daeef6;
}
.fuji .modalbox .content .block .inbox .catalog h3::before {
	background: url(../img/fuji/catalog.svg) center/100% no-repeat;
}
.fuji .modalbox .content .block .inbox .movie .items .item figure::after {
	background: url(../img/fuji/play.svg) center/100% no-repeat;
}

.forest header .btn a {
	background-color: #419ec4;
	border: 1px solid #419ec4;
}
@media (min-width: 1100px) {
	.forest header .btn a:hover {
		background-color: #fff;
		color: #419ec4;
	}
}
.forest .areamap .bg .balloon .icon svg {
	fill: #419ec4;
}
.forest .areamap .bg .balloon .linkbtn::after {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMS45OCAyMS45OCI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogI2ZmZjsKICAgICAgfQoKICAgICAgLmNscy0yIHsKICAgICAgICBmaWxsOiAjNDE5ZWM0OwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICAgIDxjaXJjbGUgY2xhc3M9ImNscy0yIiBjeD0iMTAuOTkiIGN5PSIxMC45OSIgcj0iMTAuOTkiLz4KICAgIDxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIxNS42NiAxMC45OSA4LjkgMTYuMTkgOC45IDUuNzkgMTUuNjYgMTAuOTkiLz4KPC9zdmc+");
}
.forest .modalbox {
	background-color: #e7f3f8;
}
.forest .modalbox::-webkit-scrollbar-thumb {
	background-color: #419ec4;
}
.forest .modalbox::-webkit-scrollbar-track {
	background-color: #e7f3f8;
}
.forest .modalbox header .btn a {
	background-color: #419ec4;
	border: 1px solid #419ec4;
}
@media (min-width: 1100px) {
	.forest .modalbox header .btn a:hover {
		background-color: #fff;
		color: #419ec4;
	}
}
.forest .modalbox .side .pagenav li a.is-current {
	background-color: #419ec4;
	color: #fff;
}
@media (min-width: 1100px) {
	.forest .modalbox .side .pagenav li a:hover {
		background-color: #419ec4;
		color: #fff;
	}
}
.forest .modalbox .side .web a, .forest .modalbox .side .contact a {
	background-color: #419ec4;
}
@media (min-width: 1100px) {
	.forest .modalbox .side .web a:hover, .forest .modalbox .side .contact a:hover {
		background-color: #fff;
	}
}
.forest .modalbox .side .label span::before, .forest .modalbox .side .label span::after {
	background-color: #419ec4;
}
.forest .modalbox .content::-webkit-scrollbar-thumb {
	background-color: #419ec4;
}
.forest .modalbox .content::-webkit-scrollbar-track {
	background-color: #e7f3f8;
}
.forest .modalbox .content .block .inbox .catalog h3::before {
	background: url(../img/forest/catalog.svg) center/100% no-repeat;
}
.forest .modalbox .content .block .inbox .movie .items .item figure::after {
	background: url(../img/forest/play.svg) center/100% no-repeat;
}

.international header .btn a {
	background-color: #dfa045;
	border: 1px solid #dfa045;
}
@media (min-width: 1100px) {
	.international header .btn a:hover {
		background-color: #fff;
		color: #dfa045;
	}
}
.international .areamap .bg .balloon .icon svg {
	fill: #dfa045;
}
.international .areamap .bg .balloon .linkbtn::after {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMS45OCAyMS45OCI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogI2ZmZjsKICAgICAgfQoKICAgICAgLmNscy0yIHsKICAgICAgICBmaWxsOiAjZGZhMDQ1OwogICAgICB9CiAgICA8L3N0eWxlPgogIDwvZGVmcz4KICAgIDxjaXJjbGUgY2xhc3M9ImNscy0yIiBjeD0iMTAuOTkiIGN5PSIxMC45OSIgcj0iMTAuOTkiLz4KICAgIDxwb2x5Z29uIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIxNS42NiAxMC45OSA4LjkgMTYuMTkgOC45IDUuNzkgMTUuNjYgMTAuOTkiLz4KPC9zdmc+");
}
.international .modalbox {
	background-color: #fdf9f3;
}
.international .modalbox::-webkit-scrollbar-thumb {
	background-color: #dfa045;
}
.international .modalbox::-webkit-scrollbar-track {
	background-color: #fdf9f3;
}
.international .modalbox header .btn a {
	background-color: #dfa045;
	border: 1px solid #dfa045;
}
@media (min-width: 1100px) {
	.international .modalbox header .btn a:hover {
		background-color: #fff;
		color: #dfa045;
	}
}
.international .modalbox .side .pagenav li a.is-current {
	background-color: #dfa045;
	color: #fff;
}
@media (min-width: 1100px) {
	.international .modalbox .side .pagenav li a:hover {
		background-color: #dfa045;
		color: #fff;
	}
}
.international .modalbox .side .web a, .international .modalbox .side .contact a {
	background-color: #dfa045;
}
@media (min-width: 1100px) {
	.international .modalbox .side .web a:hover, .international .modalbox .side .contact a:hover {
		background-color: #fff;
	}
}
.international .modalbox .side .label span::before, .international .modalbox .side .label span::after {
	background-color: #dfa045;
}
.international .modalbox .content::-webkit-scrollbar-thumb {
	background-color: #dfa045;
}
.international .modalbox .content::-webkit-scrollbar-track {
	background-color: #fdf9f3;
}
.international .modalbox .content .block .inbox .catalog h3::before {
	background: url(../img/international/catalog.svg) center/100% no-repeat;
}
.international .modalbox .content .block .inbox .movie .items .item figure::after {
	background: url(../img/international/play.svg) center/100% no-repeat;
}

.colla header .btn a {
	background-color: #99c059;
	border: 1px solid #99c059;
}
@media (min-width: 1100px) {
	.colla header .btn a:hover {
		background-color: #fff;
		color: #99c059;
	}
}
.colla .modalbox {
	background-color: #eef5e3;
}
.colla .modalbox::-webkit-scrollbar-thumb {
	background-color: #99c059;
}
.colla .modalbox::-webkit-scrollbar-track {
	background-color: #eef5e3;
}
.colla .modalbox .side .pagenav li a.is-current {
	background-color: #99c059;
	color: #fff;
}
@media (min-width: 1100px) {
	.colla .modalbox .side .pagenav li a:hover {
		background-color: #99c059;
		color: #fff;
	}
}
.colla .modalbox .side .web a, .colla .modalbox .side .contact a {
	background-color: #99c059;
}
@media (min-width: 1100px) {
	.colla .modalbox .side .web a:hover, .colla .modalbox .side .contact a:hover {
		background-color: #fff;
	}
}
.colla .modalbox .side .label span::before, .colla .modalbox .side .label span::after {
	background-color: #99c059;
}
.colla .modalbox .content::-webkit-scrollbar-thumb {
	background-color: #99c059;
}
.colla .modalbox .content::-webkit-scrollbar-track {
	background-color: #eef5e3;
}
.colla .modalbox .content .block .inbox .catalog h3::before {
	background: url(../img/colla/catalog.svg) center/100% no-repeat;
}
.colla .modalbox .content .block .inbox .movie .items .item figure::after {
	background: url(../img/colla/play.svg) center/100% no-repeat;
}

.collaboration {
	width: 100%;
	min-height: -webkit-calc(100dvh - 6.2rem);
	min-height: calc(100dvh - 6.2rem);
	padding: 3rem 10rem;
	background: url(../img/colla/collbg.webp) center/cover no-repeat;
	box-sizing: border-box;
}
.collaboration h2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	color: #fff;
	font-size: 1.8rem;
}
.collaboration h2 img {
	width: 38rem;
}
.collaboration h2 span {
	margin-left: 1em;
}
.collaboration .grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 4rem;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
	margin-top: 2rem;
}
.collaboration .grid .column {
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 2.5rem;
}
.collaboration .grid .panel {
	border: 3px solid #fff;
	border-radius: 1rem;
	background-color: rgba(255, 255, 255, 0.5);
}
.collaboration .grid .panel h3 {
	padding: 0.3em 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgb(235, 235, 235)), to(rgb(255, 255, 255)));
	background: -webkit-linear-gradient(top, rgb(235, 235, 235) 0%, rgb(255, 255, 255) 100%);
	background: linear-gradient(180deg, rgb(235, 235, 235) 0%, rgb(255, 255, 255) 100%);
	font-size: 2.4rem;
	color: #231815;
	text-align: center;
}
.collaboration .grid .panel h3 span {
	font-size: 0.76em;
}
.collaboration .grid .panel .btns {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding: 2rem 2.5rem;
}
.collaboration .grid .panel .btns li {
	width: -webkit-calc((100% - 1.5rem) / 2);
	width: calc((100% - 1.5rem) / 2);
}
.collaboration .grid .panel .btns li a {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	position: relative;
	height: 6.9rem;
	border-radius: 0.4rem;
	border: 1px solid #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(230, 230, 230)));
	background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(230, 230, 230) 100%);
	background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(230, 230, 230) 100%);
	box-shadow: 0.15rem 0.15rem 0.6rem rgba(0, 0, 0, 0.2);
	text-decoration: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.collaboration .grid .panel .btns li a::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: -webkit-calc(100% + 0.5em);
	bottom: calc(100% + 0.5em);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 21em;
	background: #333;
	color: #fff;
	padding: 0.75em 1em;
	border-radius: 0.35em;
	font-size: 1.2rem;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	z-index: 1000;
}
.collaboration .grid .panel .btns li a .img {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	height: 3rem;
	padding: 0 1.8rem;
	box-sizing: border-box;
}
.collaboration .grid .panel .btns li a .img img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.collaboration .grid .panel .btns li a .name {
	display: block;
	margin-top: 0.25em;
	font-weight: 600;
	font-size: 1.2rem;
	text-align: center;
	color: #231815;
}
.collaboration .grid .panel .btns li a .icon {
	position: absolute;
	right: 0.25rem;
	top: 0.25rem;
	color: #fff;
	display: block;
	padding: 0.5em;
	border-radius: 0.5em;
	font-size: 0.9rem;
}
.collaboration .grid .panel .btns li a .icon.new {
	background-color: #c40018;
}
.collaboration .grid .panel .btns li a .icon.update {
	background-color: #99c059;
}
.collaboration .grid .panel .btns li a:hover {
	background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(207, 224, 169)));
	background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(207, 224, 169) 100%);
	background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(207, 224, 169) 100%);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.collaboration .grid .panel .btns li a:hover::after {
	opacity: 1;
	visibility: visible;
}

/*-----------------------------------------------------------
	common
-----------------------------------------------------------*/
#cboxLoadedContent {
	position: relative;
	z-index: 10;
	scrollbar-width: none;
	background-color: #000;
}
#cboxLoadedContent video {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
}

/*
		Colorbox Core Style:
		The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	-webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
	max-width: none;
}

#cboxOverlay {
	position: fixed;
	width: 100%;
	height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
	clear: left;
}

#cboxContent {
	position: relative;
}

#cboxLoadedContent {
	overflow: auto;
}

#cboxTitle {
	margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
	cursor: pointer;
}

.cboxPhoto {
	float: left;
	margin: auto;
	border: 0;
	display: block;
	max-width: none;
}

.cboxIframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
	padding: 0;
	margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
	box-sizing: content-box;
}

#cboxOverlay {
	background: rgba(0, 0, 0, 0.8);
}

#colorbox {
	outline: 0;
}

#cboxContent {
	background: #fff;
}

#cboxLoadingOverlay {
	background: url(images/loading_background.png) no-repeat center center;
}

#cboxLoadingGraphic {
	background: url(images/loading.gif) no-repeat center center;
}

#cboxClose {
	position: absolute;
	right: -5.8vw;
	top: 9rem;
	border: 0;
	color: #fff;
	overflow: visible;
	font-size: 1.2rem;
	background: none;
	text-align: center;
}
@media (max-width: 1099px) {
	#cboxClose {
		font-size: 1.4rem;
	}
}
@media (max-width: 639px) {
	#cboxClose {
		top: 20vw;
		font-size: 3.5vw;
	}
}
#cboxClose:before {
	content: "";
	display: block;
	width: 5.1rem;
	height: 5.1rem;
	margin: 0px auto 0.5em;
	background: url(../img/common/close_lightbox.svg) center/100% no-repeat;
}
@media (max-width: 639px) {
	#cboxClose:before {
		width: 9vw;
		height: 9vw;
	}
}
#cboxClose:active {
	outline: 0;
}
/*# sourceMappingURL=style.css.map */
