@charset "UTF-8";
/* CSS Document */

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

body {
	line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

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

/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}

input, select {
	vertical-align:middle;
}
ul,ol{
	list-style: none;
}
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
/* original style */
html{
	font-size: 10px;
}
body {
	background-color: #fff;
	color: #000;
	font-family: 'Baskerville', baskerville-display-pt, serif;
	font-weight: 400;
	font-style: normal;
	font-feature-settings : "palt";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	animation: fadeIn 2s ease 0s 1 normal;
	width:100%;
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
a{
	color: #000;
	-webkit-transition:	all 0.25s ease;
	transition:all 0.25s ease;
}
a:hover{
	color: #999;
	text-decoration: underline;
}
a img{
	-webkit-transition:	all 0.25s ease;
	transition:all 0.25s ease;
}
a:hover img,
.visual a:hover img.lazyloaded{
	opacity: 0.8;
	transition:all 0.25s ease;
	transition-delay: unset;
}
a:focus{
	border: none;
	outline: none;
}
div{
	line-height: 0;
}
.wrapper{
	box-sizing: border-box;
	width: 100%;
	padding: 0;
	margin: 0 auto;
}
header{
	padding: 20% 0;
	margin: 0;
}
header h1{
	line-height: 0;
	margin: 0 auto;
	padding: 0;
	width: 37.5%;
	height: auto;
}
header h1 img{
	width: 100%;
	height: auto;
}
main{
	padding: 0;
}
.visuals{
	box-sizing: border-box;
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin:0 auto;
	overflow: hidden;
	width: 100%;
	padding: 12.5% 0;
	position: relative;
}
.visuals.col2{
	flex-direction: row;
}

.right{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.left{
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.right .caption dt,.right .caption dd{
	text-align: right;
}

.visual{
	position: relative;
	width: 47.5%;
}
.visual+.visual{
	margin-left: 5%;
}
.full .visual{
	width: 100%;
}
.col2 .visual{
	width: 50%;
}
.border .visual figure{
	box-sizing: border-box;
	border: #000 solid 3px;
} 
.visual img{
	width: 100%;
	height: auto;
}
.fadeIn{
	opacity: 0;
	-webkit-transform: translate3d(0, 30px, 0);
	transform: translate3d(0, 30px, 0);
	-webkit-transition: opacity 1600ms,-webkit-transform 1200ms cubic-bezier(0.3, 0.05, 0.05, 1);
	transition: opacity 1600ms,-webkit-transform 1200ms cubic-bezier(0.3, 0.05, 0.05, 1);
	transition: opacity 1600ms,transform 1200ms cubic-bezier(0.3, 0.05, 0.05, 1);
	transition: opacity 1600ms,transform 1200ms cubic-bezier(0.3, 0.05, 0.05, 1),-webkit-transform 1600ms cubic-bezier(0.3, 0.05, 0.05, 1);
}
.fadeIn.show{
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.visual figure{
	opacity: 0;
	z-index: 2;
}
.visual figure a{
	display: block;
	position: relative;
	z-index: 3;
}
.show .visual figure{
	opacity: 1;
	transition: opacity .2s linear .5s;
}
/*.visual::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0c3146;
}
#sec00.show .visual::after,
.fadeIn.show .visual::after{
	opacity: 0;
	transition: opacity .2s linear .7s;
}
*/

#sec00{
	box-sizing: border-box;
	padding: 13% 10%;
	position: relative;
	margin-bottom: 20%;
}
#sec00 .visual{
	width: 100%;
}
#sec00 h2,
#sec11 h2,
.visuals .cap{
	position: absolute;
	z-index: 4;
}
.h2-01{
	top: 0;
	left: 6.5%;
	width: 58%;
}
.h2-02{
	bottom: 6.2%;
	right: 7.75%;
	width: 75%;
}
.h2-03{
	bottom: -3%;
	right: 5%;
	width: 61.5%;
}
#sec11{
	margin-bottom: 32.5%;
}
#sec02 .cap{
	top: 89.5%; 
	left: 52.5%;
	width: 27.5%;
}
#sec04 .cap{
	top: 5.5%; 
	left: 35.25%;
	width: 8.5%;
}
#sec07 .cap01{
	top: 7.7%; 
	left: 2.5%;
	width: 22%;
}
#sec07 .cap02{
	top: 80.38%; 
	left: 29.5%;
	width: 27%;
}
#sec09 .cap{
	top: 5.5%; 
	left: 56.25%;
	width: 8.5%;
}
.caption{
	box-sizing: border-box;
	padding: 6.5% 0 0;
	width: auto;
}
.caption dl{
	line-height: 1.35;
}
.caption dl+dl{
	margin-top: 10px;
}
.caption dt,.caption dd{
	font-size: 1.2rem;
	letter-spacing: 0.04em;
}
.lookDetail{
	background-color:#fff;
	box-sizing: border-box;
	font-size:0;
	padding:13% 7.5%;
	overflow: hidden;
	width:100%;
}
.lookImg{
	width:100%;
}
.lookCredit{
	box-sizing:border-box;
	font-size: 0.875rem;
	margin:0;
	padding:7.5% 0;
	width:100%;
}
.lookCredit p{
	font-size:1.1rem;
	letter-spacing: 0.04em;
	line-height: 1.67;
	margin-bottom: 0;
}
.lookCredit dl{
	font-size: 1.2rem;
	text-align: left;
}
.lookCredit dl+dl,
.lookCredit dl+p{
	margin-top: 18px;
}
.lookCredit dl dt,.lookCredit dl dd{
	color:#000;
	letter-spacing: 0.04em;
	line-height: 1.67;
	text-transform: capitalize;
}
.lookCredit dl dt a{
	color:#000;
	text-decoration: underline;
}
.lookCredit dl dt a.notLink{
	pointer-events: none!important;
	text-decoration: none;
}
.lookCredit dl dd.itemNo{
	font-size: 1.2rem;
	display: none;
}
.lookCredit dl dd small{
	font-size: 0.75em;
	text-transform: lowercase;
}
.lookCredit dl dd.itemPrice{
	display: block;
	margin-right: 0;
}
.lookCredit dl dd.instore{
	display: block;
	font-size: 1.1rem;
}
.lookCredit dl dd:last-child{
	margin-right: 0;
}
.creditHalf{
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.creditHalf div{
	width: 50%;
}
.caption.creditHalf{
	width: 60%;
}
.caption.creditHalf div:nth-child(1){
	width: 58%;
}
.caption.creditHalf div:nth-child(2){
	width: 42%;
	white-space: nowrap;
}
.modaal-inner-wrapper{
	padding: 0;
}
.modaal-content-container{
	padding: 0;
	position: relative;
}
.modaal-close{
	position: absolute;
	top: 0;
	right: 0;
}
.modaal-close,.modaal-close:focus, .modaal-close:hover{
	background-color: transparent;
}
.modaal-close::before, .modaal-close::after{
	background: #000;
	border-radius: 0;
	height: 36px;
	width: 1px;
	top: 8px;
	left: 27px;
}
.modaal-close:focus::before,
.modaal-close:focus::after,
.modaal-close:hover::before,
.modaal-close:hover::after {
	background: #999;
}

footer{
	font-family: roboto, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Helvetica, HelveticaNeue, 'Helvetica Neue', "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: 400;
	font-style: normal;
	margin-top: 0;
	padding: 10% 0 17.5vw;
	text-align: center;
}
footer nav{
	box-sizing: border-box;
}
footer ul{
	font-size:0;
	padding: 0 7.5vw;
}
footer ul li{
	display: inline-block;
	font-size: 1.2rem;
	letter-spacing: 0.08em;
	line-height: 1;
	margin-bottom: 30px;
	vertical-align: middle;
}
footer ul li:nth-child(n+3){
	margin-left: 1.3rem;
}
#linkMedia{
	width: 100%;
}
#linkMedia a{
	display: inline-block;
	margin-left: 1.5rem;
}
#linkMedia a+a::before{
	content: "|";
	display: inline-block;
	margin-right: 1.2rem;
}
footer nav li a{
	color:#000;
	text-decoration: underline;
}
.copy{
	font-size: 1.2rem;
	letter-spacing: 0.08em;
	line-height: 1;
}

