@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cookie&display=swap');/* Google fonts "Oswald" */
/* CSS Document */

/* Reset -------------------------------------------------------------*/

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-size: 100%; */
	font: inherit;
	vertical-align: baseline;
	box-sizing: content-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
#footer, #header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
li, ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* plus Reset */
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}


/* Common ------------------------------------------------------------*/

/* font読み込み */
/* noto-sans-jp-100 - latin_japanese */
@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 100;
	src:local(""),
		url("../fonts/noto-sans-jp-v36-latin_japanese-100.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
		url("../fonts/noto-sans-jp-v36-latin_japanese-100.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}
/* noto-sans-jp-300 - latin_japanese */
@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 300;
	src:local(""),
		url("../fonts/noto-sans-jp-v36-latin_japanese-300.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
		url("../fonts/noto-sans-jp-v36-latin_japanese-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}
/* noto-sans-jp-regular - latin_japanese */
@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 400;
	src:local(""),
		url("../fonts/noto-sans-jp-v36-latin_japanese-regular.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
		url("../fonts/noto-sans-jp-v36-latin_japanese-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}
/* noto-sans-jp-500 - latin_japanese */
@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 500;
	src:local(""),
		url("../fonts/noto-sans-jp-v36-latin_japanese-500.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
		url("../fonts/noto-sans-jp-v36-latin_japanese-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}
/* noto-sans-jp-700 - latin_japanese */
@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	src:local(""),
		url("../fonts/noto-sans-jp-v36-latin_japanese-700.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
		url("../fonts/noto-sans-jp-v36-latin_japanese-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}
/* noto-sans-jp-900 - latin_japanese */
@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 900;
	src:local(""),
		url("../fonts/noto-sans-jp-v36-latin_japanese-900.woff2") format("woff2"), /* Chrome 26+, Opera 23+, Firefox 39+ */
		url("../fonts/noto-sans-jp-v36-latin_japanese-900.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}

html{
	font-size: 100%;
}
body{
	position: relative;
	font-family: "Noto Sans JP", "arial", "helvetica", sans-serif;
	font-weight: 900;
	font-size: 0.75rem;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	color: #fff;
	letter-spacing: 0.05rem;
	line-height: 2;
	background: #323232;
}
img,
svg{
	width: 100%;
	height: auto;
	vertical-align: bottom;
	display: block;
}
a, a:visited, a:hover, a:active{
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: inherit;
}
*:focus {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	outline: none!important;
}

@media only screen and (max-width: 767px){
	.forPC{ display: none!important; }
}
@media only screen and (min-width: 768px){
	.forSP	{ display: none!important; }
	body	{ font-size: 1rem; }
}



/* ローディング（SP→PC） ------------------------------------------------------------*/

body{
	overflow: hidden
}
#loading{
	position: fixed;
		top: 0;
		left: 0;
		z-index: 10000;
	display: flex;
		justify-content: center;
		align-items: center;
	width: 100vw;
	height: 100vh;
	background: #323232;
	opacity: 1;
	transition: opacity ease-in-out 0.5s;
}
#loading > img{
	width: 4rem;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}


/* 共通ヘッダー：上部（PC→SP） ------------------------------------------------------------*/

body > header{
	position: fixed;
		z-index: 9999;
		top:0;
	width: 100%;
	padding: 2rem 0 0;
	text-align: center;
	color: #FFF;
	background: #323232;
}

body > header a{
	display: block;
	color: #fff !important;
}
body > header #header_box{
	display: flex;
		justify-content: flex-start;
	width: 100%;
		max-width: calc(1200px + 4rem);
	padding: 0 2rem;
	margin: auto;
	box-sizing: border-box;
}
body > header .header_logo{
	text-align: left;
	margin-bottom: 1rem;
}
body > header .header_logo h1{
	font-size: 1.5rem;
	line-height: 1rem;
	font-weight: 700;
}
body > header .header_logo h1 a{
	color: #FFF;
}
body > header .header_logo h2{
	font-size: 1rem;
	font-weight: 700;
}
body > header .header_menu{
	display: flex;
	height: 2rem;
	margin-left: auto;
	padding-right: 4rem;
}
body > header .header_menu a{
	margin-left: 2rem;
}
body > header .header_menu img{
	width: 2rem;
	height: auto;
}
.header_hamburger {
	position: fixed;
		top: 2rem;
		left: 50%;
	margin-left: 600px;
	z-index: 100000;
	height: 2rem;
	transform: translateX(-50%);
}
@media only screen and (min-width: 768px ) and ( max-width: 1264px ) {
	.header_hamburger {
			left: auto;
			right: 2rem;
		margin-left: 0;
	}
}
@media only screen and (min-width: 767px){
	body > header .header_menu a :hover, 
	body > header .header_hamburger :hover{
		background: #646464;
	}
}
@media only screen and (max-width: 767px){
	body > header .header_menu a :active, 
	body > header .header_hamburger :active{
		background: #646464;
	}
}
body > header .header_brand_list{
	display: flex;
	justify-content: space-between;
	width: 100%;
		max-width: 1200px;
	padding: 0 2rem;
	box-sizing: content-box;
	margin: auto;
}
@media only screen and (min-width: 768px) and (max-width: 1199px){
	.header_brand_list {
		font-size: 0.8rem;
		line-height: 1rem;
		box-sizing: border-box;
	}
}
body > header .header_brand_list a{
	display: block;
	width: 100%;
	align-self: center;
	padding: 0.5rem 0;
}
body > header .header_brand_list a:hover{
	background: #cdcdcd;
	color:#323232!important;
}
body > header .header_brand_list .row_2{
	font-size: 0.8rem;
	line-height:1rem;
}
body.menu-open{
	overflow: hidden;
}


@media only screen and (max-width: 767px){
	body > header{
		padding: 0;
		text-align: center;
		z-index: 9999;
	}
	body > header #header_box{
		display: grid;
		width: 100%;
		padding: 0.75rem;
		box-sizing: border-box;
		margin: auto;
		grid-template-columns: 1fr 3.5rem;
	}
	body > header .header_logo{
		margin-bottom:0;
		padding-left: 1.8rem;
		width: 100%;
	}
	body > header .header_logo h1{
		font-size: 1rem;
		line-height: 1.5rem;
		font-weight: 700;
		text-align: center;
	}
	body > header .header_logo h2{
		display: none;
	}
	body > header .header_menu{
		display: flex;
		height: 1.5rem;
		margin-left: 0;
		padding-right: 0;
		grid-gap: 0.5rem;
	}
	body > header .header_menu li:nth-child(2),
	body > header .header_menu li:nth-child(3) {
		display: none;
	}
	body > header .header_menu a{
		margin-left: 0;
	}
	body > header .header_menu img{
		width: auto;
		height: 1.5rem;
		vertical-align: baseline;
	}
	body > header .header_brand_list{
		display: none;
	}
	.header_hamburger {
		height: 1.5rem;
		width: 1.5rem;
		padding: 0.75rem;
		box-sizing: content-box;
		top: 0;
		left: 0;
		transform: none;
		margin: 0;
	}
}


/* 共通フッター（PC→SP） ------------------------------------------------------------*/

body > footer {
	background: #323232 !important;
	border: none !important;
	margin-top: 0 !important;
	padding: 4rem 0 2rem;
	text-align: center;
}
body > footer #footer_box{
	width: 100%;
		max-width: calc(1200px + 4rem);
	margin: auto;
	padding: 0 2rem;
	box-sizing: border-box;
}
body > footer .JC_symbol{
	height: 55px;
	width: auto;
	display: inline-block;
}
body > footer .JC_symbol path{
	fill:#fff;
}
body > footer .footer_sns{
	display: grid;
	grid-gap: 2rem;
	grid-template-columns: repeat(4 , 2rem);
	justify-content: center;
	padding: 2rem 0 4rem;
}
body > footer .footer_menu_box{
	display: flex;
	line-height: 2rem;
}
body > footer .footer_menu{
	display: flex;
}
body > footer .footer_menu a{
	display: inline-block;
	padding-right: 2rem;
	font-size: 0.75rem;
	color: #FFF;
}
body > footer .copyright{
	font-size: 0.8rem;
}


@media only screen and (max-width: 767px){
body > footer{
	padding: 2.5rem 0 5rem;
}
body > footer #footer_box{
	width: 100%;
	margin: auto;
	padding: 0 2rem;
	box-sizing: border-box;
}
body > footer .JC_symbol{
	height: 3rem;
}
body > footer .footer_sns{
	padding: 2rem 0 2.5rem;
}
body > footer .footer_menu_box{
	display: block;
	line-height: 2rem;
}
body > footer .footer_menu{
	display: block;
	border-top: 1px solid #696969;
}
body > footer .footer_menu a {
	display: block;
	padding-right: 0;
	line-height: 2.5rem;
	border-bottom: 1px solid #696969;
}
body > footer .footer_menu a:last-child {
	line-height: 6rem;
	border-bottom: none;
}
body > footer .copyright{
	font-size: 80%;
}
}


/* Contents（SP→PC） ------------------------------------------------------------*/

#xmas{
	padding-top: 3rem;
	padding-bottom: 1px;
	letter-spacing: 0.05rem;
	background: #4d0808;
}

/* #top-btn */
#xmas #top-btn a {
	position: fixed;
		bottom: 0.5rem;
		right: 0.5rem;
		z-index: 999;
	display: inline-block;
	width: 4rem;
	height: 4rem;
	text-align: center;
	background: #bf8e1d;
	border-radius: 50%;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0 ,0.3);
}
#xmas #top-btn a span::after{
	content: '\e5d8';
	display: inline-block;
	font-size: 2rem;
	font-family: 'Material Icons';
	font-weight: normal;
	line-height: 4rem;
	color: #fff;
}

/* header */
#xmas header{
	padding: 1.5rem 0.75rem 1.5rem;
	text-shadow: 0 0 0.5rem rgba(0, 0, 0, 1);
	background: linear-gradient(0deg, rgba(77,8,8,1) 0%, rgba(77,8,8,0) 15%),url(img/img_header.jpg);
	background-size: cover;
	background-position: center;
}
#xmas header svg{
	display: block;
	margin: 0 auto;
	width: 50px;
}
#xmas header svg path{
	fill: #fff;
}
#xmas header .site-title{
	font-size: 14px;
	text-align: center;
}
#xmas header h2{
	margin: 3rem auto;
	font-size: 60px;
	font-family: 'Cookie', cursive;
	line-height: 55px;
	font-weight: normal;
	text-align: center;
}
#xmas header h2 span{
	display: block;
	font-size: 16px;
	font-family: serif;
	font-weight: bold;
	line-height: 2;
	letter-spacing: 2px;
}
#xmas header .introduction{
	padding: 0.75rem;
	font-size: 0.75rem;
	background: rgba(0, 0, 0, 0.5);
}
#xmas header .introduction .note{
	font-size: 0.625rem;
	color: rgba(255, 255, 255, 0.75);
}

