/*
Theme Name: MZ&C
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/

/* ==================================================
	MZ&C TOP PAGE
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Noto+Sans+JP:wght@300;400;500&family=Shippori+Mincho:wght@400;500;600&display=swap');


/* ==================================================
	FULL WIDTH
================================================== */

.full-width {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: calc(50vw - 50%);
	padding-right: calc(50vw - 50%);
	position: relative;
}


/* ==================================================
	BASE
================================================== */

.mz-home {
	--mz-purple: #6258a8;
	--mz-purple-dark: #3f3a72;
	--mz-black: #222222;
	--mz-gray: #777777;
	--mz-light: #f7f7f5;
	--mz-border: #dedede;
	--mz-white: #ffffff;
	color: var(--mz-black);
	background: #ffffff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}

.mz-home *,
.mz-home *::before,
.mz-home *::after {
	box-sizing: border-box;
}

.mz-home img {
	display: block;
	width: 100%;
	height: auto;
}

.mz-home a {
	color: inherit;
	text-decoration: none;
}

/* ==================================================
	MZ&C HEADER
================================================== */


/* ==================================================
	HEADER LEFT
================================================== */

.mz-header-left {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: 0;
}


/* ==================================================
	LOGO
================================================== */

#site-header .site-header-logo {
	display: block;
	flex: 0 0 auto;
	width: auto;
	margin: 0;
	padding: 0;
	text-align: left;
	line-height: 1;
	white-space: nowrap;
}

#site-header .site-header-logo a {
	display: block;
	color: inherit;
	text-decoration: none;
}

#site-header .site-header-logo span {
	display: block;
}

#site-header .site-header-logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 170px;
	max-height: 30px;
	margin: 0;
}


/* ==================================================
	HEADER COPY
================================================== */

.mz-header-copy {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 0 0 auto;
	margin-left: 20px;
	padding-left: 20px;
}


/* 縦線 */
.mz-header-copy::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 38px;
	background: #d7d3ce;
	transform: translateY(-50%);
}


/* ==================================================
	HEADER CATCH
================================================== */

.mz-header-catch {
	margin: 0 0 4px !important;
	padding: 0 !important;
	color: #4d4d4d !important;
	font-family: 'Shippori Mincho', serif !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	letter-spacing: .07em !important;
	white-space: nowrap;
}


/* ==================================================
	COMPANY NAME
================================================== */

.mz-header-company {
	margin: 0 !important;
	padding: 0 !important;
	color: #999999 !important;
	font-family: 'Noto Sans JP', sans-serif !important;
	font-size: 11px !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
	letter-spacing: .08em !important;
	white-space: nowrap;
}


/* ==================================================
	GLOBAL NAV
================================================== */

#global-nav {
	flex: 0 0 auto;
	width: auto;
	margin-left: auto !important;
	margin-right: 0 !important;
}


/* ==================================================
	GLOBAL NAV LIST
================================================== */

#global-nav .global-nav-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: auto !important;
	margin: 0 !important;
	padding: 0;
	gap: 30px;
	list-style: none;
	position: relative;
}


/* ==================================================
	NAV ITEM
================================================== */

#global-nav .global-nav-list > li {
	position: relative;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	line-height: 1;
}


/* ==================================================
	NAV LINK
================================================== */

#global-nav .global-nav-list > li > a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	width: auto;
	height: 90px;
	padding: 0;

	color: #222222 !important;
	background: transparent !important;

	text-decoration: none;
	overflow: visible;

	opacity: .82;

	transition:
		color .3s ease,
		opacity .3s ease;
}


/* ==================================================
	NAV NAME
================================================== */

#global-nav .global-nav-list > li > a .global-nav-name {
	position: relative;
	display: block;
	width: auto;

	color: #222222 !important;

	font-family: 'Cormorant Garamond', serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .09em;
	text-transform: uppercase;
	white-space: nowrap;

	transition:
		color .3s ease,
		opacity .3s ease;
}


/* ==================================================
	NAV DESCRIPTION
================================================== */

#global-nav .global-nav-description {
	display: none;
}


/* ==================================================
	NAV UNDERLINE
================================================== */

#global-nav .global-nav-list > li > a .global-nav-name::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -9px;

	width: 0;
	height: 1px;

	background: #6258a8;

	transform: translateX(-50%);

	opacity: 0;

	transition:
		width .4s cubic-bezier(.19, 1, .22, 1),
		opacity .3s ease;
}


/* ==================================================
	NAV HOVER
================================================== */

#global-nav .global-nav-list > li > a:hover,
#global-nav .global-nav-list > li > a:focus {
	color: #6258a8 !important;
	background: transparent !important;
	opacity: 1;
}


/* 文字そのものも紫にする */
#global-nav .global-nav-list > li > a:hover .global-nav-name,
#global-nav .global-nav-list > li > a:focus .global-nav-name {
	color: #6258a8 !important;
}


/* 下線表示 */
#global-nav .global-nav-list > li > a:hover .global-nav-name::after,
#global-nav .global-nav-list > li > a:focus .global-nav-name::after {
	width: 100%;
	opacity: 1;
}


/* ==================================================
	CURRENT PAGE
================================================== */

#global-nav .global-nav-list > li.current-menu-item > a,
#global-nav .global-nav-list > li.current_page_item > a,
#global-nav .global-nav-list > li.current-menu-ancestor > a,
#global-nav .global-nav-list > li.current_page_ancestor > a {
	color: #6258a8 !important;
	opacity: 1;
}

#global-nav .global-nav-list > li.current-menu-item > a .global-nav-name,
#global-nav .global-nav-list > li.current_page_item > a .global-nav-name,
#global-nav .global-nav-list > li.current-menu-ancestor > a .global-nav-name,
#global-nav .global-nav-list > li.current_page_ancestor > a .global-nav-name {
	color: #6258a8 !important;
}

#global-nav .global-nav-list > li.current-menu-item > a .global-nav-name::after,
#global-nav .global-nav-list > li.current_page_item > a .global-nav-name::after,
#global-nav .global-nav-list > li.current-menu-ancestor > a .global-nav-name::after,
#global-nav .global-nav-list > li.current_page_ancestor > a .global-nav-name::after {
	width: 100%;
	opacity: 1;
}


/* ==================================================
	LIGHTNING DEFAULT RESET
================================================== */

#global-nav .global-nav-list > li::before,
#global-nav .global-nav-list > li::after,
#global-nav .global-nav-list > li > a::before,
#global-nav .global-nav-list > li > a::after {
	display: none !important;
}


/* ==================================================
	SUB MENU
================================================== */

#global-nav .global-nav-list > li > ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 1500;
	width: 240px;
	margin: 0 0 0 -120px;
	padding: 0;

	background: #3f3a72;

	box-shadow:
		0 8px 25px rgba(0,0,0,.08);
}


/* ==================================================
	SUB MENU ITEM
================================================== */

#global-nav .global-nav-list .sub-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
}


/* ==================================================
	SUB MENU LINK
================================================== */

#global-nav .global-nav-list .sub-menu li a {
	display: block;

	padding: 14px 18px;

	color: #ffffff !important;
	background: transparent;

	border-bottom:
		1px solid rgba(255,255,255,.15);

	font-family:
		'Noto Sans JP',
		sans-serif;

	font-size: 12px;
	font-weight: 400;

	line-height: 1.6;
	letter-spacing: .05em;

	text-decoration: none;

	opacity: 1;

	transition:
		background .3s ease;
}


#global-nav .global-nav-list .sub-menu li a:hover,
#global-nav .global-nav-list .sub-menu li a:focus {
	color: #ffffff !important;
	background:
		rgba(255,255,255,.09);
}


/* ==================================================
	SCROLLED
================================================== */


/* ==================================================
	SCROLLED LOGO
================================================== */

/*
	Lightning標準ではスクロール時に
	.site-header-logo が display:none になるため解除
*/

.header_scrolled #site-header .site-header-logo {
	display: block !important;
}


.header_scrolled #site-header .site-header-logo img {
	width: auto;
	max-width: 145px !important;
	max-height: 25px !important;
}


/* ==================================================
	SCROLLED LEFT
================================================== */

