@charset "utf-8";

:root {
	--sidebar-width: 400px;
	--page-bg: #111111;
	--sidebar-bg: #000000;
	--text: #bbbbbb;
	--text-soft: #858585;
	--heading: #ffffff;
	--line: #252525;
	--line-strong: #484848;
	--surface: #171717;
	--surface-raised: #1c1c1c;
	--white: #ffffff;
	--black: #000000;
	--danger: #ff7f7f;
	--success: #a9e6bd;
	--font-body: "Mulish", Arial, sans-serif;
	--font-heading: "Montserrat", Arial, sans-serif;
	--ease: cubic-bezier(.2,.75,.25,1);
}

* {
	box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: var(--sidebar-bg);
}

body {
	width: 100%;
	height: 100%;
	margin: 0;
	min-width: 320px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.85;
	letter-spacing: .45px;
	color: var(--text);
	background: var(--sidebar-bg);
	overflow: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.modal_open {
	overflow: hidden;
}

button,
input,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
}

img,
svg {
	display: block;
}

button {
	border: 0;
}

:focus-visible {
	outline: 2px solid var(--white);
	outline-offset: 4px;
}

::selection {
	color: var(--black);
	background: var(--white);
}

.container {
	position: relative;
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 40px;
}

#preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	pointer-events: none;
}

#preloader::before,
#preloader::after {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
	content: "";
	background: var(--white);
	transition: width .35s var(--ease) .35s;
}

#preloader::before {
	left: 0;
}

#preloader::after {
	right: 0;
}

#preloader .loader_line {
	position: relative;
	z-index: 1;
	width: 1px;
	height: 220px;
	margin: auto;
	overflow: hidden;
	background: #d4d4d4;
	transition: opacity .25s ease, height .45s var(--ease);
}

#preloader .loader_line::before {
	position: absolute;
	inset: 0;
	content: "";
	background: var(--black);
	transform: translateY(-100%);
	animation: loader-line 1.05s linear infinite;
}

#preloader.preloaded::before,
#preloader.preloaded::after {
	width: 0;
}

#preloader.preloaded .loader_line {
	height: 100%;
	opacity: 0;
}

@keyframes loader-line {
	to { transform: translateY(100%); }
}

.tokyo_tm_all_wrap {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	min-height: 0;
	overflow: hidden;
}

.leftpart {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 20;
	display: flex;
	align-items: center;
	width: var(--sidebar-width);
	padding: 0 100px;
	background: var(--sidebar-bg);
}

.leftpart_inner,
.leftpart .menu {
	width: 100%;
}

.menu ul,
.social ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.leftpart .menu li {
	margin: 0;
}

.leftpart .menu a {
	display: inline-block;
	padding: 2px 0;
	font-family: var(--font-heading);
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	transition: color .25s ease, letter-spacing .3s var(--ease);
}

.leftpart .menu a:hover,
.leftpart .menu a.active,
.leftpart .menu a[aria-current="page"] {
	color: var(--heading);
	letter-spacing: 2px;
}

.rightpart {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	min-height: 0;
	padding-left: var(--sidebar-width);
	overflow: hidden;
	background: var(--page-bg);
}

.rightpart_in {
	position: relative;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	border-left: 1px solid #202020;
}

.tokyo_tm_section {
	position: fixed;
	inset: 0 0 0 var(--sidebar-width);
	z-index: -1;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(4%, 0, 0);
	transition: opacity .18s ease, visibility 0s linear .35s, transform .35s var(--ease);
}

.tokyo_tm_section.active {
	z-index: 5;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
	transition: opacity .22s ease .08s, visibility 0s, transform .35s var(--ease);
}

.tokyo_tm_section:focus {
	outline: none;
}

