@charset "UTF-8";

/* =========================================================

WAVE LIFE 共通CSS

========================================================= */

/* 共通
-------------------------------------- */
html {
	font-size: 62.5%;
}

img {
	width: 100%;
	vertical-align: bottom;
}

body {
	margin: 0;
	padding: 0;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	color: #000;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* ヘッダー設定
-------------------------------------- */
.site_header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9000;
	padding: 0 62.5px;
	box-sizing: border-box;
	opacity: 1;
	transform: translateY(-180px);
	transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
	pointer-events: none;
	height: 160px;
	display: flex;
	align-items: center;
	mix-blend-mode: normal;
	filter: none;
	background-color: #fff;
	border-bottom: 1px solid #eee;
}
.site_header a{
	color:#000;
	transition: opacity 0.5s ease;
}
.site_header a[href]:hover{
	color:#000;
	opacity: 0.5;
}

.site_header.is_visible {
	transform: translateY(0);
	pointer-events: auto;
}

.header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1780px;
	margin: 0 auto;
}

.header_left {
	display: flex;
	align-items: center;
	gap: 80px;
}

.header_logo.wave_logo {
	cursor:
		url("/life/index/img/cursor.svg") 3 2,
		auto;
}

.nav_logo_pc,
.nav_logo_sp {
	display: block;
	width: auto;
	filter: none;
}

.nav_logo_pc {
	width: 200px;
}

.nav_logo_sp {
	width: min(13.5vw, 60px);
	display: none;
}

.header_nav {
	display: flex;
	gap: 90px;
	align-items: center;
}

.menu_btn_sp .menu_btn_text.is_fading_out {
	opacity: 0;
	transform: translateY(-10px);
}

.menu_btn_sp .menu_btn_text.is_fading_in {
	opacity: 0;
	transform: translateY(10px);
}

@media (max-width: 1024px) {
	.c_header_pickup_menu_item {
		order: 1;
	}
}

/* 言語切替
-------------------------------------- */
.c_header_pickup_menu_item {
	padding: 0;
	height: fit-content;
}

.gglobe {
	background: none !important;
	width: fit-content !important;
	height: 1em !important;
	font-family: "Zalando Sans Expanded", sans-serif;
}

.gglobe:hover {
	transform: initial !important;
}

.gglobe::before {
	content: "Language";
	display: block;
	color: #000;
}

.nturl {
	width: 4rem !important;
	color: #000 !important;
	font-family: "Zalando Sans Expanded", sans-serif;
	top: 45px !important;
}

.nturl[data-gt-lang="zh-CN"] {
	left: 30px !important;
}

/* 国旗画像を隠して言語名テキストに差し替え。
   CSSは要素生成と同時に適用されるため、GTranslate(外部CDN)の
   生成タイミングに依存せず iOS でも確実に効く（JS非依存）。 */
.nturl[data-gt-lang] {
	overflow: visible !important;
	white-space: nowrap;
	background-image: none !important;
}

.nturl[data-gt-lang] img {
	display: none !important;
}

.nturl[data-gt-lang]::after {
	display: inline;
}

.nturl[data-gt-lang="ja"]::after {
	content: "日本語";
}

.nturl[data-gt-lang="zh-CN"]::after {
	content: "中国語";
}

.nav_link {
	text-decoration: none;
	font-family: "Zalando Sans Expanded", sans-serif;
	font-size: 1.8rem;
	font-weight: 300;
	letter-spacing: 0;
	position: relative;
	color: #000;
}

.menu_btn_sp {
	display: none;
	line-height: 1.6;
	background: #000;
	color: #fff;
	padding: 5px 0;
	border-radius: 50px;
	font-size: 1.4rem;
	font-family: "Zalando Sans Expanded", sans-serif;
	width: 70px;
	text-align: center;
	overflow: hidden;
	position: relative;
	cursor:
		url("/life/index/img/cursor.svg") 3 2,
		auto;
}