.header_scrolled .mz-header-left {
	display: flex !important;
	align-items: center;
}


/* ==================================================
	SCROLLED COPY
================================================== */

.header_scrolled .mz-header-copy {
	display: flex !important;
	flex-direction: column;
	justify-content: center;

	margin-left: 15px !important;
	padding-left: 15px !important;
}


/* 縦線 */
.header_scrolled .mz-header-copy::before {
	height: 28px !important;
}


/* ==================================================
	SCROLLED CATCH
================================================== */

.header_scrolled .mz-header-copy .mz-header-catch {
	margin: 0 0 2px !important;
	padding: 0 !important;

	font-size: 10px !important;
	font-weight: 400 !important;

	line-height: 1.3 !important;
	letter-spacing: .035em !important;
}


/* ==================================================
	SCROLLED COMPANY
================================================== */

.header_scrolled .mz-header-copy .mz-header-company {
	margin: 0 !important;
	padding: 0 !important;

	font-size: 9px !important;
	font-weight: 400 !important;

	line-height: 1.25 !important;
	letter-spacing: .045em !important;
}


/* ==================================================
	SCROLLED NAV
================================================== */

/*
	ナビ自体は右位置を変更しない
*/

.header_scrolled #global-nav {
	flex: 0 0 auto;

	width: auto;

	margin-left: auto !important;
	margin-right: 0 !important;
}


/* ==================================================
	SCROLLED NAV LIST
================================================== */

.header_scrolled #global-nav .global-nav-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;

	width: auto !important;

	margin-left: 0 !important;
	margin-right: 0 !important;

	padding: 0;

	gap: 20px;
}


/* ==================================================
	SCROLLED NAV LINK
================================================== */

.header_scrolled #global-nav .global-nav-list > li > a {
	height: 68px;

	padding: 0;

	color: #222222 !important;
}


/* ==================================================
	SCROLLED NAV TEXT
================================================== */

.header_scrolled #global-nav .global-nav-list > li > a .global-nav-name {
	font-size: 13px;

	line-height: 1;

	letter-spacing: .06em;

	color: #222222 !important;
}


/* ==================================================
	SCROLLED HOVER
================================================== */

.header_scrolled #global-nav .global-nav-list > li > a:hover,
.header_scrolled #global-nav .global-nav-list > li > a:focus {
	color: #6258a8 !important;
}


.header_scrolled #global-nav .global-nav-list > li > a:hover .global-nav-name,
.header_scrolled #global-nav .global-nav-list > li > a:focus .global-nav-name {
	color: #6258a8 !important;
}


/* 下線 */
.header_scrolled #global-nav .global-nav-list > li > a .global-nav-name::after {
	bottom: -6px;
}


/* ==================================================
	SCROLLED CURRENT
================================================== */

.header_scrolled #global-nav .global-nav-list > li.current-menu-item > a,
.header_scrolled #global-nav .global-nav-list > li.current_page_item > a,
.header_scrolled #global-nav .global-nav-list > li.current-menu-ancestor > a,
.header_scrolled #global-nav .global-nav-list > li.current_page_ancestor > a {
	color: #6258a8 !important;
}


.header_scrolled #global-nav .global-nav-list > li.current-menu-item > a .global-nav-name,
.header_scrolled #global-nav .global-nav-list > li.current_page_item > a .global-nav-name,
.header_scrolled #global-nav .global-nav-list > li.current-menu-ancestor > a .global-nav-name,
.header_scrolled #global-nav .global-nav-list > li.current_page_ancestor > a .global-nav-name {
	color: #6258a8 !important;
}


/* ==================================================
	1400px以下
================================================== */

@media (max-width: 1399.98px) {


	/* LOGO */

	#site-header .site-header-logo img {
		max-width: 150px;
	}


	/* COPY */

	.mz-header-copy {
		margin-left: 16px;
		padding-left: 16px;
	}


	.mz-header-catch {
		font-size: 12px !important;
		letter-spacing: .05em !important;
	}


	/* NAV */

	#global-nav .global-nav-list {
		gap: 22px;
	}


	#global-nav .global-nav-list > li > a .global-nav-name {
		font-size: 14px;
		letter-spacing: .07em;
	}


	/* SCROLLED NAV */

	.header_scrolled #global-nav .global-nav-list {
		gap: 17px;
	}


	.header_scrolled #global-nav .global-nav-list > li > a .global-nav-name {
		font-size: 13px;
		letter-spacing: .05em;
	}


	/* SCROLLED COPY */

	.header_scrolled .mz-header-copy .mz-header-catch {
		font-size: 10px !important;
	}


	.header_scrolled .mz-header-copy .mz-header-company {
		font-size: 9px !important;
	}

}


/* ==================================================
	1200px以下
================================================== */

@media (max-width: 1199.98px) {


	/* キャッチは非表示 */

	.mz-header-copy {
		display: none;
	}


	.header_scrolled .mz-header-copy {
		display: none !important;
	}


	/* NAV */

	#global-nav,
	.header_scrolled #global-nav {
		margin-left: auto !important;
		margin-right: 0 !important;
	}


	#global-nav .global-nav-list {
		gap: 18px;
	}


	#global-nav .global-nav-list > li > a .global-nav-name {
		font-size: 13px;
	}


	/* SCROLLED */

	.header_scrolled #global-nav .global-nav-list {
		gap: 15px;
	}


	.header_scrolled #global-nav .global-nav-list > li > a .global-nav-name {
		font-size: 12px;
	}

}


/* ==================================================
	991px以下
================================================== */

@media (max-width: 991.98px) {


	#site-header .site-header-logo img {
		max-width: 140px;
		max-height: 52px;
	}


	/*
		モバイルメニューについては
		Lightning標準構造を優先
	*/

}

/* ==================================================
	CONTACT NAV BUTTON
================================================== */

#global-nav .global-nav-list > li.menu-contact {
	margin-left: 8px;
}


/* ボタン本体 */
#global-nav .global-nav-list > li.menu-contact > a {
	display: flex;
	align-items: center;
	justify-content: center;

	min-width: 138px;
	height: 48px;

	padding: 0 24px;

	color: #ffffff !important;
	background: #6258a8 !important;

	border: 1px solid #6258a8;

	opacity: 1;

	transition:
		background .3s ease,
		color .3s ease,
		border-color .3s ease;
}


/* CONTACT文字 */
#global-nav .global-nav-list > li.menu-contact > a .global-nav-name {
	color: #ffffff !important;
	font-size: 13px;
	letter-spacing: .1em;
}


/* 通常ナビの下線はCONTACTには出さない */
#global-nav .global-nav-list > li.menu-contact > a .global-nav-name::after {
	display: none;
}


/* ==================================================
	CONTACT HOVER
================================================== */

#global-nav .global-nav-list > li.menu-contact > a:hover,
#global-nav .global-nav-list > li.menu-contact > a:focus {
	color: #6258a8 !important;
	background: #ffffff !important;
	border-color: #6258a8;
}


#global-nav .global-nav-list > li.menu-contact > a:hover .global-nav-name,
#global-nav .global-nav-list > li.menu-contact > a:focus .global-nav-name {
	color: #6258a8 !important;
}


/* ==================================================
	CONTACT CURRENT
================================================== */

#global-nav .global-nav-list > li.menu-contact.current-menu-item > a,
#global-nav .global-nav-list > li.menu-contact.current_page_item > a {
	color: #ffffff !important;
	background: #6258a8 !important;
}

#global-nav .global-nav-list > li.menu-contact.current-menu-item > a .global-nav-name,
#global-nav .global-nav-list > li.menu-contact.current_page_item > a .global-nav-name {
	color: #ffffff !important;
}


/* ==================================================
	SCROLLED CONTACT
================================================== */

.header_scrolled #global-nav .global-nav-list > li.menu-contact > a {
	min-width: 122px;
	height: 42px;
	padding: 0 20px;
}

.header_scrolled #global-nav .global-nav-list > li.menu-contact > a .global-nav-name {
	font-size: 12px;
}


/* ==================================================
	1400px以下
================================================== */

