@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;300;400&family=Noto+Sans+JP:wght@300;400&display=swap');


/*****************************************
リセット
*****************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	vertical-align: baseline;
}
h1, h2, h3, h4, h5, h6{
	font-size:100%;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
	overflow-y: scroll;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
input, textarea{
	margin: 0;
	padding: 0;
}
ol, ul{
	list-style:none;
}
table{
	border-collapse: collapse; 
	border-spacing:0;
}
caption, th{
    text-align: left;
}
a:focus {
	outline:none;
}
/***************／リセット***************/

/*****************************************
基本
*****************************************/
html{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2vw;
	font-weight: 400;
	line-height:1.5;
	-webkit-text-size-adjust: 100%;
}
body{
	width:100%;
	min-height: 100vh;
	background-color: #3a3a3a;
	font-size: 1.7rem;
	color:#ffffff;
	-webkit-print-color-adjust: exact;
}
*, *::before, *::after{
	box-sizing:border-box;
}
a{
	color: inherit;
	text-decoration: none;
	transition: 0.5s;
}
p{
	letter-spacing: -0.01em;
}
img{
	display: block;
	width: 100%;
	height: auto;
}
@media print, screen and (min-width:768px) {
	.oSP{
		display: none !important;
	}
	html{
		font-size:20px;
	}
	body{
		font-size: 0.9rem;
		color: #b8b8b8;
	}
	p{
		font-size: 18px;
	}
}

@media print, screen and (max-width:767px) {
	.oPC{
		display: none !important;
	}
}

@media print, screen and (min-width:768px) and (max-width:1215px) {
	html{
		font-size:1.66666vw;
	}
}
@media print{
	html{
		font-size: 20px !important;
	}
}
/***************／基本***************/

.container{
	position: relative;
}

/*****************************************
ヘッダー
*****************************************/
header{
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	background-color: #4d4d4d;
	z-index: 1;
}
header h1{
	width: 113px;
}
.navBtn{
	position: fixed;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 3;
}
.navBtn::before, 
.navBtn::after{
	content: '';
	position: absolute;
	top: 22px;
	right: 10px;
	display: block;
	width: 30px;
	height: 1px;
	background-color: #b9b8b8;
	transition: 1s;
}
.navBtn::before{
	top: 22px;
}
.navBtn::after{
	top: 27px;
}
.navBtn:hover{
	opacity: 0.6;
}
.navBtn.active::before{
	top: 25px;
	transform: rotate(45deg);
}
.navBtn.active::after{
	top: 25px;
	transform: rotate(-45deg);
}
.navSP{
	display: none;
	position:fixed;
	top:0;
	right: 0;
	width:50%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 2;
}
.navSP nav{
	padding: 9.6% 26%;
}
.navSP nav li{
	margin-top: 3.5rem;
	border-bottom: solid 1px #b8b8b8;
}
.navSP nav li a{
	display: block;
	padding-bottom: 0.8rem;
	text-align: center;
	line-height: 2.8rem;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 2.1rem;
	color: #b8b8b8;
}
@media print, screen and (min-width:768px) {
	header{
		position: static;
		height: 100px;
	}
	header h1{
		width: 226px;
	}
	.sideNavi{
		position: absolute;
		top: calc( 56.21vw + 100px );
		left: 91.2%;
		width: 80vh;
		max-width: 800px;
		transform: rotate(90deg);
		transform-origin: left bottom;
		z-index: 1;
	}
	.sideNavi ul{
		display: flex;
		justify-content: space-between;
	}
	.sideNavi li{
		width: 120px;
	}
	.sideNavi li a{
		display: block;
		padding: 0 0 6px;
		border-bottom: solid 1px #b8b8b8;
		text-align: center;
		line-height: 1.5;
		font-family: 'Barlow Condensed', sans-serif;
		font-size: 20px;
		color: #b8b8b8;
	}
	.sideNavi li a:hover{
		opacity: 0.38;
	}
	.sideNavi.fixed{
		position: fixed;
		top: 0;
	}
}
/***************／ヘッダー***************/


/*****************************************
MOVIE
*****************************************/
#movie{
	padding-top: 50px;
}
#movie iframe{
	width: 100%;
	height: 27rem;
}
@media print, screen and (min-width:768px) {
	#movie{
		padding-top: 0;
	}
	#movie iframe{
		height: 56.21vw;
	}
}
/***************／MOVIE***************/