.menu_btn_sp .menu_btn_text {
	display: inline-block;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}

@media (max-width: 1024px) {

	.site_header {
		height: 80px;
		padding: 28px 6.25% 14px;
		filter: none;
		transform: translateY(-100px);
	}
	.nav_logo_pc {
		display: none;
	}

	.nav_logo_sp {
		display: block;
	}

	.gglobe::before {
		content: "Lg";
	}

	.nturl {
		top: 45px !important;
	}

	.nturl[data-gt-lang="ja"] {
		left: -70px !important;
	}

	.nturl[data-gt-lang="zh-CN"] {
		left: -20px !important;
	}

	.nav_link.pc_only {
		display: none;
	}

	.menu_btn_sp {
		font-size: 1.1rem;
		display: block;
		cursor:
			url("/life/index/img/cursor.svg") 3 2,
			auto;
	}

	.header_left {
		gap: 15px;
	}

	.header_nav {
		gap: 5vw;
		order: 2;
	}

	.header_logo.wave_logo {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}

	.header_nav.left_nav {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 14px;
		position: fixed;
		top: 88px;
		left: 15px;
		width: min(41.6vw, 200px);
		height: min(42vw, 212px);
		background-color: rgba(255, 255, 255, 0.75);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		border-radius: 24px;
		padding: min(50px,10%) min(7%,50px);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
		z-index: 8999;
		opacity: 0;
		transform: translateY(-8px);
		pointer-events: none;
		transition:
			opacity 0.4s ease,
			transform 0.4s ease;
	}

	.header_nav.left_nav.is_active {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}

	body.is_resizing .header_nav.left_nav,
	body.is_resizing .header_nav.left_nav * {
		transition: none !important;
	}

	.header_nav.left_nav .nav_link {
		color: #000;
		font-size: 1.1rem;
		letter-spacing: 0.05em;
	}

	.header_nav.right_nav .nav_link {
		font-size: 1.1rem;
	}
}

/* フッター
-------------------------------------- */
.site_footer {
	background-color: #eeeeee;
	color: #000;
	padding: 111px 0 108px;
	position: relative;
	z-index: 20;
	font-size: clamp(12px, 3.12vw, 15px);
}

.footer_inner {
	max-width: 1200px;
	margin: 0 auto;
}

.footer_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: min(7.7%, 56px);
}

.footer_logo {
	width: min(18.95vw, 152.5px);
}

.footer_sns {
	margin-right: 102px;
}

.footer_sns svg {
	width: 30px;
	height: 30px;
	stroke: #000;
	transition: opacity 0.3s;
}

.footer_sns a:hover svg {
	opacity: 0.6;
}

.footer_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer_links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.footer_links a {
	color: #000;
	text-decoration: none;
	letter-spacing: 0.05em;
	transition: opacity 0.3s;
}

.footer_links a:hover {
	opacity: 0.5;
	color: #000;
}

.copyright {
	margin: 0;
	color: #000;
	font-family: "Zalando Sans Expanded", "Noto Sans JP", sans-serif;
	letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
	.site_footer {
		padding: 12.5% 6.6%;
	}

	.footer_links a {
		letter-spacing: 0.05em;
	}

	.footer_bottom {
		display: block;
	}

	.footer_links {
		gap: 15px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		margin-bottom: min(14.3%, 56px);
	}

	.footer_inner {
		position: relative;
	}

	.footer_sns {
		position: absolute;
		right: 0;
		bottom: 0;
		margin: 0;
	}
}

/* サブページ共通
-------------------------------------- */
.sp_hero {
	width: 100%;
    height: 426px;
    overflow: hidden;
    margin-top: 136px;
    position: relative;
}

.sp_hero img {
    width: min(100%, 1920px);
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}

@media (max-width: 1024px) {
	.sp_hero {
		height: 44.8vw;
		margin-top: 60px;
	}
}