@media (max-width: 1399.98px) {

	#global-nav .global-nav-list > li.menu-contact > a {
		min-width: 125px;
		padding: 0 20px;
	}

}


/* ==================================================
	1200px以下
================================================== */

@media (max-width: 1199.98px) {

	#global-nav .global-nav-list > li.menu-contact > a {
		min-width: 115px;
		height: 44px;
		padding: 0 18px;
	}

}


/* ==================================================
	CONTAINER
================================================== */

.mz-home .container {
	width: 100%;
	max-width: 1580px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}


/* ==================================================
	SECTION
================================================== */

.mz-section {
	padding-top: 150px;
	padding-bottom: 150px;
}

.mz-about {
	padding-top: 160px;
	padding-bottom: 160px;
}

.mz-products {
	padding-top: 160px;
	padding-bottom: 170px;
}

.mz-philosophy {
	padding-top: 160px;
	padding-bottom: 160px;
}

.mz-proval {
	padding-top: 160px;
	padding-bottom: 160px;
}

.mz-exhibition {
	padding-top: 160px;
	padding-bottom: 160px;
}

.mz-company {
	padding-top: 160px;
	padding-bottom: 160px;
}

.mz-contact {
	padding-top: 170px;
	padding-bottom: 170px;
}


/* ==================================================
	SECTION HEADER
================================================== */

.mz-section-head {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	margin-bottom: 85px;
}


.mz-section-en {
	margin: 0 0 8px;
	font-family: 'Cormorant Garamond', serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .1em;
}

.mz-section-jp {
	margin: 0;
	color: #999999;
	font-size: 11px;
	line-height: 1.6;
	letter-spacing: .18em;
}


/* ==================================================
	COMMON TITLE
================================================== */

.mz-small-en {
	margin: 0 0 30px;
	color: var(--mz-purple);
	font-family: 'Cormorant Garamond', serif;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .2em;
}

.mz-copy-title {
	margin: 0;
	font-family: 'Shippori Mincho', serif;
	font-size: clamp(28px, 2.1vw, 40px);
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: .08em;
}

.mz-large-title {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(46px, 4vw, 70px);
	font-weight: 400;
	line-height: .94;
	letter-spacing: -.025em;
}


/* ==================================================
	LINK
================================================== */

.mz-arrow-link,
.mz-text-link {
	display: inline-flex;
	align-items: center;
	gap: 26px;
	font-family: 'Cormorant Garamond', serif;
	font-size: 13px;
	letter-spacing: .14em;
}

.mz-arrow {
	position: relative;
	display: block;
	width: 60px;
	height: 1px;
	background: currentColor;
	transition: width .4s ease;
}

.mz-arrow::after {
	content: "";
	position: absolute;
	top: -3px;
	right: 0;
	width: 7px;
	height: 7px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg);
}

.mz-arrow-link:hover .mz-arrow,
.mz-text-link:hover .mz-arrow {
	width: 80px;
}


/* ==================================================
	HERO
================================================== */

.mz-hero {
	padding-top: 120px;
	padding-bottom: 120px;
	background: #ffffff;
}

.mz-hero > .container {
	position: relative;
}

.mz-hero-row {
	min-height: 690px;
}

.mz-hero-copy {
	padding-right: 70px;
}

.mz-hero-label {
	margin: 0 0 40px;
	color: var(--mz-purple);
	font-family: 'Cormorant Garamond', serif;
	font-size: 11px;
	letter-spacing: .22em;
}

.mz-hero-title {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(58px, 4.8vw, 88px);
	font-weight: 400;
	line-height: .86;
	letter-spacing: -.035em;
}

.mz-hero-title-jp {
	margin: 38px 0 0;
	font-family: 'Shippori Mincho', serif;
	font-size: 19px;
	line-height: 1.8;
	letter-spacing: .14em;
}

.mz-hero-text {
	margin: 32px 0 48px;
	color: #777777;
	font-size: 12px;
	line-height: 2.2;
	letter-spacing: .07em;
}

.mz-hero-visual {
	position: relative;
}

.mz-hero-image {
	height: 620px;
	overflow: hidden;
	background: #f5f5f5;
}

.mz-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.5s cubic-bezier(.19, 1, .22, 1);
}

.mz-hero:hover .mz-hero-image img {
	transform: scale(1.025);
}

.mz-hero-side-text {
	position: absolute;
	right: -38px;
	top: 50%;
	margin: 0;
	color: #aaaaaa;
	font-family: 'Cormorant Garamond', serif;
	font-size: 11px;
	letter-spacing: .2em;
	transform: translateY(-50%) rotate(90deg);
	white-space: nowrap;
}

.mz-scroll {
	position: absolute;
	left: 50%;
	bottom: -60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #888888;
	font-family: 'Cormorant Garamond', serif;
	font-size: 11px;
	letter-spacing: .18em;
	transform: translateX(-50%);
}

.mz-scroll i {
	position: relative;
	display: block;
	width: 1px;
	height: 45px;
	background: #dddddd;
	overflow: hidden;
}

.mz-scroll i::after {
	content: "";
	position: absolute;
	left: 0;
	top: -100%;
	width: 100%;
	height: 100%;
	background: var(--mz-purple);
	animation: mz-scroll-line 2.2s infinite ease-in-out;
}

@keyframes mz-scroll-line {

	0% {
		top: -100%;
	}

	50% {
		top: 0;
	}

	100% {
		top: 100%;
	}

}


/* ==================================================
	ABOUT
================================================== */

.mz-about {
	background: #ffffff;
}

.mz-about-image {
	height: 560px;
	overflow: hidden;
	background: #f3f3f3;
}

.mz-about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mz-about-content {
	padding-left: 55px;
}

.mz-about-text {
	margin: 45px 0 48px;
	color: #707070;
	font-size: 12px;
	line-height: 2.25;
	letter-spacing: .06em;
}

.mz-about-text p {
	margin: 0 0 20px;
}

.mz-about-text p:last-child {
	margin-bottom: 0;
}


/* ==================================================
	PRODUCTS
================================================== */

.mz-products {
	background: #fafaf8;
}


/* ==================================================
	PRODUCTS LEAD
================================================== */

.mz-products-lead {
	margin-bottom: 90px;
}

.mz-products-description {
	max-width: 430px;
	margin: 0 0 2px auto;
	color: #666666;
	font-size: 15px;
	font-weight: 300;
	line-height: 2;
	letter-spacing: .045em;
}


/* ==================================================
	PRODUCTS GRID
================================================== */

.mz-products-grid {
	align-items: flex-start;
}

.mz-products-grid > div {
	display: flex;
}


/* ==================================================
	PRODUCT CARD
================================================== */

.mz-product-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	color: #222222;
	text-decoration: none;
}

.mz-product-card--middle {
	margin-top: 65px;
}


/* ==================================================
	PRODUCT IMAGE
================================================== */

.mz-product-image {
	height: 470px;
	overflow: hidden;
	background: #eeeeee;
}

.mz-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .9s cubic-bezier(.19, 1, .22, 1);
}

.mz-product-card:hover .mz-product-image img {
	transform: scale(1.04);
}


/* ==================================================
	PRODUCT INFO
================================================== */

.mz-product-info {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 42px;
	align-items: start;
	gap: 18px;
	padding-top: 30px;
}

.mz-product-title-wrap {
	min-width: 0;
}


/* ==================================================
	PRODUCT NUMBER
================================================== */

.mz-product-no {
	margin: 2px 0 0;
	color: var(--mz-purple);
	font-family: 'Cormorant Garamond', serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .04em;
}


/* ==================================================
	PRODUCT TITLE
================================================== */

.mz-product-info h3 {
	margin: 0 0 10px;
	color: #222222;
	font-family: 'Cormorant Garamond', serif;
	font-size: 25px;
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: .1em;
}


/* ==================================================
	PRODUCT SUB
================================================== */

.mz-product-sub {
	margin: 0 0 14px !important;
	color: #8f8f8f !important;
	font-size: 12px !important;
	font-weight: 400;
	line-height: 1.6 !important;
	letter-spacing: .06em;
}


/* ==================================================
	PRODUCT DESCRIPTION
================================================== */