/*****************************************
セクション共通
*****************************************/
section{
	padding: 48px 0 90px;
}
section h2{
	margin-bottom: 64px;
	text-align: center;
	letter-spacing: 0.1em;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 21px;
	font-weight: 300;
}
section h2 span{
	letter-spacing: 0.05em;
	font-size: 45px;
	font-weight: 100;
}
@media print, screen and (min-width:768px) {
	section{
		padding: 120px 0;
	}
	section h2{
		margin-bottom: 180px;
		line-height: 1;
		font-size: 30px;
	}
	section h2 span{
		line-height: 1.5;
		font-size: 80px;
	}
}
/***************／セクション共通***************/


/*****************************************
About Chambre
*****************************************/
section#about p{
	padding: 0 10px 30px;
	text-align: center;
	font-weight: 300;
}
section#about p:last-of-type{
	padding-bottom: 0;
}
section#about p.pFirst{
	padding-bottom: 40px;
	letter-spacing: 0.3em;
	font-size: 115%;
}
.en section#about p.pFirst{
	letter-spacing: 0.05em;
}

@media print, screen and (min-width:768px) {
	section#about h2{
		margin-bottom: 60px;
	}
	section#about p{
		line-height: 30px;
		letter-spacing: -0.01em;
		font-size: 18px;
		font-weight: 400;
	}
	section#about p:last-of-type{
		padding-bottom: 50px;
	}
	section#about p.pFirst{
		font-size: 20px;
	}
}
/***************／About Chambre***************/


/*****************************************
Collection
*****************************************/
section#collection, 
section#craftsmanship{
	background-color: #4d4d4d;
}
.slider li{
	margin: 0 5px;
}
@media print, screen and (min-width:768px) {
	.slider li{
		margin: 0 10px;
	}
}
/***************／Collection***************/


/*****************************************
Iconic Models
*****************************************/
section#iconic .flex > div{
	width: 38.4rem;
}
section#iconic .flex > div:nth-of-type(3){
	margin-top: 8rem;
}
section#iconic .flex > div:nth-of-type(even){
	margin: 10rem 0 0 auto;
}
section#iconic .flex a{
	position: relative;
	display: block;
}
section#iconic .flex a::before{
	content: '';
	position: absolute;
	top: 7rem;
	left: 0;
	display: block;
	width: 100%;
	height: 27.2rem;
	background-color: #4d4d4d;
	z-index: -1;
}
section#iconic .flex > div:nth-of-type(even) a::before{
	top: 0;
}
section#iconic .flex > div:nth-of-type(odd) a img{
	width: 30rem;
	margin-left: 6rem;
}
section#iconic .flex > div:nth-of-type(even) a img{
	width: 20rem;
	margin-left: 10.2rem;
}
section#iconic .flex > div:nth-of-type(2) a img{
	width: 100%;
	margin-left: 0;
}

section#iconic .flex a p{
	position: relative;
	margin: 0.5rem 0 0 24rem;
	padding: 2.5rem 0 2.5rem 7.5rem;
	letter-spacing: 0.1em;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.6rem;
	color: #b8b8b8;
	white-space: nowrap;
}
section#iconic .flex > div:nth-of-type(even) a p{
	position: relative;
	margin: 0 22rem 0 -7.3rem;
	padding: 2.5rem 0;
}
section#iconic .flex > div:nth-of-type(4) a p{
	margin: 0 22.5rem 0 -9rem;
}
section#iconic .flex a p::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 5.5rem;
	height: 1px;
	background-color: #b8b8b8;
}
section#iconic .flex > div:nth-of-type(even) a p::before{
	left: auto;
	right: 0;
}
section#iconic .flex a:hover{
	opacity: 0.6;
}