/* nav */
#xmas nav ul{
	margin: 0 0.75rem;
}
#xmas nav ul{
	display: grid;
		grid-gap: 0.75rem;
		grid-template-columns: repeat(2,1fr);
}
#xmas nav a{
	position: relative;
	display: block;
	padding: 0 1rem 0 0;
	font-size: 0.75rem;
	line-height: 2rem;
	text-align: center;
	color: #fff;
	background: #bf8e1d;
}
#xmas nav a span:after{
	content: '\e5cf';
	position: absolute;
		top: 50%;
		right: 0.5rem;
	transform: translateY(-50%);
	display: inline-block;
	font-size: 1.25rem;
	font-family: 'Material Icons';
	font-weight: normal;
	color: #fff;
}

/* .block */
#xmas .block{
	margin: 3rem 0.75rem 4rem;
}
#xmas .block h3{
	margin-bottom: 1.8rem;
	font-size: 3.3rem;
	font-family: 'Cookie', cursive;
	font-weight: normal;
	line-height: 1.5;
	text-align: center;
	border-bottom: 1px solid;
	border-image: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 5%, rgba(255,255,255,1) 95%, rgba(255,255,255,0) 100%);
	border-image-slice: 1;
}
#xmas .block h3 span{
	display: inline-block;
	margin-left: 1rem;
	font-size: 1rem;
	font-family: serif;
	font-weight: bold;
}
#xmas .block .item-list{
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: repeat(2,1fr);
}
#xmas .block .item-list li{
	position: relative;
	padding-bottom: 5rem;
}
#xmas .block .item-list li > p:nth-child(2){
	margin: 0.25rem auto;
	font-size: 0.75rem;
}
#xmas .block .item-list li > p:nth-child(3){
	font-size: 0.625rem;
	margin: 0.25rem auto;
}
#xmas .block .item-list li > p:nth-child(4){
	position: absolute;
		bottom: 3.5rem;
		right: 0;
	font-size: 0.75rem;
}
#xmas .block .item-list li > p:nth-child(4) span{
	font-size: 0.625rem;
}
#xmas .block .item-list li .btn{
	position: absolute;
		bottom: 1rem;
	display: block;
	width: 100%;
	font-size: 0.75rem;
	line-height: 2rem;
	text-align: center;
	color: #fff;
	background: #bf8e1d;
}
#xmas .block .link-list{
	display: grid;
		grid-gap: 1rem;
	width: 17.5rem;
	margin: 1rem auto;
}
#xmas .block .link-list .btn{
	display: block;
	font-size: 0.75rem;
	line-height: 2rem;
	text-align: center;
	color: #fff;
	background: #bf8e1d;
}