.mz-product-description {
	margin: 0 !important;
	color: #707070 !important;
	font-size: 13px !important;
	font-weight: 300;
	line-height: 1.9 !important;
	letter-spacing: .035em;
}


/* ==================================================
	PRODUCT ARROW
================================================== */

.mz-circle-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-top: 2px;
	border: 1px solid #cccccc;
	border-radius: 50%;
	color: #555555;
	font-size: 15px;
	line-height: 1;
	transition:
		color .35s ease,
		background .35s ease,
		border-color .35s ease,
		transform .35s ease;
}

.mz-product-card:hover .mz-circle-arrow {
	color: #ffffff;
	background: var(--mz-purple);
	border-color: var(--mz-purple);
	transform: translateX(3px);
}


/* ==================================================
	VIEW ALL
================================================== */

.mz-center-link {
	margin-top: 90px;
	text-align: center;
}

.mz-outline-button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 310px;
	padding: 21px 25px;
	border: 1px solid #bfbfbf;
	color: #222222;
	font-family: 'Cormorant Garamond', serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .13em;
	transition:
		color .35s ease,
		background .35s ease,
		border-color .35s ease;
}

.mz-outline-button:hover {
	color: #ffffff;
	background: var(--mz-purple);
	border-color: var(--mz-purple);
}


/* ==================================================
	PRODUCTS RESPONSIVE
================================================== */

@media (max-width: 1399.98px) {

	.mz-products-description {
		font-size: 14px;
	}

	.mz-product-no {
		font-size: 24px;
	}

	.mz-product-info {
		grid-template-columns: 48px minmax(0, 1fr) 40px;
		gap: 16px;
	}

	.mz-product-info h3 {
		font-size: 23px;
	}

}

@media (max-width: 991.98px) {

	.mz-products-lead {
		margin-bottom: 65px;
	}

	.mz-products-description {
		max-width: none;
		margin: 35px 0 0;
		font-size: 14px;
		line-height: 1.95;
	}

	.mz-products-grid > div {
		margin-bottom: 55px;
	}

	.mz-products-grid > div:last-child {
		margin-bottom: 0;
	}

	.mz-product-card--middle {
		margin-top: 0;
	}

	.mz-product-image {
		height: 520px;
	}

	.mz-product-no {
		font-size: 23px;
	}

}

@media (max-width: 767.98px) {

	.mz-products-lead {
		margin-bottom: 50px;
	}

	.mz-products-description {
		margin-top: 24px;
		font-size: 13px;
		line-height: 1.9;
	}

	.mz-products-grid > div {
		margin-bottom: 50px;
	}

	.mz-product-image {
		height: 420px;
	}

	.mz-product-info {
		grid-template-columns: 42px minmax(0, 1fr) 38px;
		gap: 13px;
		padding-top: 22px;
	}

	.mz-product-no {
		font-size: 21px;
	}

	.mz-product-info h3 {
		font-size: 21px;
	}

	.mz-product-sub {
		font-size: 11px !important;
		margin-bottom: 10px !important;
	}

	.mz-product-description {
		font-size: 13px !important;
		line-height: 1.85 !important;
	}

	.mz-center-link {
		margin-top: 55px;
	}

	.mz-outline-button {
		width: 100%;
		max-width: 300px;
	}

}


/* ==================================================
	PHILOSOPHY
================================================== */

.mz-philosophy {
	padding-top: 150px;
	padding-bottom: 150px;
	background: #f7f6f3;
	overflow: hidden;
}

.mz-philosophy-row {
	--bs-gutter-x: 0;
}

.mz-philosophy-image-wrap {
	position: relative;
	margin-left: calc(50% - 50vw);
	padding-right: 70px;
}

.mz-philosophy-image {
	position: relative;
	width: 100%;
	height: 620px;
	overflow: hidden;
	background: #f2f2f2;
}

.mz-philosophy-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(.19, 1, .22, 1);
}

.mz-philosophy-image:hover img {
	transform: scale(1.025);
}

.mz-philosophy-content {
	max-width: 520px;
	padding-left: 45px;
}

.mz-philosophy-content .mz-small-en {
	margin-bottom: 28px;
}

.mz-philosophy-content .mz-copy-title {
	color: #222;
	font-family: 'Shippori Mincho', serif;
	font-size: clamp(28px, 2.1vw, 40px);
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: .09em;
}

.mz-philosophy-text {
	margin: 38px 0 42px;
	color: #686868;
	font-size: 13px;
	font-weight: 300;
	line-height: 2.25;
	letter-spacing: .06em;
}

.mz-philosophy-list {
	border-top: 1px solid #d6d3ce;
}

.mz-philosophy-item {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 15px;
	padding: 18px 0;
	border-bottom: 1px solid #d6d3ce;
}

.mz-philosophy-item > span {
	padding-top: 3px;
	color: var(--mz-purple);
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px !important;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .03em;
}

.mz-philosophy-item h3 {
	margin: 0 0 5px;
	color: #222;
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .14em;
}

.mz-philosophy-item p {
	margin: 0;
	color: #777;
	font-size: 13px;
	line-height: 1.8;
	letter-spacing: .04em;
}

.mz-philosophy-link {
	margin-top: 40px;
}


/* ==================================================
	PROVAL
================================================== */

.mz-proval {
	background: #f7f6f3;
}

.mz-proval-copy {
	padding-right: 60px;
}

.mz-proval-brand {
	margin: 0 0 45px;
	color: var(--mz-purple);
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(54px, 4.7vw, 78px);
	font-weight: 400;
	line-height: .9;
	letter-spacing: .03em;
}

.mz-proval-copy h2 {
	margin: 0 0 32px;
	font-family: 'Shippori Mincho', serif;
	font-size: clamp(27px, 2.1vw, 38px);
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: .08em;
}

.mz-proval-copy > p:not(.mz-proval-brand) {
	margin: 0 0 45px;
	color: #777777;
	font-size: 11px;
	line-height: 2.2;
	letter-spacing: .05em;
}

.mz-proval-image {
	height: 560px;
	overflow: hidden;
}

.mz-proval-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* ==================================================
	EXHIBITION
================================================== */

.mz-exhibition {
	background: #f7f6f3;
}


/* ==================================================
	EXHIBITION INTRO
================================================== */

.mz-exhibition-intro {
	max-width: 580px;
	margin-top: -45px;
	margin-bottom: 60px;
}

.mz-exhibition-intro p {
	margin: 0;
	color: #777777;
	font-size: 13px;
	font-weight: 300;
	line-height: 2.1;
	letter-spacing: .05em;
}


/* ==================================================
	EXHIBITION GRID
================================================== */

.mz-exhibition-grid {
	--bs-gutter-y: 30px;
	align-items: stretch;
}

.mz-exhibition-grid > div {
	display: flex;
}


/* ==================================================
	EXHIBITION CARD
================================================== */

.mz-exhibition-card {
	display: grid;
	grid-template-columns: 30% 70%;
	width: 100%;
	min-height: 300px;
	background: #ffffff;
	border: 1px solid #e5e1dc;
	overflow: hidden;
	transition:
		transform .4s cubic-bezier(.19, 1, .22, 1),
		box-shadow .4s ease;
	    margin-bottom: 30px;
}

.mz-exhibition-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 45px rgba(30, 28, 25, .07);
}


/* ==================================================
	EXHIBITION IMAGE
================================================== */

.mz-exhibition-card-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 300px;
	padding: 45px 55px;
	overflow: hidden;
	background: #ffffff;
	border-right: 1px solid #ede9e4;
}

.mz-exhibition-card-img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 360px;
	max-height: 190px;
	object-fit: contain;
	object-position: center center;
	transition: transform .7s cubic-bezier(.19, 1, .22, 1);
}

.mz-exhibition-card:hover .mz-exhibition-card-img {
	transform: scale(1.025);
}


/* ==================================================
	EXHIBITION STATUS
================================================== */

.mz-exhibition-status {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	padding: 8px 12px;
	color: #ffffff;
	background: rgba(63, 58, 114, .94);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .08em;
}

.mz-exhibition-card.is-ended .mz-exhibition-card-img {
	opacity: .72;
	filter: grayscale(.12);
}