.no-js .tokyo_tm_section {
	position: relative;
	inset: auto;
	z-index: auto;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.tokyo_tm_section > .container {
	height: 100%;
}

.tokyo_tm_home {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 0;
}

.home_content {
	display: flex;
	align-items: center;
}

.avatar {
	position: relative;
	flex: 0 0 300px;
	width: 300px;
	height: 300px;
	border-radius: 100%;
}

.avatar .image {
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-blend-mode: multiply;
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	-webkit-box-shadow: inset 0 0 0 9px rgba(255,255,255,.3);
	box-shadow: inset 0 0 0 9px rgba(255,255,255,.3);
	animation: morph 8s ease-in-out infinite 1s;
}

@keyframes morph {
	0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
	50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.details {
	margin-left: 80px;
}

.name {
	margin: 0 0 14px;
	font-family: var(--font-heading);
	font-size: clamp(42px, 4.1vw, 55px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
	color: var(--heading);
	text-transform: uppercase;
}

.name span {
	color: var(--white);
}

.job {
	max-width: 460px;
	margin: 0 0 28px;
	font-family: var(--font-heading);
	font-style: italic;
	font-weight: 500;
	line-height: 1.9;
	color: var(--text);
}

.social {
	width: 100%;
}

.social li {
	display: inline-block;
	margin: 0 13px 0 0;
}

.social li:last-child {
	margin-right: 0;
}

.social a {
	display: grid;
	place-items: center;
	width: 20px;
	height: 24px;
	color: var(--white);
	text-decoration: none;
	transition: opacity .2s ease, transform .2s var(--ease);
}

.social a:hover {
	opacity: .62;
	transform: translateY(-2px);
}

.social img {
	width: 17px;
	height: 17px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.consultation_trigger {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding: 0;
	margin-top: 24px;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .6px;
	color: var(--heading);
	background: transparent;
	cursor: pointer;
	transition: opacity .2s ease;
}

.consultation_trigger:hover {
	opacity: .68;
}

.long_arrow {
	width: 52px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.25;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .28s var(--ease);
}

.consultation_trigger:hover .long_arrow,
.submit_button:hover .long_arrow,
.consultation_option:hover .long_arrow {
	transform: translateX(5px);
}

.tokyo_tm_contact {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 0;
	padding: clamp(28px, 6vh, 72px) 0;
}

.contact_grid {
	display: grid;
	width: 100%;
	grid-template-columns: minmax(230px, .78fr) minmax(420px, 1.22fr);
	gap: clamp(56px, 7vw, 96px);
	align-items: start;
}

.tokyo_tm_title span,
.modal_eyebrow {
	display: inline-block;
	padding: 4px 10px;
	margin-bottom: 15px;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 1.1px;
	color: #8a8a8a;
	text-transform: uppercase;
	background: rgba(255,255,255,.045);
}

.tokyo_tm_title h2 {
	max-width: 440px;
	margin: 0;
	font-family: var(--font-heading);
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -.7px;
	color: var(--heading);
}

.contact_intro > p {
	max-width: 430px;
	margin: 28px 0 0;
	color: var(--text);
}

.contact_note {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
	font-size: 13px;
	color: var(--text-soft);
}

.contact_note_line {
	width: 30px;
	height: 1px;
	background: #555;
}

.contact_form {
	position: relative;
	width: 100%;
	padding: clamp(26px, 4vw, 42px);
	border: 1px solid var(--line);
	background: rgba(0,0,0,.14);
}

.field_row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.field {
	margin-bottom: 22px;
}

.field label {
	display: block;
	margin-bottom: 9px;
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .7px;
	color: var(--heading);
	text-transform: uppercase;
}

.field label span {
	color: #a9a9a9;
}

.field input,
.field textarea {
	display: block;
	width: 100%;
	padding: 14px 15px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 0;
	color: var(--heading);
	background: transparent;
	box-shadow: none;
	transition: border-color .2s ease, background-color .2s ease;
}

.field textarea {
	min-height: 150px;
	resize: vertical;
	line-height: 1.65;
}

.field input::placeholder,
.field textarea::placeholder {
	color: #777;
	opacity: 1;
}

.field input:hover,
.field textarea:hover {
	border-color: rgba(255,255,255,.38);
}

.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--white);
	background: rgba(255,255,255,.025);
}

.honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
}

.form_footer {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 54px;
}

.submit_button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 20px;
	min-height: 52px;
	padding: 0 24px;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .5px;
	color: var(--black);
	background: var(--white);
	cursor: pointer;
	transition: opacity .2s ease, transform .2s var(--ease);
}

.submit_button:hover {
	transform: translateY(-2px);
}

.submit_button:disabled {
	opacity: .55;
	cursor: wait;
	transform: none;
}

.submit_button .long_arrow {
	width: 42px;
}

.form_status {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--text-soft);
}

.form_status.success {
	color: var(--success);
}

.form_status.error {
	color: var(--danger);
}

.tokyo_tm_mobile_menu {
	display: none;
}

.consultation_modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(0,0,0,.76);
	backdrop-filter: blur(10px);
	opacity: 0;
	transition: opacity .22s ease;
}