/* .block - #Option他 */
#xmas #Mens-Watch.block h3{
	line-height: 1.2;
}
#xmas #Ladys-Watch.block h3 span,
#xmas #Mens-Watch.block h3 span,
#xmas #Option.block h3 span{
	display: block;
	margin: 0 0 1rem;
}
#xmas #Option.block p{
	margin: 1rem auto;
}
#xmas #Option.block p .note{
	font-size: 0.625rem;
	color: rgba(255, 255, 255, 0.8);
}


/*`▼PC▼*/
@media only screen and (min-width: 768px){
	#xmas{
		padding-top: 9rem;
	}

/* #top-btn */
#xmas #top-btn a {
		bottom: 1.5rem;
		right: 1.5rem;
	width: 5rem;
	height: 5rem;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0 ,0.3);
}
#xmas #top-btn a span::after{
	font-size: 3rem;
	line-height: 5rem;
}

	/* header */
	#xmas header{
		display: flex;
			justify-content: center;
			align-items: center;
		height: 960px;
		padding: 0;
	}
	#xmas header svg{
		width: 100px;
	}
	#xmas header .site-title{
		font-size: 1.75rem;
		font-weight: bold;
	}
	#xmas header h2{
		margin: 7.5rem auto;
		font-size: 8.125rem;
		line-height: 1;
	}
	#xmas header h2 br{
		display: none;
	}
	#xmas header h2 span{
		font-size: 2rem;
		letter-spacing: 0.25rem;
	}
	#xmas header .introduction{
		padding: 1.5rem;
		font-size: 1rem;
		text-align: center;
	}
	#xmas header .introduction .note{
		font-size: 0.75rem;
	}
	@media only screen and (min-width: 768px) and (max-width: 980px){
		#xmas header{
			height: auto!important;
			padding: 3rem 1rem!important;
		}
		#xmas header h2{
			margin: 5rem auto!important;
		}
	}

	/* nav */
	#xmas nav ul{
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 2rem;
	}
	#xmas nav ul{
			grid-template-columns: repeat(4,1fr);
	}
	#xmas nav a{
		font-size: 1rem;
		line-height: 3rem;
	}
	#xmas nav a span:after{
		font-size: 2rem;
	}

	/* .block */
	#xmas .block{
		max-width: 1200px;
		margin: 7.5rem auto;
		padding: 0 2rem;
	}
	#xmas .block h3{
		font-size: 5rem;
	}
	#xmas .block h3 span{
		margin-left: 1.5rem;
		font-size: 1.5rem;
	}
	#xmas .block .item-list{
		grid-template-columns: repeat(4,1fr);
	}
	#xmas .block .item-list li{
		padding-bottom: 6.5rem;
	}
	#xmas .block .item-list li > p:nth-child(2){
		font-size: 1rem;
	}
	#xmas .block .item-list li > p:nth-child(3){
		font-size: 0.75rem;
	}
	#xmas .block .item-list li > p:nth-child(4){
			bottom: 4.5rem;
		font-size: 1rem;
	}
	#xmas .block .item-list li .btn{
		font-size: 1rem;
		line-height: 3rem;
	}
	#xmas .block .link-list{
		width: 23rem;
	}
	#xmas .block .link-list .btn{
		font-size: 1rem;
		line-height: 3rem;
	}

	/* .block - #Option他 */
	#xmas #Mens-Watch.block h3{
		line-height: 1.5;
	}
	#xmas #Ladys-Watch.block h3 span,
	#xmas #Mens-Watch.block h3 span,
	#xmas #Option.block h3 span{
		display: inline-block;
		margin: 0 0 0 1.5rem;
	}
	#xmas #Option.block{
		display: grid;
			grid-gap: 1rem;
			grid-template-columns: repeat(2,1fr);
	}
	#xmas #Option.block h3{
		grid-row: 1;
		grid-column: 1 / span 2;
	}
	#xmas #Option.block p{
		margin: 0 0 1.5rem;
	}
	#xmas #Option.block p .note{
		font-size: 0.75rem;
	}

}