@charset "utf-8";
/* ----------------------------------------------------------------------------------------------
MARK: setup
---------------------------------------------------------------------------------------------- */

*,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family:
		'Noto Sans JP', 'Elms Sans', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN',
		'Hiragino Sans', Meiryo, sans-serif;
	max-width: 100%;
	background-color: unset;
	font-size: calc(100vw * 14 / 375);
	font-weight: 500;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}

a {
	background-color: transparent;
	text-decoration: none;
	color: inherit;
	transition: 0.4s;
}

a * {
	transition: 0.4s;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

img {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	vertical-align: bottom;
	width: 100%;
	max-width: 100%;
	height: auto;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-touch-callout: none;
	-moz-user-select: none;
	user-select: none;
}

button {
	border: none;
	cursor: pointer;
}

/* ----------------------------------------------------------------------------------------------
MARK: common
---------------------------------------------------------------------------------------------- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
}

body {
	background-color: #d5dbd7;
	color: #312f2f;
	letter-spacing: 0.05em;
}

.pc-bg {
	display: none;
}

.sp-wrap {
	position: relative;
	width: 100%;
	height: auto;
	box-sizing: content-box;
	margin: 0 auto;
	background-color: #d5dbd7;
	z-index: 1;
}

.container {
	width: min(480px, calc(100% - 40px));
	margin-inline: auto;
}

.container02 {
	width: min(480px, calc(100% - 80px));
	margin-inline: auto;
}

.c_center {
	text-align: center !important;
}

.c_sp_none {
	display: none;
}

.c_pc_none {
	display: unset;
}

.c_bold {
	font-weight: bold;
}

.c_bk {
	color: #000;
}

.c_right {
	text-align: right;
}

.c_title {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 21.428rem;
	height: 6rem;
	padding-top: 0.75rem;
	padding-bottom: 0.5rem;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.2;
	z-index: 10;
}

.indent1em {
	display: inline-block;
	padding-left: 1em;
	text-indent: -1em;
}

.font_en {
	font-family: 'Elms Sans';
}

.all_wrap {
	animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* アコーディオン */
summary {
	/* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
	display: block;
	/* Safariで表示されるデフォルトの三角形アイコンを非表示にします */
	&::-webkit-details-marker {
		display: none;
	}
}

.js-summary {
	display: flex;
	align-items: center;
	position: relative;
	font-weight: 300;
	font-size: 0.875em;
	gap: 5px;
	padding: 0 0 0 15px;
	cursor: pointer;
}

.js-summary .num {
	color: #d5dbd7;
	font-size: 200%;
	font-weight: 300;
}

.ac-icon {
	display: block;
	position: absolute;
	top: 50%;
	right: 17px;
	transform: translateY(-50%);
	width: 17px;
	transform-origin: center 30%;
	transition: transform 0.4s;
}

.ac-icon img {
	display: block;
}

/* is-openedクラスが付与されたときのスタイル */
details.is-opened .ac-icon {
	transform: rotate(180deg);
}

/* --------アコーディオンの中身のスタイル-------- */
.content {
	overflow: hidden;
	/* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}

.content_inner {
	padding: 0px 23px 27px;
}

.content_inner p {
	font-weight: 300;
	font-size: 0.875em;
	line-height: 2.2;
}

.content_inner p a {
	font-weight: 300;
	font-size: 1em;
	text-decoration: underline;
}

.support-center {
	display: block;
	font-weight: 300;
	font-size: 1em;
	line-height: 2.2;
	padding-top: 1em;
}

/* AOSセッティング */
/* アニメーション発火前のスタイル */
[data-aos='fade-up'] {
	transform: translate3d(0, 25px, 0);
	opacity: 0;
	transition-property: transform, opacity;
}
/* アニメーション発火時のスタイル */
[data-aos='fade-up'].aos-animate {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

@media (min-width: 768px) {
	*,
	::before,
	::after {
		font-size: 14px;
	}

	body {
		width: 100vw;
	}

	.pc-bg {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: #a4afb7;
		background: linear-gradient(0deg, rgba(164, 175, 183, 1) 0%, rgba(204, 204, 204, 1) 100%);
		z-index: 0;
	}

	.pc-bg::after {
		content: '';
		display: block;
		width: 50vw;
		height: 50svh;
		background-color: #e7efea;
		border-radius: 50%;
		position: absolute;
		top: 60%;
		left: -10%;
		opacity: 0.58;
		filter: blur(47px);
	}

	.pc_logo {
		position: absolute;
		top: 40px;
		left: 40px;
		width: 94px;
	}

	.pc_menu {
		display: none;
	}

	.sp-wrap {
		width: min(100%, 430px);
		box-sizing: content-box;
		margin: 0 auto 0 20vw;
		scrollbar-width: none;
	}

	.sp-wrap::-webkit-scrollbar {
		display: none;
	}

	.sp-wrap.pan-sp-wrap {
		border: none;
	}

	.c_sp_none {
		display: unset;
	}

	.c_pc_none {
		display: none;
	}
}

@media (min-width: 980px) {
	.pc_menu {
		display: block;
		position: relative;
		margin-left: calc(20vw + 430px);
		height: 100%;
	}

	.pc_menu .inner {
		position: absolute;
		width: clamp(200px, 50%, 500px);
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.pc_menu .model {
		display: flex;
	}

	.pc_menu .model a:hover .model-img {
		transform: translateY(-3px);
	}

	.pc_menu .model-img {
		padding-inline: 10%;
		height: auto;
	}

	.pc_menu .model-linse .model-logo {
		width: 44%;
		margin-top: 10%;
		margin-bottom: 0;
	}

	.pc_menu .model-linse-lite .model-logo {
		width: 45%;
		margin-top: 10%;
		margin-bottom: 0;
	}

	.pc_menu .pc_copy {
		margin-top: 18%;
	}

	.pc_menu .btn.btn-mv {
		margin-top: 8%;
	}

	.pc_menu .debut {
		line-height: 1.4;
	}

	.pc_menu .online {
		display: flex;
		flex-direction: column;
		max-width: 251px;
		margin-inline: auto;
	}
}

/* ----------------------------------------------------------------------------------------------
MARK: コンポーネント
---------------------------------------------------------------------------------------------- */
.btn {
	position: relative;
	display: block;
	margin: 33px auto 0;
	padding: 10px 5px;
	font-size: 14px;
	text-align: center;
	background-color: #fff;
	border: 1px solid #fff;
	cursor: pointer;
	color: #747474;
	border-radius: 50em;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
	width: 241px;
}

.btn::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 3.5%;
	content: '';
	display: block;
	border: 1px solid #747474;
	border-radius: 50%;
	width: 1em;
	height: 1em;
}

.btn .arrow {
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 6%;
	width: 19px;
}

.btn.btn-mv {
	color: #fff;
	background: rgba(62, 62, 62, 0);
	background: linear-gradient(180deg, rgba(62, 62, 62, 0.16) 0%, rgba(213, 219, 215, 0) 100%);
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
	margin-top: 13px;
}

.btn.btn-mv::after {
	border: 1px solid #fff;
}

@media (min-width: 768px) {
}

/* ----------------------------------------------------------------------------------------------
MARK: header
---------------------------------------------------------------------------------------------- */
.header {
	position: absolute;
	top: 0;
	width: 100%;
	margin-inline: auto;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	gap: 1em;
	z-index: 100;
}

/* FVを過ぎた後に付与するクラス */
.header.is-fixed {
	position: fixed;
	animation: slideIn 0.3s forwards;
	background: #d5dbd7;
	background: linear-gradient(
		0deg,
		rgba(213, 219, 215, 0) 0%,
		rgba(201, 206, 202, 0.2) 40%,
		rgba(116, 116, 116, 0.7) 100%
	);
}

/* FVに戻った時のアニメーション */
.header.is-unfixed {
	position: fixed; /* アニメーション中は浮かせておく */
	animation: slideOut 0.3s forwards;
}

@keyframes slideIn {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes slideOut {
	from {
		transform: translateY(0);
		opacity: 1;
	}
	to {
		transform: translateY(-100%);
		opacity: 0;
	}
}

.megane-logo {
	max-width: 48px;
	flex: 1;
}

.header.is-fixed .megane-logo,
.header.is-unfixed .megane-logo {
	opacity: 0;
	visibility: hidden;
}

.fixed_nav {
	display: flex;
	align-items: center;
}

.nav-list {
	display: flex;
	align-items: start;
	gap: 0.8em;
}

.nav-list__item a {
	font-size: 0.75em;
	line-height: 1;
	color: #fff;
}

.nav-list__item:nth-child(1) img {
	width: 5em;
	max-width: 77px;
}
.nav-list__item:nth-child(2) img {
	width: 5em;
	max-width: 79px;
}
.nav-list__item:nth-child(3),
.nav-list__item:nth-child(4) {
	margin-top: 0.5em;
}

/* ----------------------------------------------------------------------------------------------
MARK: fv
---------------------------------------------------------------------------------------------- */

.fv {
	position: relative;
	background: #939393;
	background: linear-gradient(
		0deg,
		rgba(147, 147, 147, 1) 0%,
		rgba(200, 206, 204, 1) 46%,
		rgba(239, 239, 239, 1) 67%,
		rgba(190, 197, 196, 1) 85%,
		rgba(130, 140, 147, 1) 100%
	);
	/* 従来のブラウザ用フォールバック */
	min-height: 790px;
	/* モダンブラウザ用：アドレスバーを除いた「確実に見える高さ」 */
	height: 100svh;
	display: flex;
	align-items: end;
	padding-bottom: 20%;
	overflow: hidden;
}

.mv-linse {
	position: absolute;
	top: 10%;
	width: 90%;
	right: -3%;
}

.mv-linse-lite {
	position: absolute;
	top: 32%;
	width: 69%;
	left: 2%;
}

.fv_logo {
	margin: 0 auto;
	padding: 0;
	width: 78%;
}

.debut {
	color: #fff;
	font-size: 25px;
	text-align: center;
	letter-spacing: 0.2rem;
	margin-top: 18px;
}

.fv .online {
	display: flex;
	flex-direction: column;
	max-width: 251px;
	margin-inline: auto;
}

@media (min-width: 768px) {
	.header {
		width: min(100%, 430px);
	}
}

/* ----------------------------------------------------------------------------------------------
MARK: Linse
---------------------------------------------------------------------------------------------- */
#linse .linse-section01 {
	background: #d5dbd7;
	background: linear-gradient(
		0deg,
		rgba(213, 219, 215, 1) 0%,
		rgba(0, 65, 118, 1) 20%,
		rgba(0, 65, 118, 1) 70%,
		rgba(147, 147, 147, 1) 100%
	);
	color: #fff;
	padding-bottom: 72px;
}

#linse .product-ttl {
	width: 47%;
	margin-inline: auto;
}

#linse .product-main-img {
	margin-left: 25px;
}

.product-lead {
	margin-top: 45px;
}

.product-lead h2 {
	font-size: 1.7em;
	margin-bottom: 1.2em;
}

.product-lead p {
	font-size: 0.875em;
	line-height: 2.5;
}

.product-price {
	margin-top: 33px;
}

#linse .product-price .logo {
	width: 8.5em;
	margin-bottom: 10px;
}