#comment{
	background:rgba(255,255,255,0.8);
	text-align: center;
	font-size: 11px;
	position: fixed;
	bottom: 10vh;
	left: 10%;
	width: 80%;
	line-height: 30px;
	height: 30px;
	border-radius: 15px;
	z-index: 100;
}
#comment::before{
	content: "● ";
	color: #999;
	font-size: 12px;
}
#comment.off{
	display: none;
}
.spBr{
	display:block;
}
.pcBr{
	display:inline;
}


@media(min-width:821px){
html{
	font-size: 12px;
}
header{
	padding: 25% 0;
}
header h1{
	width: 35%;
}
.visuals{
	padding: 15% 18%;
}
.caption{
	padding: 6.4% 2.75% 0;
}
.caption dl+dl{
	margin-top: 25px;
}
.caption dt,.caption dd{
	font-size: 1.5rem;
}
#sec00{
	margin-bottom: 17%;
}
#sec11{
	padding-left: 0;
	padding-right: 0;
}
#sec02 .cap{
	top: 83.7%; 
	left: 51.6%;
	width: 17.3%;
}
#sec04 .cap{
	top: 16.69%; 
	left: 40.7%;
	width: 5%;
}
#sec07 .cap01{
	top: 14.74%; 
	left: 19.7%;
	width: 13.8%;
}
#sec07 .cap02{
	top: 73.29%; 
	left: 36.95%;
	width: 16.85%;
}
#sec09 .cap{
	top: 16.83%; 
	left: 54.15%;
	width: 5%;
}
.lookDetail{
	display:-webkit-box;
	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding:10%;
}
.lookImg{
	width:50%;
}
.lookCredit{
	margin-left:5%;
	width:45%;
	padding:0;
}
.lookCredit dl+dl,
.creditHalf div+div{
	margin-top: 20px;
}
.creditHalf div{
	width: 100%;
}
.caption.creditHalf div:nth-child(1){
	width: 45%;
	margin-left: auto;
	margin-top: 0;
}
.caption.creditHalf div:nth-child(2){
	width: 45%;
	margin-top: 0;
	margin-right: auto;
}
.modaal-container{
	box-shadow: 0 4px 4px rgb(0 0 0 / 10%);
}
.modaal-close::before, .modaal-close::after{
	height: 68px;
	width: 1px;
	top: -9px;
	left: 25px;
}
footer{
	padding-top: 12.5%;
	padding-bottom: 20%;
}
footer ul{
	padding: 0;
}
footer ul li{
	margin-bottom: 6%;
}
footer ul li,
.copy{
	font-size: 1.2rem;
}
footer ul li:nth-child(n+3){
	margin-left: 1.6rem;
}
.spBr{
	display:inline;
}
.pcBr{
	display:block;
}
#comment{
	font-size: 14px;
	left: 22.5%;
	width: 55%;
	line-height: 40px;
	height: 40px;
	border-radius: 20px;
}
#comment::before{
	font: 12px;
}
}

@media(min-width:1080px){
html{
	font-size: 13px;
}
body{
	background-color: #fff;
}
.wrapper{
	background-color: #fff;
	box-sizing: unset;
	width: 1000px;
	margin: 0 auto;
	padding: 0;
}
#comment{
	font-size: 15px;
	left: 32.5%;
	width: 35%;
	line-height: 40px;
	height: 40px;
	border-radius: 20px;
}
#comment::before{
	font: 12px;
}
/*#comment{
	display: none;
}*/
}
@media(max-width:320px){
.caption dt,.caption dd{
	font-size: 1.1rem;
}
}