.consultation_modal[hidden] {
	display: none;
}

.consultation_modal.opened {
	opacity: 1;
}

.consultation_card {
	position: relative;
	width: min(100%, 460px);
	padding: 38px;
	border: 1px solid #303030;
	background: var(--surface);
	box-shadow: 0 28px 90px rgba(0,0,0,.5);
	transform: translateY(14px) scale(.985);
	transition: transform .28s var(--ease);
}

.consultation_modal.opened .consultation_card {
	transform: translateY(0) scale(1);
}

.modal_close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	padding: 0;
	color: #a8a8a8;
	background: transparent;
	cursor: pointer;
	transition: color .2s ease, transform .2s var(--ease);
}

.modal_close:hover {
	color: var(--white);
	transform: rotate(5deg);
}

.modal_close svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
}

.consultation_card h2 {
	padding-right: 32px;
	margin: 0 0 10px;
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -.3px;
	color: var(--heading);
}

.consultation_card > p:not(.modal_eyebrow):not(.modal_status) {
	margin: 0;
	color: var(--text-soft);
}

.consultation_actions {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.consultation_option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 60px;
	padding: 0 19px;
	border: 1px solid #3a3a3a;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: .25px;
	color: var(--heading);
	text-decoration: none;
	background: transparent;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s var(--ease), opacity .2s ease;
}

.consultation_option.primary {
	color: var(--black);
	border-color: var(--white);
	background: var(--white);
}

.consultation_option:hover {
	border-color: var(--white);
	transform: translateY(-2px);
}

.consultation_option.primary:hover {
	background: #e9e9e9;
}

.consultation_option.disabled {
	opacity: .48;
	cursor: not-allowed;
	transform: none;
}

.consultation_option .long_arrow {
	flex: 0 0 auto;
	width: 42px;
}

.modal_status {
	min-height: 20px;
	margin: 14px 0 0;
	font-size: 12px;
	line-height: 1.55;
	color: var(--danger);
}

.mouse-cursor {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2000;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	will-change: transform;
}

.mouse-cursor.visible {
	opacity: 1;
	visibility: visible;
}

.cursor-inner {
	width: 6px;
	height: 6px;
	margin: -3px 0 0 -3px;
	background: var(--white);
	transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), opacity .3s ease;
}

.cursor-outer {
	width: 30px;
	height: 30px;
	margin: -15px 0 0 -15px;
	border: 2px solid var(--white);
	opacity: .5;
	transition: width .18s var(--ease), height .18s var(--ease), margin .18s var(--ease), opacity .18s ease;
}

.cursor-inner.cursor-hover {
	width: 72px;
	height: 72px;
	margin: -36px 0 0 -36px;
	opacity: .22;
}

.cursor-outer.cursor-hover {
	opacity: 0;
}

@media (min-width: 1601px) {
	:root { --sidebar-width: 450px; }
}

@media (max-width: 1200px) {
	:root { --sidebar-width: 0px; }

	.leftpart {
		display: none;
	}

	.tokyo_tm_mobile_menu {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 50;
		display: block;
		border-bottom: 1px solid #202020;
		background: rgba(0,0,0,.94);
		backdrop-filter: blur(12px);
	}

	.menu_inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 76px;
		padding: 0 28px;
	}

	.mobile_brand {
		font-family: var(--font-heading);
		font-size: 15px;
		font-weight: 700;
		letter-spacing: .4px;
		color: var(--heading);
		text-decoration: none;
	}

	.tokyo_tm_mobile_menu .menu ul {
		display: flex;
		align-items: center;
		gap: 20px;
	}

	.tokyo_tm_mobile_menu .menu a {
		font-family: var(--font-heading);
		font-size: 12px;
		font-weight: 600;
		color: var(--text);
		text-decoration: none;
		transition: color .2s ease;
	}

	.tokyo_tm_mobile_menu .menu a:hover,
	.tokyo_tm_mobile_menu .menu a.active,
	.tokyo_tm_mobile_menu .menu a[aria-current="page"] {
		color: var(--heading);
	}

	.rightpart {
		padding-left: 0;
	}

	.rightpart_in {
		border-left: 0;
	}

	.tokyo_tm_section {
		inset: 76px 0 0;
	}

	.tokyo_tm_home {
		height: 100%;
		min-height: 0;
		padding: 0;
	}

	.tokyo_tm_contact {
		height: 100%;
		padding: clamp(22px, 4vh, 52px) 0;
	}
}