.product-price p {
	font-size: 12px;
}

.youtube {
	padding-inline: 10px;
	margin-block: 55px 45px;
}

.youtube img {
	cursor: pointer;
}

.youtube iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.splide__slide {
	background: #fff;
	border-radius: 10px;
	color: #747474;
	padding: 20px 35px 40px 35px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.function-heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: end;
}

.function-icon {
	height: 51px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.function-icon img {
	height: auto;
	width: 50%;
}

.splide__slide h3 {
	font-size: 18px;
	font-weight: bold;
}

.function-txt {
	margin-top: 15px;
	font-size: 13px;
	letter-spacing: 0.12em;
	line-height: 2.2;
}

.function-img {
	margin-top: 15px;
}

.splide__arrows {
	display: flex;
	justify-content: end;
	gap: 1.5em;
	margin: 38px 40px 0 0;
}

.splide__arrow {
	position: relative;
	top: unset;
	left: unset;
	right: unset;
	transform: none;
	opacity: 1;
}

.linse-section02 {
	margin-top: -35px;
}

.case {
	background: #fff;
	border-radius: 10px;
	padding: 25px 32px 35px 32px;
}

.case .img-wrap {
	padding-inline: 15px;
	margin-block: 15px 30px;
}

.section-heading h2 span {
	display: block;
}

.section-heading .font_en {
	text-transform: uppercase;
	font-weight: 300;
	font-size: 2.125em;
	line-height: 1.4;
}

.section-heading .ja {
	font-size: 13px;
	font-weight: 600;
}

.case .main-txt {
	font-size: 13px;
	color: #747474;
	line-height: 2.1;
}

#linse .linse-section03 {
	background: #d5dbd7;
	background: linear-gradient(
		0deg,
		rgba(213, 219, 215, 1) 0%,
		rgba(0, 61, 111, 1) 47%,
		rgba(0, 61, 111, 1) 87%,
		rgba(213, 219, 215, 1) 100%
	);
	color: #fff;
	margin-top: 50px;
	padding-block: 50px 87px;
}