/* ==================================================
	EXHIBITION BODY
================================================== */

.mz-exhibition-card-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	grid-template-rows: auto auto auto 1fr auto;
	column-gap: 45px;
	min-width: 0;
	padding: 34px 40px;
}


/* ==================================================
	EXHIBITION DATE
================================================== */

.mz-exhibition-date {
	grid-column: 1;
	grid-row: 1;
	margin-bottom: 12px;
}

.mz-exhibition-date-value {
	display: block;
	color: var(--mz-purple);
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: .07em;
}

.mz-exhibition-date-line {
	display: inline-block;
	margin: 0 7px;
	color: #aaa6a0;
	font-size: 16px;
}


/* ==================================================
	EXHIBITION TITLE
================================================== */

.mz-exhibition-card-title {
	grid-column: 1;
	grid-row: 2;
	margin: 0 0 14px;
	font-family: 'Shippori Mincho', serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: .045em;
}

.mz-exhibition-card-title a {
	color: #222222;
}


/* ==================================================
	EXHIBITION ENDED MESSAGE
================================================== */

.mz-exhibition-ended {
	grid-column: 1;
	grid-row: 3;
	margin: 0 0 15px;
	padding: 10px 13px;
	color: #6258a8;
	background: #f4f2fa;
	border-left: 2px solid #6258a8;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: .025em;
}


/* ==================================================
	EXHIBITION DESCRIPTION
================================================== */

.mz-exhibition-description {
	grid-column: 1;
	grid-row: 4;
	align-self: start;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	max-width: 700px;
	margin: 0;
	overflow: hidden;
	color: #777777;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.9;
	letter-spacing: .035em;
}


/* ==================================================
	EXHIBITION INFO
================================================== */

.mz-exhibition-info {
	grid-column: 2;
	grid-row: 1 / 5;
	align-self: center;
	border-top: 1px solid #e3dfda;
}

.mz-exhibition-info-row {
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #e3dfda;
}

.mz-exhibition-info-label {
	padding-top: 2px;
	color: #999999;
	font-family: 'Cormorant Garamond', serif;
	font-size: 11px;
	line-height: 1.5;
	letter-spacing: .12em;
}

.mz-exhibition-info-value {
	color: #555555;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: .03em;
}


/* ==================================================
	EXHIBITION FOOTER
================================================== */

.mz-exhibition-card-footer {
	grid-column: 1 / -1;
	grid-row: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid #ece8e3;
}

.mz-exhibition-card-link {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	color: #222222;
	font-family: 'Cormorant Garamond', serif;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .13em;
}

.mz-exhibition-card-arrow {
	display: inline-block;
	font-size: 15px;
	transition: transform .3s ease;
}

.mz-exhibition-card-link:hover .mz-exhibition-card-arrow {
	transform: translateX(5px);
}

.mz-exhibition-official {
	color: #8c8c8c;
	font-family: 'Cormorant Garamond', serif;
	font-size: 11px;
	line-height: 1;
	letter-spacing: .1em;
	border-bottom: 1px solid #bbbbbb;
	white-space: nowrap;
}


/* ==================================================
	EXHIBITION TABLET
================================================== */

@media (max-width: 1199.98px) {

	.mz-exhibition-card {
		grid-template-columns: 30% 70%;
	}

	.mz-exhibition-card-image {
		padding: 35px;
	}

	.mz-exhibition-card-body {
		grid-template-columns: minmax(0, 1fr) 240px;
		column-gap: 30px;
		padding: 30px;
	}

}


/* ==================================================
	EXHIBITION TABLET / SP
================================================== */

@media (max-width: 991.98px) {

	.mz-exhibition-intro {
		margin-top: -25px;
		margin-bottom: 45px;
	}

	.mz-exhibition-card {
		grid-template-columns: 34% 66%;
	}

	.mz-exhibition-card-body {
		display: block;
	}

	.mz-exhibition-info {
		margin-top: 22px;
	}

	.mz-exhibition-card-footer {
		margin-top: 22px;
	}

}


/* ==================================================
	EXHIBITION SMARTPHONE
================================================== */

@media (max-width: 767.98px) {

	.mz-exhibition-intro {
		margin-top: -15px;
		margin-bottom: 38px;
	}

	.mz-exhibition-grid {
		--bs-gutter-y: 25px;
	}

	.mz-exhibition-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.mz-exhibition-card-image {
		height: 190px;
		min-height: 190px;
		padding: 30px 40px;
		border-right: none;
		border-bottom: 1px solid #ede9e4;
	}

	.mz-exhibition-card-img {
		max-width: 280px;
		max-height: 125px;
	}

	.mz-exhibition-card-body {
		padding: 24px 22px;
	}

	.mz-exhibition-date-value {
		font-size: 19px;
	}

	.mz-exhibition-card-title {
		font-size: 19px;
	}

	.mz-exhibition-description {
		-webkit-line-clamp: 4;
	}

	.mz-exhibition-card-footer {
		align-items: flex-start;
		flex-direction: column;
		gap: 13px;
	}

}


/* ==================================================
	COMPANY
================================================== */



.mz-company {
	padding-top: 150px;
	padding-bottom: 150px;
	background: #ffffff;
	overflow: hidden;
}

.mz-company-row {
	--bs-gutter-x: 0;
}

.mz-company-content {
	max-width: 560px;
	padding-right: 60px;
}

.mz-company-content .mz-small-en {
	margin-bottom: 28px;
}

.mz-company-content h2 {
	margin: 0 0 35px;
	color: #222;
	font-family: 'Shippori Mincho', serif;
	font-size: clamp(28px, 2.2vw, 40px);
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: .09em;
}

.mz-company-text,
.mz-company-content > p:not(.mz-small-en) {
	margin: 0;
	color: #686868;
	font-size: 13px;
	font-weight: 300;
	line-height: 2.25;
	letter-spacing: .06em;
}

.mz-company-data {
	display: flex;
	align-items: flex-start;
	gap: 65px;
	margin: 42px 0;
	padding: 27px 0;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
}

.mz-company-data div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mz-company-data strong {
	color: #222;
	font-family: 'Cormorant Garamond', serif;
	font-size: 34px;
	font-weight: 400;
	line-height: 1;
}

.mz-company-data span {
	color: #888;
	font-family: 'Cormorant Garamond', serif;
	font-size: 11px;
	line-height: 1;
	letter-spacing: .15em;
}

.mz-company-image-wrap {
	position: relative;
	margin-right: calc(50% - 50vw);
	padding-left: 70px;
}

.mz-company-image {
	position: relative;
	width: 100%;
	height: 620px;
	overflow: hidden;
	background: #f2f2f2;
}

.mz-company-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(.19, 1, .22, 1);
}

.mz-company-image:hover img {
	transform: scale(1.025);
}


/* ==================================================
	NEWS
================================================== */

.mz-news-wrap {
	margin-top: 0;
}

.news-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 55px;
	row-gap: 38px;
	margin: 0;
	padding: 0;
	list-style: none;
}


/* ==================================================
	NEWS ITEM
================================================== */

.news-item {
	margin: 0;
	padding: 0;
}

.news-link {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	align-items: center;
	gap: 28px;
	min-height: 120px;
	padding: 0 0 28px;
	color: #222;
	text-decoration: none;
	border-bottom: 1px solid #ddd;
}


/* ==================================================
	THUMBNAIL
================================================== */

.news-thumb {
	position: relative;
	width: 120px;
	height: 120px;
	overflow: hidden;
	background: #f2f2f2;
}

.news-thumb-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.19, 1, .22, 1);
}

.news-link:hover .news-thumb-img {
	transform: scale(1.05);
}


/* ==================================================
	NEWS BODY
================================================== */

.news-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	height: 100%;
}


/* ==================================================
	META
================================================== */

.news-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 13px;
	margin-bottom: 12px;
}


/* 日付 */
.news-list .date {
	color: #888;
	font-family: 'Cormorant Garamond', serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .1em;
	white-space: nowrap;
}


/* カテゴリ */
.news-list .cat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	min-height: 21px;
	padding: 2px 9px;
	border: 1px solid #6258a8;
	color: #6258a8;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: .08em;
	white-space: nowrap;
}


