/* -----------------------------------------------
= kv
----------------------------------------------- */
.kv {
	position: relative;
	z-index: -1;
}
.kv .bg {
	position: fixed;
	top: 44px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.kv .bg::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0,0,0,0.4);
}
.kv .bg video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.kv .catch {
	position: relative;
	height: calc(100svh - 44px);
}
.kv .catch .set {
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
}
.kv .en {
	margin-bottom: 15px;
	color: var(--red);
	font-family: var(--noto);
	font-size: calc(3.6rem / 1.6);
	font-weight: 700;
	line-height: 1.1;
	opacity: .65;
	overflow: hidden;
}
.kv .en .js-inview {
	display: block;
	opacity: 0;
	transform: translateY(calc(3.6rem / 1.6));
	transition: 1.1s .8s cubic-bezier(.26,.27,.1,1);
}
.kv .en .js-inview.is-show {
	opacity: .65;
	transform: translateY(0);
}
.kv .jp {
	color: #fff;
	font-family: var(--noto);
	font-size: calc(1.6rem / 1.6);
	font-weight: 600;
	overflow: hidden;
}
.kv .jp .js-inview {
	display: block;
	opacity: 0;
	transform: translateY(calc(2rem / 1.6));
	transition: 1.1s 1.2s cubic-bezier(.26,.27,.1,1);
}
.kv .jp .js-inview.is-show {
	opacity: .65;
	transform: translateY(0);
}
.kv .msg {
	padding: 0 20px 60px 60px;
}
.kv .msg p {
	color: #fff;
	font-family: var(--noto);
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
}
.kv .msg p + p {
	margin-top: 2em;
}
.kv .scroll {
	position: fixed;
	left: 0;
	bottom: 40px;
	min-width: 60px;
	padding: 5px 0 0;
	color: #fff;
	font-size: calc(1rem / 1.6);
	text-align: right;
	transform: rotate(-90deg);
}
.kv .scroll.js-inview {
	transition-delay: 1.6s;
}
.kv .scroll::before,
.kv .scroll::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 1px;
	background: #fff;
	animation: scroll 2s infinite;
}
.kv .scroll::before {
	width: 100%;
}
.kv .scroll::after {
	width: 8px;
	transform: rotate(40deg);
	transform-origin: 0 0;
}
@keyframes scroll {
	0% {
		opacity: 0;
		left: 20%;
	}
	40% {
		opacity: 1;
	}
	80% {
		opacity: 0;
		left: -10%;
	}
	100% {
		opacity: 0;
	}
}
@media print, screen and (min-width: 768px) {/* PC */
.kv .bg {
	top: 80px;
}
.kv .bg video {
}
.kv .catch {
	height: calc(100vh - 80px);
}
.kv .catch .set {
	left: 130px;
}
.kv .en {
	margin-bottom: 50px;
	font-size: calc(8rem / 1.6);
	line-height: 1.2;
}
.kv .jp {
	font-size: calc(3.2rem / 1.6);
}
.kv .msg {
	display: table;
	margin: 0 auto;
	padding: 0 130px 100px;
}
.kv .msg p {
	font-size: min(calc(3.2rem / 1.6), calc(32 / 1500 * 100vw));
}
.kv .scroll {
	bottom: 80px;
	min-width: 124px;
	font-size: calc(1.6rem / 1.6);
}
.kv .scroll::after {
	width: 16px;
}
}/* @media */
/* -----------------------------------------------
= contents
----------------------------------------------- */
.contents {
	background: #fff;
}
/* -----------------------------------------------
= pick-up
----------------------------------------------- */
.pick-up h2 {
	display: inline-block;
	position: relative;
	padding: 10px 20px 3px 20px;
	color: #fff;
	background: #8e8e80;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	line-height: 1;
	letter-spacing: .04em;
}
.pick-up h2::after {
	content: "";
	position: absolute;
	top: 0;
	right: -20px;
	width: 20px;
	height: 100%;
	background: #8e8e80;
	clip-path: polygon(0 0,100% 100%,0 100%);
}
.pick-up ul {
	display: flex;
	gap: 10px;
	position: relative;
	z-index: 1;
	padding: 7px 20px 20px;
}
.pick-up ul::before {
	content: "";
	position: absolute;
	top: -5px;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 50%;
	background: #8e8e80;
}
@media print, screen and (min-width: 768px) {/* PC */
.pick-up .inner {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 0 40px;
	max-width: 1500px;
	margin: 0 auto;
	padding-bottom: 80px;
}
.pick-up .set {
	max-width: 656px;
}
.pick-up h2 {
	position: relative;
	margin-top: -17px;
	padding: 25px 60px 5px 40px;
	font-size: calc(1.8rem / 1.6);
}
.pick-up h2::after {
	right: -26px;
	width: 27px;
}
.pick-up ul {
	gap: 20px;
	padding: 20px 0 0 40px;
}
.pick-up ul::before {
	top: -5px;
}
.pick-up .movie {
	max-width: 194px;
	margin-right: 30px;
}
.pick-up .movie img {
	border-radius: 50%;
}
}/* @media */
/* -----------------------------------------------
= info
----------------------------------------------- */
.info {
	margin: 0 20px 20px;
}
.info .inner {
	position: relative;
	padding-bottom: 50px;
	background: #eee;
}
.info h2 {
	padding: 5px 0 10px;
	font-family: var(--cardo);
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
}
.info h2::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 1px;
	margin-right: 5px;
	background: #000;
}
.info .item {
	display: flex;
	padding: 0 20px 10px;
}
.info .item time {
	margin-right: 1em;
	font-size: calc(1.4rem / 1.6);
}
.info .item div {
	flex: 1;
}
.info .item .text {
	font-size: calc(1.4rem / 1.6);
}
.info .item.line .text {
	padding-bottom: 10px;
	border-bottom: 1px dotted #666;
}
.info .item .note {
	display: block;
	color: #666;
	font-size: calc(1.2rem / 1.6);
	line-height: 1.5;
}
.info .item a {
	color: var(--red);
	text-decoration: underline;
}
.info .btn-more {
	position: absolute;
	right: calc(50% - 34px);
	bottom: 0;
	width: 80px;
	padding: 8px 10px 17px;
	color: #fff;
	background: #808080;
	font-size: calc(1.2rem / 1.6);
	text-align: center;
}
.info .btn-more::after {
	content: "";
	position: absolute;
	left: calc(50% - 5px);
	bottom: 10px;
	width: 10px;
	height: 10px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: rotate(45deg);
}
.info .btn-more[aria-expanded="true"]::after {
	bottom: 3px;
	transform: rotate(-135deg);
}
.info-past {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}
.info-past.is-open {
	max-height: 500px;
}
@media print, screen and (min-width: 768px) {/* PC */
.info {
	display: flex;
	justify-content: end;
	max-width: 1420px;
	margin: 0 auto 220px;
	padding: 0 40px;
}
.info .inner {
	width: min(1140px, calc(1140 / 1500 * 100vw));
	padding-bottom: 0;
}
.info h2 {
	padding: 8px 0 25px;
	font-size: calc(2rem / 1.6);
}
.info h2::before {
	width: 24px;
	margin-right: 10px;
}
.info .item {
	padding: 0 min(120px, calc(120 / 1500 * 100vw)) 25px min(80px, calc(80 / 1500 * 100vw));
}
.info .item time {
	margin-right: 2em;
	font-size: calc(1.6rem / 1.6);
}
.info .item .text {
	font-size: calc(1.6rem / 1.6);
}
.info .item .note {
	padding-left: 1em;
	text-indent: -1em;
	font-size: calc(1.4rem / 1.6);
}
.info .btn-more {
	right: 0;
	padding: 10px 6px 22px;
	font-size: calc(1.6rem / 1.6);
}
.info .btn-more::after {
	left: calc(50% - 7px);
	bottom: 14px;
	width: 14px;
	height: 14px;
}
}/* @media */
@media(hover:hover) {
.info .item a:hover {
	text-decoration: none;
}
}/* @media */
/* -----------------------------------------------
= search
----------------------------------------------- */
.search-contents {
	padding: 0 20px 30px;
}
.search-list .inner {
	position: relative;
	z-index: 1;
	margin-bottom: 80px;
	padding: 20px 20px 0;
	background: #eee;
}
.search-list .inner::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -44px;
	z-index: -1;
	width: 100%;
	height: 88px;
	background: #eee;
	border-radius: 50%;
}
.search-list h2 {
	margin-bottom: 10px;
	font-family: var(--noto);
	font-size: calc(1.8rem / 1.6);
	font-weight: 600;
}
.search-list h2::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 8px;
	background: url(../img/shared/icon_search.svg) no-repeat 50% / cover;
}
.search-list h3 {
	font-family: var(--noto);
	font-size: calc(1.5rem / 1.6);
	font-weight: 100;
}
.search-list button,
.search-list a {
	margin-right: 1em;
	font-size: calc(1.4rem / 1.6);
}
.search-list button + h3,
.search-list a + h3 {
	margin-top: 20px;
}
.search-list button.mixitup-control-active {
	color: var(--red);
}
@media print, screen and (min-width: 768px) {/* PC */
.search-contents {
	display: flex;
	max-width: 1420px;
	margin: 0 auto;
	padding: 0 40px 230px;
}
.search-list {
	width: 190px;
	margin: 0;
	margin-right: min(90px, calc(90 / 1500 * 100vw));
}
.search-list .sticky {
	position: sticky;
	top: 80px;
	max-height: calc(100vh - 80px);
	margin-bottom: 80px;
/*	overflow-y: auto;*/
}
.search-list .inner {
	padding: 10px 10px 0;
}
.search-list .inner::after {
	bottom: -80px;
	width: 100%;
	height: 160px;
}
.search-list h2 {
	font-size: calc(2.8rem / 1.6);
}
.search-list h2::after {
	width: 24px;
	height: 24px;
	margin-left: 8px;
}
.search-list h3 {
	margin: 0 10px 10px;
	font-size: calc(2rem / 1.6);
}
.search-list button,
.search-list a {
	display: block;
	margin: 7px 10px;
	font-size: calc(1.6rem / 1.6);
	line-height: 1.4;
}
.search-list button + h3,
.search-list a + h3 {
	margin-top: 30px;
}
}/* @media */
@media (hover: hover) {
.search-list button,
.search-list a {
	transition: color .3s;
}
.search-list button:hover,
.search-list a:hover {
	color: var(--red);
}
}/* @media */
/* -----------------------------------------------
= search-results
----------------------------------------------- */
.search-results {
	position: relative;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.results-title {
	display: grid;
	place-content: center;
	position: relative;
	z-index: 1;
	min-height: 115px;
	box-sizing: border-box;
	margin-bottom: 20px;
	padding: 10px 10px 5px;
	color: #fff;
	background: #000;
	text-align: center;
}
.results-title::after {
	content: "";
	position: absolute;
	inset: 5px;
	border: 0.5px solid #d4d4d4;
}
.results-title img {
	position: absolute;
	inset: 0;
	z-index: -1;
	height: 100%;
	object-fit: cover;
}
.results-title .en {
	display: block;
	margin-bottom: 12px;
	font-family: var(--noto);
	font-size: calc(2.6rem / 1.6);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
}
.results-title .title {
	display: block;
	font-size: calc(1.4rem / 1.6);
	line-height: calc(36 / 28);
	letter-spacing: .04em;
}
.search-results .item {
	margin-bottom: 20px;
}
.search-results .item + .results-title {
	margin-top: 75px;
}
.search-results .item a {
	display: block;
}
.search-results .item button span {
	display: block;
}
.search-results .item .category {
	display: inline-block;
	margin: 5px 0 8px;
	padding: 4px 6px;
	color: #fff;
	background: #000;
	font-family: var(--noto);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
	line-height: 1;
}
.search-results .item .title {
	margin-bottom: 8px;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .04em;
}
.search-results .item .text {
	margin-bottom: 8px;
	font-size: calc(1.3rem / 1.6);
	line-height: calc(38 / 26);
	letter-spacing: -.06em;
}
.search-results .item .tag {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}
.search-results .item .tag li,
.search-results .item .tag span {
	color: #666;
	font-size: calc(1.2rem / 1.6);
	letter-spacing: .04em;
}
@media print, screen and (min-width: 768px) {/* PC */
.search-results {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.results-title {
	grid-column: span 2;
	min-height: 190px;
	margin-bottom: 0;
	padding: 20px 30px 10px;
}
.results-title::after {
	inset: 8px;
	border-width: 1px;
}
.results-title .en {
	margin-bottom: 25px;
	font-size: calc(5.6rem / 1.6);
}
.results-title .title {
	font-size: calc(1.8rem / 1.6);
	line-height: calc(26 / 18);
}
.search-results .item {
	margin-bottom: 0;
}
.search-results .item + .results-title {
	margin-top: 90px;
}
.search-results .item .category {
	margin: 16px 0 10px;
	padding: 5px 8px;
	font-size: calc(1.6rem / 1.6);
}
.search-results .item .title {
	margin-bottom: 16px;
	font-size: calc(2rem / 1.6);
}
.search-results .item .text {
	margin-bottom: 16px;
	font-size: calc(1.6rem / 1.6);
	line-height: calc(24 / 16);
	letter-spacing: 0;
}
.search-results .item .tag li,
.search-results .item .tag span {
	font-size: calc(1.6rem / 1.6);
}
}/* @media */
@media (hover: hover) {
.search-results .img {
	overflow: hidden;
}
.search-results a .img img,
.search-results button .img img {
	transition: transform .5s ease;
}
.search-results a:hover .img img,
.search-results button:hover .img img {
	transform: scale(1.1);
}
}/* @media */