#linse .linse-section03 .section-heading h3 {
	font-size: 1.25em;
}

#linse .linse-section03 .lead {
	font-size: 0.875em;
	margin-top: 1.5em;
	line-height: 2.5;
}

#linse .linse-section03 .img-section {
	margin-top: 40px;
}

.img-section img {
	display: block;
}

#linse .img-section .product-front {
	padding-right: 1%;
	margin-bottom: 3em;
}

#linse .img-section .gif01 {
	padding-right: 40px;
	margin-bottom: 1.8em;
}

#linse .img-section .gif02 {
	padding-inline: 40% 40px;
}

#linse .img-section .attention {
	font-size: 11px;
	display: block;
	text-align: right;
	margin-top: 1em;
	padding-inline: 40% 40px;
}

.app {
	margin-top: 2.5em;
	background: #0067ba;
	background: linear-gradient(
		0deg,
		rgba(0, 103, 186, 1) 0%,
		rgba(0, 92, 167, 1) 35%,
		rgba(0, 68, 124, 1) 63%,
		rgba(42, 114, 167, 1) 100%
	);
	padding: 30px 40px 40px 40px;
}

.app .img-wrap {
	margin-top: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.app .app-icon {
	width: 32.5%;
}
.app .mock {
	width: 44.5%;
}

.app .mock::after {
	content: '';
	display: block;
	background: rgba(0, 0, 0, 0.6);
	height: 0.1em;
	border-radius: 50%;
	filter: blur(3px);
	margin: 10px 14% 0;
}

.app .main-txt {
	font-size: 0.875em;
	margin-top: 1.2em;
}

.app .sub {
	font-weight: 300;
	font-size: 0.875em;
	margin-top: 1em;
}

.app .bnr-wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 1.8em;
	padding-inline: 15%;
}