/* ==================================================
	TITLE
================================================== */

.news-list .title {
	margin: 0;
	font-family: 'Shippori Mincho', serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: .035em;
}


/* ==================================================
	READ MORE
================================================== */

.news-more {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 15px;
	color: #888;
	font-family: 'Cormorant Garamond', serif;
	font-size: 11px;
	line-height: 1;
	letter-spacing: .16em;
}

.news-more-arrow {
	display: inline-block;
	font-size: 15px;
	transition: transform .3s ease;
}

.news-link:hover .news-more-arrow {
	transform: translateX(6px);
}


/* ==================================================
	HOVER
================================================== */

.news-link {
	transition: opacity .3s ease;
}

.news-link:hover {
	opacity: .75;
}


/* ==================================================
	CATEGORY COLOR
================================================== */

.news-list .cat.news {
	color: #6258a8;
	border-color: #6258a8;
}

.news-list .cat.exhibition {
	color: #9b8262;
	border-color: #9b8262;
}

.news-list .cat.product {
	color: #666;
	border-color: #999;
}


/* ==================================================
	TABLET
================================================== */

@media (max-width: 991.98px) {

	.news-list {
		grid-template-columns: 1fr;
		row-gap: 30px;
	}

	.news-link {
		grid-template-columns: 120px minmax(0, 1fr);
		gap: 25px;
	}

}


/* ==================================================
	SMARTPHONE
================================================== */

@media (max-width: 767.98px) {

	.news-list {
		row-gap: 25px;
	}

	.news-link {
		grid-template-columns: 90px minmax(0, 1fr);
		gap: 16px;
		min-height: 90px;
		padding-bottom: 22px;
	}

	.news-thumb {
		width: 90px;
		height: 90px;
	}

	.news-meta {
		gap: 8px;
		margin-bottom: 8px;
	}

	.news-list .date {
		font-size: 11px;
	}

	.news-list .cat {
		min-width: auto;
		min-height: 19px;
		padding: 2px 7px;
		font-size: 11px;
	}

	.news-list .title {
		font-size: 13px;
		line-height: 1.6;
	}

	.news-more {
		margin-top: 10px;
		font-size: 11px;
	}

	.news-more-arrow {
		font-size: 13px;
	}

}

/* ==================================================
	CONTACT
================================================== */

.mz-contact {
	color: #ffffff;
	background: var(--mz-purple-dark);
	text-align: center;
}

.mz-contact-inner {
	max-width: 900px;
	margin: 0 auto;
}

.mz-contact .mz-small-en {
	color: rgba(255, 255, 255, .62);
}

.mz-contact h2 {
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(54px, 5vw, 82px);
	font-weight: 400;
	line-height: .85;
	letter-spacing: -.025em;
}

.mz-contact-jp {
	margin: 52px 0;
	color: rgba(255, 255, 255, .7);
	font-size: 11px;
	line-height: 2.2;
	letter-spacing: .1em;
}

.mz-contact-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 320px;
	margin: 0 auto;
	padding: 22px 27px;
	border: 1px solid rgba(255, 255, 255, .5);
	font-family: 'Cormorant Garamond', serif;
	font-size: 12px;
	letter-spacing: .15em;
	transition: all .35s ease;
}

.mz-contact-button:hover {
	color: var(--mz-purple-dark);
	background: #ffffff;
}


/* ==================================================
	PC SMALL
================================================== */

@media (max-width: 1399.98px) {

	.mz-home .container {
		width: 94%;
		max-width: 1320px;
	}

	.mz-hero-title {
		font-size: 80px;
	}

	.mz-hero-copy {
		padding-right: 45px;
	}

	.mz-about-content {
		padding-left: 40px;
	}

	.mz-philosophy-panel,
	.mz-company-content {
		padding-left: 50px;
		padding-right: 50px;
	}

}


/* ==================================================
	TABLET
================================================== */

