
.right {
	text-align: right;
}

.vertical_text {
	writing-mode: vertical-rl;
	text-orientation: mixed;
}


.font-dnp-mincho-400 {
	font-family: var(--font-dnp-mincho);
	font-weight: 400;
	font-style: normal;
}

.font-dnp-gothic-500 {
	font-family: var(--font-dnp-gothic);
	font-weight: 500;
	font-style: normal;
}

.font-new-spirit-400 {
	font-family: var(--font-new-spirit);
	font-weight: 400;
	font-style: normal;
}

.font-new-spirit-500 {
	font-family: var(--font-new-spirit);
	font-weight: 500;
	font-style: normal;
}

.hs {
	display: none !important;
}

/* --------------------
ancher, button
-------------------- */
a:not(.btn_outline_white)[target=_blank]:after {
	content: '→';
	display: inline-block;
	margin-left: 5px;
	rotate: -25deg;
}

a:where(.link_arrow_white, .link_arrow_black) {
	font-family: var(--font-dnp-gothic);
	color: var(--color-white);
	text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
	text-underline-offset: 5px;
	transition: text-decoration-color var(--transition);
}
a:where(.link_arrow_white, .link_arrow_black):after {
	content: "→";
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
	width: 3.5em;
	height: 2.5em;
	margin-left: 1em;
	border: 1px solid #848484;
	border-radius: 50%;
	background: transparent;
	color: currentColor;
	font-size: 14px;
	vertical-align: middle;
	transition: background var(--transition), color var(--transition);
}
a:where(.link_arrow_white, .link_arrow_black):hover {
  text-decoration-color: currentColor;
}
a:where(.link_arrow_white, .link_arrow_black):hover:after {
	background: var(--color-white);
	color: #848484;
}

.link_arrow_black {
	color: var(--color-black);
}
.link_arrow_black:after {
	border-color: #E6E6E6;
}
.link_arrow_black:hover:after {
	color: var(--color-black);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 52px;
	border: 1px solid currentColor;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1;
	transition: background var(--transition), color var(--transition);
}
.btn:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn_primary {
	background: var(--color-black);
	color: var(--color-white);
	border-color: var(--color-black);
}
.btn_primary:hover {
	background: var(--color-red);
	border-color: var(--color-red);
	color: var(--color-white);
}

.btn_outline_white {
	display: inline-block;
	padding: 9px 16px;
	background-color: rgb(255 255 255 / 0.1);
	color: var(--color-white);
	border-color: var(--color-white);
	border-radius: 50px;
	font-size: 14px;
}
.btn_outline_white:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn_outline_dark {
	color: var(--color-black);
	border-color: var(--color-black);
}
.btn_outline_dark:hover {
	background: var(--color-black);
	color: var(--color-white);
}

.btn_arrow:after {
	content: "→";
	font-size: 14px;
}

@media (max-width: 900px) {
	.btn_outline_white {
		padding: 7px 10px 6px;
		font-size: 12px;
	}
}


/* --------------------
grid, flex
-------------------- */
.grid_2 { width: calc(var(--grid_width) * 2 + var(--grid-gap) * 1); }
.grid_3 { width: calc(var(--grid_width) * 3 + var(--grid-gap) * 2); }
.grid_4 { width: calc(var(--grid_width) * 4 + var(--grid-gap) * 3); }
.grid_5 { width: calc(var(--grid_width) * 5 + var(--grid-gap) * 4); }
.grid_6 { width: calc(var(--grid_width) * 6 + var(--grid-gap) * 5); }
.grid_7 { width: calc(var(--grid_width) * 7 + var(--grid-gap) * 6); }
.grid_8 { width: calc(var(--grid_width) * 8 + var(--grid-gap) * 7); }
.grid_9 { width: calc(var(--grid_width) * 9 + var(--grid-gap) * 8); }
.grid_10 { width: calc(var(--grid_width) * 10 + var(--grid-gap) * 9); }
.grid_11 { width: calc(var(--grid_width) * 11 + var(--grid-gap) * 10); }
.grid_12 { width: calc(var(--grid_width) * 12 + var(--grid-gap) * 11); }
.grid_13 { width: calc(var(--grid_width) * 13 + var(--grid-gap) * 12); }
.grid_14 { width: calc(var(--grid_width) * 14 + var(--grid-gap) * 13); }
.grid_15 { width: calc(var(--grid_width) * 15 + var(--grid-gap) * 14); }
.grid_16 { width: calc(var(--grid_width) * 16 + var(--grid-gap) * 15); }

@media (max-width: 900px) {
	.grid_2,
	.grid_3,
	.grid_4,
	.grid_5,
	.grid_6,
	.grid_7,
	.grid_8,
	.grid_9,
	.grid_10,
	.grid_11,
	.grid_12,
	.grid_13,
	.grid_14,
	.grid_15,
	.grid_16 {
		width: 100%;
	}
}