@media (min-width: 768px) {
	.app .bnr-wrap {
		flex-direction: row;
		padding-inline: 0;
	}
}

.agreement {
	font-weight: 300;
	font-size: 0.875em;
	margin-top: 1em;
}

.agreement a {
	font-weight: 300;
	font-size: inherit;
	text-decoration: underline;
}

.btn-wrap.cta.cta01 {
	margin-block: -25px;
}

.btn-wrap.cta .btn {
	margin-top: 0;
}

.btn-wrap .online {
	font-size: 14px;
	font-weight: 300;
	color: #747474;
	margin-top: 0.5em;
}

.fv .btn-wrap .online {
	color: #fff;
}

/* ----------------------------------------------------------------------------------------------
MARK: Linse Lite
---------------------------------------------------------------------------------------------- */

#linse-lite .linsel-section01 {
	padding-top: 80px;
	background: #d5dbd7;
	background: linear-gradient(
		0deg,
		rgba(213, 219, 215, 1) 0%,
		rgba(188, 182, 110, 1) 19%,
		rgba(165, 157, 126, 1) 81%,
		rgba(213, 219, 215, 1) 100%
	);
}

#linse-lite .product-ttl {
	width: 49%;
	margin-inline: auto;
}

#linse-lite .product-main-img {
	margin: 3em 8% 0 0;
}