.fadeUp{
	animation-name:fadeUpAnime;
	animation-delay: 0.5s;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(150px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.fadeDown{
	animation-name:fadeDownAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-150px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
section#iconic .iconicBtn a{
	position: relative;
	display: block;
	width: 240px;
	margin: 70px auto 0;
	background-color: #4d4d4d;
	text-align: center;
	line-height: 55px;
	letter-spacing: 0.1em;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 17px;
	color: #b8b8b8;
}
section#iconic .iconicBtn a::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -25px;
	display: block;
	width: 40px;
	height: 1px;
	background-color: #b8b8b8;
}
section#iconic .iconicBtn a:hover{
	opacity: 0.6;
}
@media print, screen and (min-width:768px) {
	section#iconic .flex{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}
	section#iconic .flex > div{
		width: 24rem;
		flex-basis: 24rem;
	}
	section#iconic .flex > div:nth-of-type(3), 
	section#iconic .flex > div:nth-of-type(even){
		margin: 0;
	}
	section#iconic .flex > div:nth-of-type(odd){
		padding-top: 60px;
	}
	section#iconic .flex > div:nth-of-type(n+3){
		margin-top: 250px;
	}
	section#iconic .flex a::before{
		top: 6.5rem;
		height: 17rem;
	}
	section#iconic .flex > div:nth-of-type(odd) a img{
		width: 18.5rem;
		margin-left: 4rem;
	}
	section#iconic .flex > div:nth-of-type(even) a img{
		width: 13rem;
		margin-left: 6rem;
	}
	section#iconic .flex > div:nth-of-type(2) a img{
		width: 100%;
		margin-left: 0;
	}
	section#iconic .flex a p{
		margin: 0.5rem 0 0 15.5rem;
		padding: 2.7rem 0 2.7rem 5rem;
		font-size: 1rem;
	}
	section#iconic .flex > div:nth-of-type(even) a p{
		margin: 0 15rem 0 -6.4rem;
	}
	section#iconic .flex > div:nth-of-type(4) a p{
		margin: 0 12rem 0 -4rem;
	}
	section#iconic .flex a p::before{
		width: 4rem;
	}
	.fadeUp, 
	.fadeDown{
		animation-duration:1.5s;
	}
	section#iconic .iconicBtn a{
		width: 480px;
		margin-top: 100px;
		line-height: 100px;
		font-size: 20px;
	}
	section#iconic .iconicBtn a::before{
		right: -50px;
		width: 80px;
	}
}
/***************／Iconic Models***************/


/*****************************************
Craftsmanship
*****************************************/
#craftsmanship{
	position: relative;
	padding-bottom: 0;
}
#craftsmanship .cmsLead{
	padding: 0 10px 30px;
	text-align: center;
	font-weight: 300;
}
#craftsmanship .cmsLead.cmsLead01{
	padding-bottom: 40px;
	letter-spacing: 0.3em;
	font-size: 115%;
}
.en #craftsmanship .cmsLead.cmsLead01{
	letter-spacing: 0.05em;
}
#craftsmanship .cmsLead.cmsLead02{
	padding-bottom: 64px;
}
#craftsmanship .copyright{
	position: absolute;
	top: 28px;
	left: 20px;
	transform: rotate(90deg);
	transform-origin: left bottom;
}
#craftsmanship .copyright small{
	letter-spacing: 0.1em;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 9px;
	font-weight: 300;
}
#craftsmanship .copyright a:hover{
	text-decoration: underline;
}
@media print, screen and (min-width:768px) {
	#craftsmanship h2{
		margin-bottom: 60px;
	}
	#craftsmanship .cmsLead{
		line-height: 30px;
		letter-spacing: -0.01em;
		font-size: 18px;
		font-weight: 400;
	}
	#craftsmanship .cmsLead.cmsLead01{
		font-size: 20px;
	}
	#craftsmanship .cmsLead.cmsLead02{
		padding-bottom: 180px;
	}
	#craftsmanship .copyright{
		top: 140px;
		left: 40px;
	}
	#craftsmanship .copyright small{
		font-size: 16px;
	}
}
/***************／Craftsmanship***************/


/*****************************************
フッター
*****************************************/
footer{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 395px;
	padding: 45px 0 60px;
	background-color: #4d4d4d;
}
footer h1{
	width: 110px;
}
footer .footerBtn a{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 55px;
	margin-bottom: 30px;
	background-color: #3a3a3a;
	text-align: center;
	line-height: 1.5;
	font-size: 16px;
	color: #b8b8b8;
}
footer .footerBtn a::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -25px;
	display: block;
	width: 40px;
	height: 1px;
	background-color: #b8b8b8;
}
footer .footerBtn a:hover, 
footer .footerSns > a:hover{
	opacity: 0.6;
}
footer .footerSns{
	display: flex;
	justify-content: center;
}
footer .footerSns > a{
	display: block;
	width: 30px;
	margin: 0 30px;
}
@media print, screen and (min-width:768px) {
	footer{
		height: 690px;
		padding: 90px 0 100px;
	}
	footer h1{
		width: 220px;
	}
	footer .footerBtn{
		margin: 0 auto;
	}
	footer .footerBtn a{
		width: 24rem;
		height: 110px;
		font-size: 20px;
	}
	footer .footerBtn a::before{
		right: -50px;
		width: 80px;
	}
	footer .footerSns{
		margin-bottom: 90px;
	}
	footer .footerSns > a{
		width: 36px;
		margin: 0 24px;
	}
}
/***************／フッター***************/