.section {
	padding-block: 80px 120px;
	min-height: calc( 100vh + 60px );
}

.sec_bespoke {
	padding-block: 180px 300px;
}

.bgc_main {
	--section-bg: var(--bgc-main);
	background-color: var(--section-bg);
}
.bgc_a {
	--section-bg: var(--bgc-a);
	background-color: var(--section-bg);
}
.bgc_b {
	--section-bg: var(--bgc-b);
	background-color: var(--section-bg);
}
.bgc_c {
	--section-bg: var(--bgc-c);
	background-color: var(--section-bg);
	color: var(--color-white);

}
.bgc_d {
	--section-bg: var(--bgc-d);
	background-color: var(--section-bg);
	color: var(--color-white);

}
.bgc_f_a {
	--section-bg: var(--bgc-f-a);
	background-color: var(--section-bg);
	color: var(--color-white);
}
.bgc_f_b {
	--section-bg: var(--bgc-f-b);
	background-color: var(--section-bg);
	color: var(--color-white);
}
.bgc_f_c {
	background-color: transparent;
	min-height: calc( 100vh + 60px );
	color: var(--color-white);
}

.section:where(.sec_a, .sec_b, .sec_c):before,
.footer :where(.bgc_f_a, .bgc_f_b, .bgc_f_c):before {
	content: "";
	position: absolute;
	top: -59px;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: var(--section-bg);
	mask-image: var(--section-wave);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-image: var(--section-wave);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	pointer-events: none;
	z-index: 1;
}
.section.sec_b:before {
	transform: scaleX(-1);
}
.footer .bgc_f_b:before {
	transform: scaleX(-1);
}
.footer .bgc_f_c:before {
	top: -1px;
	transform: scaleX(-1) rotate(180deg);
}

/* Wave at bottom of bgc_f_b section */
.footer .bgc_f_b:after {
	content: "";
	position: absolute;
	bottom: -59px;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: var(--section-bg);
	mask-image: var(--section-wave);
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-image: var(--section-wave);
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	pointer-events: none;
	z-index: 1;
	transform: rotate(180deg);
}

/* Footer catchy text */
.footer_catchy {
	text-align: center;
	margin-bottom: 60px;
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
}

.footer_catchy img {
	max-width: 100%;
	height: auto;
	width: 100%;
	object-fit: contain;
}

.footer_catchy p {
	color: var(--color-white);
	font-family: var(--font-catchy);
	font-size: clamp(28px, 2.7vw, 40px);
	line-height: 1.6;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 3px rgb(0 0 0 / 0.35);
	margin: 0;
}

.footer_catchy span {
	display: block;
}

/* Font assignments */
.text {
	font-family: var(--font-dnp-gothic);
}

.google_map_text {
	font-family: var(--font-new-spirit);
}

.tax_inc {
	font-family: var(--font-dnp-gothic);
}

.contents_wrap {
	display: flex;
	flex-direction: column;
}

.contents_heading {
	margin-bottom: 64px;
}
.contents_heading .title_en {
	font-family: var(--font-new-spirit);
	font-size: 12px;
}
.contents_heading .title {
	padding-top: 36px;
	font-size: 48px;
}

.contents_heading .title.title_reveal {
	overflow: hidden;
}

.contents_heading .title.title_reveal .char {
	display: inline-block;
	transform: translateY(105%);
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s ease;
	transition-delay: calc(var(--char-index, 0) * 0.06s);
	will-change: transform, opacity;
}

.contents_heading .title.title_reveal.is_visible .char {
	transform: translateY(0);
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.contents_heading .title.title_reveal .char {
		transform: none;
		opacity: 1;
		transition: none;
	}
}

.tag_list {
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
	font-family: var(--font-dnp-gothic);
}
.tag {
	display: inline-block;
	padding: 8px 15px 5px;
	border-radius: 50px;
	background: var(--color-yellow);
	color: var(--color-black);
	font-size: 12px;
	line-height: 1;
}


@media (max-width: 900px) {

	.section {
		position: relative;
		padding-block: 80px;
	}

	.contents_wrap {
		gap: 32px;
	}

	.bgc_f_c {
		position: relative;
	}

	.contents_heading .title {
		padding-top: 28px;
		font-size: 32px;
	}

	.link_arrow_black {
		font-size: 14px;
	}

}


/* --------------------
parallax
-------------------- */
.parallax_stack {
	isolation: isolate;
}

@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
	.parallax_stack {
		position: sticky;
		/* top: var(--parallax-stack-top); */
		z-index: var(--parallax-stack-z, 1);
	}
}


/* --------------------
animation
-------------------- */
.delay_elm_1 {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.delay_elm_2 {
  opacity: 0;
	transition: opacity 2s;
}