#linse-lite .product-lead,
#linse-lite .product-price {
	color: #fff;
}

#linse-lite .product-price .logo {
	width: 8.5em;
	margin-bottom: 10px;
}

#linse-lite .product-detail {
	margin-top: 45px;
}

#linse-lite .case {
	margin-top: 38px;
}

#linse-lite .case .img-wrap {
	padding-inline: 0;
}

#linse-lite .img-section {
	margin-block: 4.5em 50px;
	padding-left: 20px;
}

/* ----------------------------------------------------------------------------------------------
MARK: spec
---------------------------------------------------------------------------------------------- */

#spec {
	background: #d5dbd7;
	background: linear-gradient(
		0deg,
		rgba(213, 219, 215, 1) 0%,
		rgba(255, 255, 255, 1) 10%,
		rgba(255, 255, 255, 1) 90%,
		rgba(213, 219, 215, 1) 100%
	);
	padding-block: 100px 80px;
	margin-top: -47px;
}

#spec .section-heading {
	color: #000;
}

#spec .model {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-top: 40px;
}

#spec .model > div {
	flex: 1;
}

.model-linse .model-logo {
	width: 60%;
	margin-inline: auto;
}

.model-linse-lite .model-logo {
	width: 61%;
	margin-inline: auto;
}

.model-logo {
	margin-bottom: 25px;
}

.model-logo img {
	vertical-align: top;
}

.model-img {
	padding-inline: 10%;
	height: 3.9em;
}

.model-img img {
	vertical-align: top;
}

.model-name {
	border-top: 4px solid;
}

.model-linse .model-name {
	border-color: #004176;
}

.model-linse-lite .model-name {
	border-color: #846e19;
}

.spec-table {
	text-align: center;
}

.spec-table dt {
	color: #fff;
	background: #c0c7c3;
	line-height: 1.7;
	margin-top: 20px;
}

.spec-table dd {
	display: flex;
	padding-top: 12px;
}

.spec-table dd > div {
	flex: 1;
	font-size: 0.875em;
	font-weight: 300;
	line-height: 1.5;
}

.spec-table dd .icon {
	padding: 15px 35% 0;
}

.notice {
	margin-top: 35px;
	border-top: 4.3px solid #c0c7c3;
	padding-top: 1em;
}

.notice p {
	font-weight: 300;
	font-size: 12px;
}

@media (min-width: 768px) {
	#spec .model-logo {
		height: 28px;
	}
}

/* ----------------------------------------------------------------------------------------------
MARK: support
---------------------------------------------------------------------------------------------- */
#support {
	padding-top: 60px;
}

#support .section-heading {
	margin-bottom: 30px;
}

.support-item {
	margin-bottom: 45px;
	background: #fff;
	border-radius: 2px;
}

.bottom_info {
	margin-top: 50px;
}

.support-item.item01 .icon {
	padding: 20px 26% 0;
}

.support-item.item02 .icon {
	padding: 27px 14% 10px;
}

.support-item.item03 .icon {
	padding: 27px 24% 15px;
}

/* ----------------------------------------------------------------------------------------------
MARK: footer
---------------------------------------------------------------------------------------------- */
.manual {
	padding-inline: 1em;
}
.link-wrap {
	display: flex;
	justify-content: center;
	gap: 24px;
}

.link-wrap a {
	font-size: 0.875em;
	color: #747474;
	display: block;
}

.link-wrap a img {
	display: inline-block;
	width: 0.4em;
	vertical-align: middle;
}

.footer {
	padding: 2.5rem 1rem 2.5rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
}

.footer .copyright {
	font-size: 10px;
	color: #747474;
}