@media (max-width: 1199.98px) {

	.mz-home .container {
		width: 95%;
		max-width: 1140px;
	}

	.mz-section,
	.mz-about,
	.mz-products,
	.mz-philosophy,
	.mz-proval,
	.mz-exhibition,
	.mz-company {
		padding-top: 125px;
		padding-bottom: 125px;
	}

	.mz-contact {
		padding-top: 140px;
		padding-bottom: 140px;
	}

	.mz-hero {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.mz-hero-row {
		min-height: 620px;
	}

	.mz-hero-image {
		height: 560px;
	}

	.mz-about-image {
		height: 510px;
	}

	.mz-product-image {
		height: 430px;
	}

	.mz-philosophy-image {
		height: 570px;
	}

	.mz-proval-image {
		height: 510px;
	}

	.mz-company-image {
		height: 540px;
	}

}


/* ==================================================
	TABLET / SP
================================================== */

@media (max-width: 991.98px) {

	.mz-section,
	.mz-about,
	.mz-products,
	.mz-philosophy,
	.mz-proval,
	.mz-exhibition,
	.mz-company {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.mz-contact {
		padding-top: 120px;
		padding-bottom: 120px;
	}

	.mz-section-head {
		margin-bottom: 65px;
	}

	.mz-hero-row {
		min-height: 0;
	}

	.mz-hero-copy {
		padding-right: 0;
		margin-bottom: 60px;
	}

	.mz-hero-title {
		font-size: 72px;
	}

	.mz-hero-image {
		height: 540px;
	}

	.mz-about-content {
		padding-left: 0;
		margin-top: 55px;
	}

	.mz-about-image {
		height: 500px;
	}

	.mz-products-lead {
		margin-bottom: 65px;
	}

	.mz-products-description {
		margin-top: 35px;
	}

	.mz-products-grid > div {
		margin-bottom: 55px;
	}

	.mz-products-grid > div:last-child {
		margin-bottom: 0;
	}

	.mz-product-card--middle {
		margin-top: 0;
	}

	.mz-product-image {
		height: 520px;
	}

	.mz-philosophy-image {
		height: 500px;
	}

	.mz-philosophy-panel {
		padding: 65px 50px;
	}

	.mz-proval-copy {
		padding-right: 0;
		margin-bottom: 60px;
	}

	.mz-proval-image {
		height: 500px;
	}

	.mz-news-date {
		margin-bottom: 20px;
	}

	.mz-news-content {
		margin-bottom: 15px;
	}

	.mz-company-image {
		height: 500px;
	}

	.mz-company-content {
		padding: 65px 50px;
	}

}


/* ==================================================
	SMARTPHONE
================================================== */

@media (max-width: 767.98px) {

	.full-width {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		padding-left: calc(50vw - 50%);
		padding-right: calc(50vw - 50%);
	}

	.mz-home .container {
		width: 100%;
		max-width: none;
		padding-left: 24px;
		padding-right: 24px;
	}

	.mz-section,
	.mz-about,
	.mz-products,
	.mz-philosophy,
	.mz-proval,
	.mz-exhibition,
	.mz-company {
		padding-top: 85px;
		padding-bottom: 85px;
	}

	.mz-contact {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.mz-section-head {
		gap: 16px;
		margin-bottom: 50px;
	}

	.mz-section-en {
		font-size: 24px;
	}

	.mz-copy-title {
		font-size: 31px;
		line-height: 1.7;
	}

	.mz-large-title {
		font-size: 50px;
	}

	.mz-hero {
		padding-top: 80px;
		padding-bottom: 85px;
	}

	.mz-hero-copy {
		margin-bottom: 45px;
	}

	.mz-hero-label {
		margin-bottom: 28px;
		font-size: 11px;
	}

	.mz-hero-title {
		font-size: 55px;
	}

	.mz-hero-title-jp {
		margin-top: 28px;
		font-size: 16px;
	}

	.mz-hero-text {
		margin-top: 25px;
		margin-bottom: 36px;
		font-size: 11px;
	}

	.mz-hero-image {
		height: 440px;
	}

	.mz-hero-side-text,
	.mz-scroll {
		display: none;
	}

	.mz-about-image {
		height: 410px;
	}

	.mz-about-content {
		margin-top: 45px;
	}

	.mz-about-text {
		margin-top: 32px;
		margin-bottom: 38px;
		font-size: 11px;
	}

	.mz-products-lead {
		margin-bottom: 50px;
	}

	.mz-products-description {
		margin-top: 28px;
		font-size: 11px;
	}

	.mz-products-grid > div {
		margin-bottom: 50px;
	}

	.mz-product-image {
		height: 420px;
	}

	.mz-product-info h3 {
		font-size: 21px;
	}

	.mz-center-link {
		margin-top: 55px;
	}

	.mz-outline-button {
		width: 100%;
		max-width: 300px;
	}

	.mz-philosophy-image {
		height: 420px;
	}

	.mz-philosophy-panel {
		padding: 50px 25px;
	}

	.mz-philosophy-text {
		margin-top: 30px;
		margin-bottom: 35px;
	}

	.mz-proval-copy {
		margin-bottom: 45px;
	}

	.mz-proval-brand {
		margin-bottom: 32px;
		font-size: 62px;
	}

	.mz-proval-copy h2 {
		font-size: 30px;
	}

	.mz-proval-image {
		height: 420px;
	}

	.mz-news-item {
		padding: 28px 0;
	}

	.mz-news-item:hover {
		padding-left: 0;
		padding-right: 0;
		background: transparent;
	}

	.mz-news-date strong {
		font-size: 20px;
	}

	.mz-news-content h3 {
		font-size: 15px;
	}

	.mz-company-image {
		height: 420px;
	}

	.mz-company-content {
		padding: 50px 25px;
	}

	.mz-company-content h2 {
		font-size: 31px;
	}

	.mz-company-data {
		gap: 35px;
		margin-top: 35px;
		margin-bottom: 35px;
	}

	.mz-company-data strong {
		font-size: 30px;
	}

	.mz-contact h2 {
		font-size: 56px;
	}

	.mz-contact-jp {
		margin-top: 40px;
		margin-bottom: 40px;
		font-size: 11px;
	}

	.mz-contact-button {
		width: 100%;
		max-width: 310px;
	}

}

/* ==================================================
	TYPOGRAPHY FINAL TUNING
================================================== */

.mz-copy-title,
.mz-proval-copy h2,
.mz-company-content h2 {
	font-family: 'Shippori Mincho', serif;
	font-weight: 400;
	letter-spacing: .09em;
}

.mz-copy-title {
	font-size: clamp(28px, 2.1vw, 40px);
	line-height: 1.8;
}

.mz-proval-copy h2 {
	font-size: clamp(27px, 2.1vw, 38px);
	line-height: 1.8;
}

.mz-company-content h2 {
	font-size: clamp(28px, 2.2vw, 40px);
	line-height: 1.8;
}

.mz-large-title {
	font-size: clamp(46px, 4vw, 70px);
	line-height: 1;
	letter-spacing: -.01em;
}

.mz-hero-title {
	font-size: clamp(58px, 4.8vw, 88px);
	line-height: .9;
	letter-spacing: -.02em;
}

.mz-contact h2 {
	font-size: clamp(54px, 5vw, 82px);
	line-height: .92;
	letter-spacing: -.01em;
}

@media (max-width: 991.98px) {
	.mz-hero-title {
		font-size: 64px;
	}
}

@media (max-width: 767.98px) {
	.mz-copy-title {
		font-size: 28px;
	}

	.mz-large-title {
		font-size: 46px;
	}

	.mz-hero-title {
		font-size: 50px;
	}

	.mz-proval-copy h2,
	.mz-company-content h2 {
		font-size: 28px;
	}

	.mz-contact h2 {
		font-size: 50px;
	}
}


/* ==================================================
	FONT SIZE FINAL ADJUSTMENT
	・11px未満は使用しない
	・文章／説明文は13px未満にしない
================================================== */

/* 小さなラベル・補助情報も最低11px */
.mz-section-jp,
.mz-small-en,
.mz-hero-label,
.mz-hero-side-text,
.mz-scroll,
.mz-product-info p:not(.mz-product-no),
.mz-philosophy-item > span,
.mz-company-data span,
.mz-news-category,
.news-list .date,
.news-list .cat,
.news-more {
	font-size: 11px;
}


/* 本文・説明文は最低13px */
.mz-hero-text,
.mz-about-text,
.mz-products-description,
.mz-philosophy-text,
.mz-philosophy-item p,
.mz-proval-copy > p:not(.mz-proval-brand),
.mz-news-content p,
.mz-company-content > p:not(.mz-small-en),
.mz-contact-jp,
.news-list .title {
	font-size: 13px;
}


/* NEWSのタイトルは本文より少し大きめ */
.news-list .title {
	font-size: 15px;
}


/* 商品カテゴリ補足と説明文 */
.mz-product-sub {
	font-size: 12px !important;
}

.mz-product-description {
	font-size: 13px !important;
}


/* スマートフォンでも本文は13pxを下回らない */
@media (max-width: 767.98px) {

	.mz-hero-label,
	.mz-section-jp,
	.mz-small-en,
	.mz-product-info p:not(.mz-product-no),
	.mz-philosophy-item > span,
	.mz-company-data span,
	.mz-news-category,
	.news-list .date,
	.news-list .cat,
	.news-more {
		font-size: 11px;
	}

	.mz-hero-text,
	.mz-about-text,
	.mz-products-description,
	.mz-philosophy-text,
	.mz-philosophy-item p,
	.mz-proval-copy > p:not(.mz-proval-brand),
	.mz-news-content p,
	.mz-company-content > p:not(.mz-small-en),
	.mz-contact-jp {
		font-size: 13px;
	}

	.news-list .title {
		font-size: 14px;
	}
}


/* ==================================================
	HAL ABOUT STYLE RESPONSIVE OVERRIDES
================================================== */

@media (max-width: 1199.98px) {

	.mz-philosophy,
	.mz-company {
		padding-top: 120px;
		padding-bottom: 120px;
	}

	.mz-philosophy-image-wrap {
		padding-right: 45px;
	}

	.mz-company-image-wrap {
		padding-left: 45px;
	}

	.mz-philosophy-image,
	.mz-company-image {
		height: 560px;
	}

	.mz-philosophy-content {
		padding-left: 25px;
	}

	.mz-company-content {
		padding-right: 35px;
	}

}

@media (max-width: 991.98px) {

	.mz-philosophy,
	.mz-company {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.mz-philosophy-image-wrap {
		margin-left: -24px;
		margin-right: -24px;
		padding-right: 0;
	}

	.mz-philosophy-image {
		height: 500px;
	}

	.mz-philosophy-content {
		max-width: none;
		padding-left: 0;
		padding-top: 60px;
	}

	.mz-company-content {
		max-width: none;
		padding-right: 0;
		padding-bottom: 60px;
	}

	.mz-company-image-wrap {
		margin-left: -24px;
		margin-right: -24px;
		padding-left: 0;
	}

	.mz-company-image {
		height: 500px;
	}

}

@media (max-width: 767.98px) {

	.mz-philosophy,
	.mz-company {
		padding-top: 85px;
		padding-bottom: 85px;
	}

	.mz-philosophy-image {
		height: 390px;
	}

	.mz-philosophy-content {
		padding-top: 50px;
	}

	.mz-philosophy-content .mz-copy-title {
		font-size: 28px;
	}

	.mz-philosophy-text {
		margin-top: 30px;
		margin-bottom: 35px;
		font-size: 13px;
	}

	.mz-company-content {
		padding-bottom: 50px;
	}

	.mz-company-content h2 {
		font-size: 28px;
	}

	.mz-company-image {
		height: 390px;
	}

	.mz-company-data {
		gap: 35px;
		margin-top: 35px;
		margin-bottom: 35px;
	}

	.mz-company-data strong {
		font-size: 30px;
	}

}




/* ==================================================
	SECTION BACKGROUND FINAL
================================================== */

/* 背景色は各セクションで明確に切り替える */
#about {
	background: #ffffff;
}

#products {
	background: #f7f6f3;
}

#philosophy {
	background: #ece9e3;
}

#proval {
	background: #ffffff;
}

#exhibition {
	background: #f7f6f3;
}

#news {
	background: #ffffff;
}