@media (max-width: 1040px) {
	.container {
		padding: 0 28px;
	}

	.home_content {
		flex-direction: column;
		text-align: center;
	}

	.avatar {
		flex-basis: clamp(190px, 32vh, 260px);
		width: clamp(190px, 32vh, 260px);
		height: clamp(190px, 32vh, 260px);
		margin-bottom: clamp(18px, 4vh, 32px);
	}

	.details {
		margin-left: 0;
	}

	.job {
		margin-right: auto;
		margin-left: auto;
	}

	.contact_grid {
		grid-template-columns: minmax(180px, .68fr) minmax(360px, 1.32fr);
		gap: clamp(26px, 4vw, 48px);
	}

	.contact_intro > p {
		max-width: 420px;
	}

	.contact_form {
		max-width: none;
	}

	.mouse-cursor {
		display: none;
	}
}

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

	.container {
		padding: 0 20px;
	}

	.menu_inner {
		min-height: 68px;
		padding: 0 20px;
	}

	.mobile_brand {
		font-size: 13px;
	}

	.tokyo_tm_mobile_menu .menu ul {
		gap: 13px;
	}

	.tokyo_tm_mobile_menu .menu a {
		font-size: 11px;
	}

	.tokyo_tm_section {
		inset: 68px 0 0;
	}

	.tokyo_tm_home {
		height: 100%;
		min-height: 0;
		padding: 0;
	}

	.avatar {
		flex-basis: clamp(155px, 26vh, 210px);
		width: clamp(155px, 26vh, 210px);
		height: clamp(155px, 26vh, 210px);
		margin-bottom: clamp(16px, 3vh, 26px);
	}

	.name {
		font-size: clamp(30px, 9vw, 38px);
		margin-bottom: 8px;
	}

	.job {
		margin-bottom: clamp(12px, 2.5vh, 20px);
		font-size: 13px;
		line-height: 1.55;
	}

	.social li {
		margin-right: 11px;
	}

	.consultation_trigger {
		gap: 14px;
		margin-top: clamp(12px, 2.5vh, 18px);
		font-size: 12px;
	}

	.consultation_trigger .long_arrow {
		width: 44px;
	}

	.tokyo_tm_contact {
		height: 100%;
		padding: clamp(10px, 2vh, 16px) 0;
	}

	.contact_grid {
		grid-template-columns: 1fr;
		gap: clamp(8px, 1.8vh, 14px);
	}

	.tokyo_tm_title span {
		padding: 2px 8px;
		margin-bottom: 5px;
		font-size: 10px;
	}

	.tokyo_tm_title h2 {
		font-size: clamp(24px, 7.5vw, 30px);
		line-height: 1.12;
	}

	.contact_intro > p,
	.contact_note {
		display: none;
	}

	.contact_form {
		padding: clamp(12px, 3.8vw, 18px);
	}

	.field_row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.field {
		margin-bottom: clamp(7px, 1.5vh, 10px);
	}

	.field label {
		margin-bottom: 4px;
		font-size: 10px;
		line-height: 1.2;
	}

	.field input,
	.field textarea {
		padding: 9px 10px;
		font-size: 13px;
	}

	.field input {
		height: 38px;
	}

	.field textarea {
		height: clamp(68px, 12vh, 92px);
		min-height: 68px;
		resize: none;
	}

	.form_footer {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		align-items: center;
		gap: 10px;
		min-height: 42px;
	}

	.submit_button {
		min-height: 42px;
		padding: 0 16px;
		font-size: 11px;
	}

	.submit_button .long_arrow {
		width: 34px;
	}

	.form_status {
		font-size: 10px;
		line-height: 1.35;
	}

	.consultation_modal {
		padding: 16px;
	}

	.consultation_card {
		padding: 32px 22px 26px;
	}

	.consultation_card h2 {
		font-size: 24px;
	}

	.consultation_option {
		min-height: 58px;
		padding: 0 15px;
		font-size: 12px;
	}
}

@media (max-width: 440px) {
	.mobile_brand {
		display: none;
	}

	.menu_inner {
		justify-content: center;
	}

	.tokyo_tm_mobile_menu .menu ul {
		gap: 24px;
	}
}

