@charset "utf-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:0;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}


/* ==========================================================================
	 base
========================================================================== */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	width: 100%;
}

html {
	font-size: 62.5%;
	color: #000;
	line-height: 1.6;
	overflow-y: scroll;
}

@media screen and (min-width: 768px) {
	html {
		line-height: 1.75;
	}
}

body {
	position: relative;
	padding: 0;
	font-family: YakuHanJP,YakuHanMP,'Zen Kaku Gothic New','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-print-color-adjust: exact;
	letter-spacing: .03em;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: normal;
}

p {
	margin-top: 0;
	margin-bottom: 0;
}

ol, ul, dl {
	margin: 0;
	padding: 0;
}

ol, ul {
	list-style-type: none;
}

dd {
	margin-left: 0;
}

th {
	font-weight: 300;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

cite {
	font-style: normal;
}

figure {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

figcaption {
	margin-top: 0;
}

picture {
	display: block;
}

img {
	vertical-align: bottom;
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	img {
		max-width: 100%;
		height: auto;
	}
}

a {
	color: inherit;
	text-decoration: none;
	outline: none;
	transition: all .4s ease-out;
}

a:hover {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

:focus {
	-moz-outline-style: none;
}

::selection {
	background: rgba(255, 221, 0, .2);
}
::-moz-selection {
	background: rgba(255, 221, 0, .2);
}

*:after,
*:before {
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

.pc {
	display: none;
}
.sp {
	display: block;
}

@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
}


.fade-left {
	opacity: 0;
	transform: translate3d(-50px, 0, 0);
	transition: .8s;
}
.fade-left.is-active {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}


/* ==========================================================================
	 header
========================================================================== */
.header {
	width: 100%;
	height: 80px;
}
.header__container {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.header__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__logo {
	width: 40px;
	height: 40px;
}
.header__logo-link {
	display: block;
}
.header__external {
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	font-size: 1.2rem;
	line-height: 1.6;
	letter-spacing: normal;
	transition: .4s;
}
.header__external:hover {
	opacity: .7;
}

@media screen and (min-width: 768px) {
	.header {
		height: 108px;
	}
	.header__nav {
		margin-right: auto;
		margin-left: auto;
		max-width: 960px;
	}
	.header__logo {
		width: 68px;
		height: 68px;
	}
	.header__external {
		font-size: 1.3rem;
	}
}


@media print {
	.header {
		display: none;
	}
}


/* ==========================================================================
	 main
========================================================================== */
.main {
	position: relative;
	width: 100%;
	color: #070203;
}


/* ==========================================================================
	 search
========================================================================== */
.search {
	display: none;
}

@media screen and (min-width: 769px) {
	.search {
		display: block;
	}
	.search__btn {
		margin-right: auto;
		margin-left: auto;
		padding-top: .5em;
		padding-right: .6em;
		padding-bottom: .5em;
		padding-left: .6em;
		display: block;
		background-color: #0168D0;
		border: 2px solid #fff;
		box-shadow: 0px 0px 20px 0px rgba(128, 128, 128, .5);
		border-radius: 100px;
		max-width: 520px;
		font-size: 3rem;
		font-weight: 700;
		text-align: center;
		color: #F5FD92;
		line-height: 1.7;
		letter-spacing: 0;
		transition: .4s;
	}
}
.search__btn:hover {
	background-color: #fff;
	border: 2px solid #0168D0;
	color: #0168D0;
}



@media screen and (max-width: 767px) {
	.search-fixed {
		position: fixed;
		z-index: 2;
		left: 0;
		bottom: 0;
		padding-top: 20px;
		padding-right: 40px;
		padding-bottom: 20px;
		padding-left: 40px;
		background-color: rgba(255, 255, 255, .7);
		width: 100%;
	}
	.is-fixed {
		display: none !important;
	}
	.search-fixed__btn {
		padding-top: .8em;
		padding-right: .6em;
		padding-bottom: .8em;
		padding-left: .6em;
		display: block;
		background-color: #0168D0;
		border: 2px solid #fff;
		box-shadow: 0px 0px 20px 0px rgba(128, 128, 128, .5);
		border-radius: 100px;
		font-size: 2rem;
		font-weight: 700;
		text-align: center;
		color: #F5FD92;
		line-height: 1.7;
		letter-spacing: 0;
		transition: .4s;
	}
	.search__btn:hover {
		background-color: #fff;
		border: 2px solid #0168D0;
		color: #0168D0;
	}
}

@media screen and (min-width: 768px) {
	.search-fixed {
		display: none !important;
	}
}

@media screen and (max-width: 320px) {
	.search-fixed__btn {
		font-size: 1.7rem;
	}
}


/* ==========================================================================
	 footer
========================================================================== */
.footer {
	padding-top: 80px;
}
.footer__sns-list {
	padding-bottom: 35px;
	display: flex;
	justify-content: center;
	border-bottom: 1px solid #666;
}
.footer__sns-item {
	margin-right: 10px;
	margin-left: 10px;
	width: 30px;
	height: 30px;
}
.footer__sns-link {
	display: block;
	transition: .4s;
	transform: scale(1);
}
.footer__sns-link:hover {
	transform: scale(1.1) translateY(-1px);
}

@media screen and (min-width: 768px) {
	.footer__sns-list {
		padding-bottom: 20px;
	}
}


.footer__container {
	padding-top: 25px;
	padding-right: 15px;
	padding-bottom: 25px;
	padding-left: 15px;
}
.footer__nav {
	margin-bottom: 25px;
}
.footer__nav-list {
	margin-bottom: -10px;
	display: flex;
	flex-wrap: wrap;
}
.footer__nav-item {
	margin-right: 15px;
	margin-bottom: 10px;
}
.footer__nav-link {
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	font-size: 1.2rem;
	transition: .4s;
}
.footer__nav-link:before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-right: .4em;
	vertical-align: -2px;
	background-image: url(https://campaigns.nikon-lenswear.jp/transitions/assets/common/img/icon_arrow_right_black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.footer__nav-link:hover {
	opacity: .7;
}
.footer__copyright small {
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	font-size: 1.1rem;
	line-height: 1.6;
}

@media screen and (min-width: 768px) {
	.footer__container {
		margin-right: auto;
		margin-left: auto;
		max-width: 960px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	.footer__nav {
		margin-bottom: 0;
	}
	.footer__nav-list {
		margin-bottom: 0;
	}
	.footer__nav-item {
		margin-bottom: 0;
	}
	.footer__copyright small {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 768px) {
	.footer__pagetop {
		display: none;
	}
}

@media screen and (min-width: 768px) {
	.footer__pagetop {
		position: fixed;
		right: 15px;
		bottom: 15px;
	}
	.footer__pagetop-link {
		display: block;
		width: 45px;
		height: 45px;
		background-image: url(https://campaigns.nikon-lenswear.jp/transitions/assets/common/img/icon_pagetop.svg);
		background-repeat: no-repeat;
		background-size: contain;
		opacity: .8;
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
	}
	.footer__pagetop-link:hover {
		opacity: .8;
	}
}


@media print {
	.footer {
		display: none;
	}
}