#company {
	background: #f2efea;
}

#contact {
	background: var(--mz-purple-dark);
}


/* ==================================================
	SECTION HEADER
================================================== */

.mz-section-head {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	margin-bottom: 85px;
}


.mz-section-en {
	margin: 0 0 8px;
	color: #222;
	font-family: 'Cormorant Garamond', serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .1em;
}

.mz-section-jp {
	margin: 0;
	color: #999999;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: .18em;
}


/* ==================================================
	SECTION SPACING
================================================== */

#about,
#products,
#philosophy,
#proval,
#exhibition,
#news,
#company {
	padding-top: 150px;
	padding-bottom: 150px;
}

#contact {
	padding-top: 165px;
	padding-bottom: 165px;
}


/* ==================================================
	TABLET
================================================== */

@media (max-width: 1199.98px) {

	.mz-section-head {
		margin-bottom: 65px;
	}

	#about,
	#products,
	#philosophy,
	#proval,
	#exhibition,
	#news,
	#company {
		padding-top: 110px;
		padding-bottom: 110px;
	}

	#contact {
		padding-top: 125px;
		padding-bottom: 125px;
	}

}


/* ==================================================
	SMARTPHONE
================================================== */

@media (max-width: 767.98px) {

	.mz-section-head {
		gap: 16px;
		margin-bottom: 50px;
	}

	

	.mz-section-en {
		font-size: 24px;
	}

	.mz-section-jp {
		font-size: 11px;
	}

	#about,
	#products,
	#philosophy,
	#proval,
	#exhibition,
	#news,
	#company {
		padding-top: 85px;
		padding-bottom: 85px;
	}

	#contact {
		padding-top: 100px;
		padding-bottom: 100px;
	}

}


/* ==================================================
	EXHIBITION FONT SIZE FINAL
================================================== */

.mz-exhibition-intro p,
.mz-exhibition-ended,
.mz-exhibition-description,
.mz-exhibition-info-value {
	font-size: 13px;
}

.mz-exhibition-status,
.mz-exhibition-date-label,
.mz-exhibition-info-label,
.mz-exhibition-official {
	font-size: 11px;
}

/* ==================================================
	PRODUCTS FINAL OVERRIDE
	リード文・商品番号の最終調整
================================================== */

.mz-products-description {
	max-width: 430px;
	margin: 0 0 2px auto;
	color: #666666;
	font-size: 15px;
	font-weight: 300;
	line-height: 2;
	letter-spacing: .045em;
}

.mz-product-no {
	margin: 2px 0 0;
	color: var(--mz-purple);
	font-family: 'Cormorant Garamond', serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .04em;
}

.mz-product-sub {
	font-size: 12px !important;
}

.mz-product-description {
	font-size: 13px !important;
}

@media (max-width: 1399.98px) {
	.mz-products-description {
		font-size: 14px;
	}

	.mz-product-no {
		font-size: 24px;
	}
}

@media (max-width: 991.98px) {
	.mz-products-description {
		max-width: none;
		margin: 35px 0 0;
		font-size: 14px;
		line-height: 1.95;
	}

	.mz-product-no {
		font-size: 23px;
	}
}

@media (max-width: 767.98px) {
	.mz-products-description {
		margin-top: 24px;
		font-size: 13px;
		line-height: 1.9;
	}

	.mz-product-no {
		font-size: 21px;
	}
}

/* ==================================================
	ABOUT / ORIGINAL BRAND
	同サイズ2枚＋上下ずらし
================================================== */


/* ==================================================
	ABOUT GALLERY
================================================== */

.mz-about-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 28px;
	width: 100%;
	padding-right: 38px;
}

.mz-about-photo {
	position: relative;
	height: 560px;
	overflow: hidden;
	background: #f2f2f2;
}

.mz-about-photo--main {
	margin-top: 0;
}

.mz-about-photo--sub {
	margin-top: 70px;
}

.mz-about-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.15s cubic-bezier(.19, 1, .22, 1);
}

.mz-about-gallery:hover .mz-about-photo img {
	transform: scale(1.025);
}


/* ==================================================
	ORIGINAL BRAND / PROVAL GALLERY
================================================== */

.mz-proval-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 28px;
	width: 100%;
	padding-left: 38px;
}

.mz-proval-photo {
	position: relative;
	height: 560px;
	overflow: hidden;
	background: #f2f2f2;
}

.mz-proval-photo--main {
	margin-top: 0;
}

.mz-proval-photo--sub {
	margin-top: 70px;
}

.mz-proval-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.15s cubic-bezier(.19, 1, .22, 1);
}

.mz-proval-gallery:hover .mz-proval-photo img {
	transform: scale(1.025);
}


/* ==================================================
	DECORATION
================================================== */

.mz-about-photo--sub::before,
.mz-proval-photo--sub::before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 22px;
	left: 22px;
	width: 42px;
	height: 1px;
	background: rgba(255,255,255,.85);
	pointer-events: none;
}

.mz-about-photo--sub::after,
.mz-proval-photo--sub::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 22px;
	left: 22px;
	width: 1px;
	height: 42px;
	background: rgba(255,255,255,.85);
	pointer-events: none;
}


/* ==================================================
	1400px以下
================================================== */

@media (max-width: 1399.98px) {

	.mz-about-gallery {
		gap: 22px;
		padding-right: 28px;
	}

	.mz-proval-gallery {
		gap: 22px;
		padding-left: 28px;
	}

	.mz-about-photo,
	.mz-proval-photo {
		height: 520px;
	}

	.mz-about-photo--sub,
	.mz-proval-photo--sub {
		margin-top: 60px;
	}

}


/* ==================================================
	TABLET
================================================== */

@media (max-width: 991.98px) {

	.mz-about-gallery,
	.mz-proval-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
		padding-left: 0;
		padding-right: 0;
	}

	.mz-about-gallery {
		margin-bottom: 55px;
	}

	.mz-proval-gallery {
		margin-top: 55px;
	}

	.mz-about-photo,
	.mz-proval-photo {
		height: 480px;
	}

	.mz-about-photo--sub,
	.mz-proval-photo--sub {
		margin-top: 50px;
	}

}


/* ==================================================
	SMARTPHONE
================================================== */

@media (max-width: 767.98px) {

	.mz-about-gallery,
	.mz-proval-gallery {
		gap: 12px;
	}

	.mz-about-photo,
	.mz-proval-photo {
		height: 360px;
	}

	.mz-about-photo--sub,
	.mz-proval-photo--sub {
		margin-top: 35px;
	}

	.mz-about-photo--sub::before,
	.mz-proval-photo--sub::before {
		top: 15px;
		left: 15px;
		width: 30px;
	}

	.mz-about-photo--sub::after,
	.mz-proval-photo--sub::after {
		top: 15px;
		left: 15px;
		height: 30px;
	}

}


/* ==================================================
	SMALL SMARTPHONE
================================================== */

@media (max-width: 575.98px) {

	.mz-about-photo,
	.mz-proval-photo {
		height: 300px;
	}

	.mz-about-photo--sub,
	.mz-proval-photo--sub {
		margin-top: 28px;
	}

}

/* ==================================================
	CONTACT PAPER PLANE ICON
	既存のCONTACTボタンデザインを維持
================================================== */

#global-nav .global-nav-list > li.menu-contact > a .global-nav-name {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Font Awesome 紙飛行機 */
#global-nav .global-nav-list > li.menu-contact > a .global-nav-name::before {
	content: "\f1d8";
	font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	flex: 0 0 auto;
	margin-right: 9px;
	font-size: 12px;
	line-height: 1;
}

/* CONTACTには通常ナビの下線を表示しない */
#global-nav .global-nav-list > li.menu-contact > a .global-nav-name::after {
	display: none !important;
}

/* スクロール時 */
.header_scrolled #global-nav .global-nav-list > li.menu-contact > a .global-nav-name::before {
	margin-right: 8px;
	font-size: 11px;
}

/* 1200px以下 */
@media (max-width: 1199.98px) {

	#global-nav .global-nav-list > li.menu-contact > a .global-nav-name::before {
		margin-right: 7px;
		font-size: 11px;
	}

}