@media (max-width: 700px) and (max-height: 520px) and (orientation: landscape) {
	.container {
		padding: 0 16px;
	}

	.menu_inner {
		min-height: 52px;
		padding: 0 16px;
	}

	.mobile_brand {
		font-size: 11px;
	}

	.tokyo_tm_mobile_menu .menu ul {
		gap: 16px;
	}

	.tokyo_tm_mobile_menu .menu a {
		font-size: 10px;
	}

	.tokyo_tm_section {
		inset: 52px 0 0;
	}

	.home_content {
		flex-direction: row;
		gap: clamp(20px, 5vw, 36px);
		text-align: left;
	}

	.avatar {
		flex-basis: clamp(120px, 32vh, 150px);
		width: clamp(120px, 32vh, 150px);
		height: clamp(120px, 32vh, 150px);
		margin-bottom: 0;
	}

	.name {
		font-size: clamp(26px, 5vw, 34px);
		margin-bottom: 5px;
	}

	.job {
		max-width: 340px;
		margin: 0 0 8px;
		font-size: 11px;
		line-height: 1.35;
	}

	.social li {
		margin-right: 9px;
	}

	.social a {
		width: 18px;
		height: 20px;
	}

	.social img {
		width: 14px;
		height: 14px;
	}

	.consultation_trigger {
		gap: 10px;
		margin-top: 7px;
		font-size: 10px;
	}

	.consultation_trigger .long_arrow {
		width: 34px;
	}

	.tokyo_tm_contact {
		padding: 6px 0;
	}

	.contact_grid {
		grid-template-columns: minmax(116px, .42fr) minmax(0, 1.58fr);
		gap: 16px;
		align-items: center;
	}

	.tokyo_tm_title span {
		margin-bottom: 4px;
		font-size: 9px;
	}

	.tokyo_tm_title h2 {
		font-size: clamp(20px, 4vw, 26px);
		line-height: 1.08;
	}

	.contact_form {
		padding: 10px 12px;
	}

	.field_row {
		gap: 8px;
	}

	.field {
		margin-bottom: 5px;
	}

	.field label {
		margin-bottom: 3px;
		font-size: 9px;
	}

	.field input,
	.field textarea {
		padding: 6px 8px;
		font-size: 11px;
	}

	.field input {
		height: 32px;
	}

	.field textarea {
		height: 50px;
		min-height: 50px;
	}

	.form_footer {
		gap: 8px;
		min-height: 34px;
	}

	.submit_button {
		min-height: 34px;
		padding: 0 12px;
		font-size: 10px;
	}

	.submit_button .long_arrow {
		width: 28px;
	}

	.form_status {
		font-size: 9px;
	}
}

@media (max-height: 720px) and (min-width: 701px) {
	.tokyo_tm_contact {
		padding: 20px 0;
	}

	.tokyo_tm_title span {
		margin-bottom: 8px;
	}

	.tokyo_tm_title h2 {
		font-size: clamp(30px, 3.4vw, 40px);
	}

	.contact_intro > p {
		margin-top: 16px;
		line-height: 1.65;
	}

	.contact_note {
		margin-top: 16px;
	}

	.contact_form {
		padding: 22px;
	}

	.field {
		margin-bottom: 13px;
	}

	.field label {
		margin-bottom: 5px;
	}

	.field input,
	.field textarea {
		padding: 10px 12px;
	}

	.field textarea {
		height: 84px;
		min-height: 84px;
		resize: none;
	}

	.form_footer {
		min-height: 44px;
	}

	.submit_button {
		min-height: 44px;
	}
}

@media (max-height: 560px) and (min-width: 701px) {
	.tokyo_tm_mobile_menu .menu_inner {
		min-height: 60px;
	}

	.tokyo_tm_section {
		inset: 60px 0 0;
	}

	.home_content {
		transform: none;
	}

	.tokyo_tm_contact {
		padding: 10px 0;
	}

	.contact_intro > p,
	.contact_note {
		display: none;
	}

	.contact_form {
		padding: 14px 18px;
	}

	.field {
		margin-bottom: 8px;
	}

	.field input,
	.field textarea {
		padding: 7px 10px;
	}

	.field textarea {
		height: 60px;
		min-height: 60px;
	}

	.form_footer,
	.submit_button {
		min-height: 38px;
	}
}

@media (max-height: 560px) and (min-width: 701px) and (max-width: 1040px) {
	.home_content {
		flex-direction: row;
		gap: 36px;
		text-align: left;
	}

	.avatar {
		flex-basis: 150px;
		width: 150px;
		height: 150px;
		margin-bottom: 0;
	}

	.job {
		margin-left: 0;
		margin-right: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
