<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*--------------------------------
reset
--------------------------------*/
html, body, div, p, img, iframe, a, span, blockquote, q, address, cite,
pre, code, em, small, strong, b, i,
header, article, section, nav, figure, figcaption, hgroup, menu, aside, footer, time,
h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd,
table, tbody, thead, tfoot, th, tr, td,
form, fieldset, legend, label, select, input, textarea, button {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	vertical-align: baseline;
}
img {
	vertical-align: middle;
}
sub,
sup{
	font-size: 30%;
}
sub{
	vertical-align: baseline;
}

/*--------------------------------
component
--------------------------------*/
.fit-img{
	width: 100%;
	height: auto;
	vertical-align: middle
}
.has-max {
	height: auto;
	max-width: 100%;
}

.primary-heading{
	margin-bottom: .8em;
	font-size: 32px;
	line-height: 1.4;
}
.secondary-heading{
	margin-bottom: .8em;
	font-size: 24px;
	line-height: 1.4;
}
.tertiary-heading {
	margin-bottom: .8em;
	font-size: 20px;
	line-height: 1.5;
}
.lead{
	margin: 1.6em 0;
	font-size: 16px;
	line-height: 1.6;
}
.note{
	margin: 1.6em 0;
	font-size: 13px;
	line-height: 1.6;
}
@media screen and (min-width: 768px) {
	.primary-heading{
		font-size: 48px;
	}
	.secondary-heading{
		font-size: 36px;
	}
	.tertiary-heading{
		font-size: 24px;
	}
	.lead{
		font-size: 20px;
	}
	.note{
		font-size: 16px;
	}
}
.caption{
	padding: .4em 8px;
	font-size: 10px;
	line-height: 1.5;
}
.cap{
	font-size: 10px;
	line-height: 1.5;
}
.btnNote{
	margin-top: 16px;
	font-size: 12px;
}
.img-wrapper{
	margin: 0;
	position: relative;
}
.img-wrapper .caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
.img-wrapper .cap-top{
	bottom: auto;
	top: 0;
}
.inline-block {
	display: inline-block;
}
.video-wrapper {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	display: block;
	content: "";
}
.video-wrapper iframe,
.video-wrapper video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.loading {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	content: "";
}
.dot-layer{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
	content: "";
	background: url(../../imgs/dot-white.png) transparent;
	background-size: 4px;
}
.hero-bg-fix{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
}
.sticky{
	position: relative;
	top: 0;
}
.screen-item-bg{
	height: 100vh;
}
.screen-item-bg .fit-img{
	height: 100vh;
	object-fit: cover;
}
.hero-title-container{
	width: 100%;
	height: 100vh;
	display: grid;
	place-items: center;
	position: sticky;
	top: 0;
	z-index: 1;
}
.page-title{
	font-size: clamp(80px, 10vw, 200px);
	color: #fff;
}
.page-title span{
	display: inline-block;
	opacity: 0;
}
.screen-over-heading{
	position: absolute;
	left: 32px;
	right: 32px;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
}
.section-title{
	padding-bottom: 4px;
	min-width: 120px;
	display: inline-block;
	position: absolute;
	left: min(2%, 16px);
	top: 0;
	font-size: 12px;
	border-bottom: 1px solid;
	transform-origin: left top;
	transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
	.screen-over-heading{
		top: 40px;
		left: 0;
		right: 0;
		transform: translateY(0);
	}
	.section-title{
		margin-bottom: 140px;
		position: relative;
		left: 0;
		transform-origin: left bottom;
	}
}
.screen-huge-title{
	margin-bottom: .6em;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(54px, 8vw ,150px);
	line-height: .9;
}

/*--------------------------------
layout
--------------------------------*/
.main-content{
	position: relative;
}
.inner {
	margin: 0 auto;
	width: calc(100% - 48px);
	max-width: 1200px;
}
.inner-narrow {
	max-width: 800px;
}
.inner-wide {
	max-width: 1500px;
}
.inner-fit {
	width: 100%;
	max-width: none;
}
.inner-full {
	max-width: none;
}
.general-section{
	position: relative;
}
.general-section .inner {
	padding: clamp(32px, 6vw, 160px) 0;
}
.general-section .inner + .inner {
	padding-top: 0;
}
.general-section .inner-min {
	padding: clamp(16px, 3vw, 40px) 0;
}
.general-parts {
	margin-bottom: clamp(16px, 6vw, 40px);
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.align-item-center {
	align-items: center;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.justify-end {
	justify-content: flex-end;
}
.grid-wrapper {
	display: grid;
}
.place-center {
	place-items: center;
}
.has-gap {
	gap: 32px;
}
.col-2 {
	width: 50%;
}
.has-gap &gt; .col-2 {
	width: calc(50% - 16px);
}
.col-3 {
	width: calc(100% / 3);
}
.has-gap &gt; .col-3 {
	width: calc((100% / 3) - 22px);
}
.col-4 {
	width: 25%;
}
.has-gap &gt; .col-4 {
	width: calc(25% - 24px);
}
.content-item{
	flex: 1;
}
.thumb-item{
	width: 60%;
	max-width: 870px;
}
@media (max-width: 991px) {
	.has-gap &gt; .col-4 {
		width: calc(25% - 12px);
	}
}
@media (max-width: 767px) {
	.col-2,
	.has-gap &gt; .col-2 {
		width: 100%;
	}
	.col-3,
	.has-gap &gt; .col-3 {
		width: 100%;
	}
	.sp-col-2 {
		width: 50%;
	}
	.has-gap &gt; .sp-col-2 {
		width: calc(50% - 8px);
	}
	.content-item{
		width: 100%;
		flex: auto;
	}
	.thumb-item{
		width: 100%;
	}
}

/*--------------------------------
state
--------------------------------*/
.bg-white {
	background: #fff;
}

.bg-light {
	background: #f5f5f4;
}
.bg-dark{
	background: #040d0a;
	color: #fff;
}
.bg-gray{
	background: #3c3c3c;
}
.en-font{
	font-family: ambroise-std, serif;
}
.is-none {
	display: none;
}
.disabled {
	opacity: 0.1;
	cursor: default;
	pointer-events: none;
}
.unscrollable{
	height: 100%;
	overflow: hidden;
}
.none {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}
.is-fv {
	opacity: 0;
	animation-fill-mode: both;
	visibility: hidden;
}
.is-light {
	color: #fff;
}
.is-dark {
	color: #292828;
}
.gray-text {
	color: #656565;
}
.is-shadow {
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.4);
}
.is-alert {
	color: #ff1c1c;
}
.is-semibold {
	font-weight: 500;
}
.is-bold {
	font-weight: 700;
}
.text-center{
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}
.small-text {
	font-size: 70%;
}
.large-text {
	font-size: 150%;
}
.larger-text {
	font-size: 120%;
}
.line-wide{
	line-height: 2;
}
.has-bg{
	display: inline-block;
	background: rgba(0,0,0,.6);
}
.img-wrapper .has-bg{
	left: auto;
}
.underline{
	text-decoration: underline;
}
@media screen and (max-width: 767px) {
	.sp-wide-fit{
		margin: 0 -24px;
	}
}</pre></body></html>