@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 {
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

body{
	color: #333;
	font-family: adobe-caslon-pro,"Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "游明朝", YuMincho, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-style: normal;
	font-weight: 400;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt" 1;
}
p,li,dt,dd,th,td{
	font-size: 1.4rem;
	letter-spacing: 0.075em;
}
small{
    font-size: 0.75em;
}
strong{
    font-weight: bold;
}
em{
    font-style: italic;
}
a{
	cursor:pointer!important;
	color:#000;
	outline: none;
	text-decoration: none;
	text-underline-offset: 0.25em;
	transition:all .4s ease;
}
a:hover{
	color:#665545;
	/*text-decoration:underline;*/
}
a:focus, *:focus { cursor:pointer; outline:none; }

a img{
	transition:all .8s ease-out;
	filter:alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
a img:hover{
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
}

.youtube{
    position:relative;
    width:100%;
    height:0;
    padding-top:56.25%;
}
.youtube iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.wrapper{
	margin: 0 auto;
}
.container{
	width: 100%;
	margin: 0 auto;
}

.mainImg{
	box-sizing: border-box;
	padding: 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
}
.mainImg h1{
	position: absolute;
	left: 50%;
	bottom: 10%;
	width: 20%;
}
.mainImg h1 img{
	transform: translateX(-50%);
}
main{
	padding: 25% 0 0;
}
main > section{
	padding: 0;
}

img.lazyload {
	opacity: 0;
	visibility: hidden;
}
img.lazyloaded {
	opacity: 0;
	visibility: visible;
	animation: fadein 1s forwards 0.8s;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

main > section{
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: 1.5s ease-in 0.5s;
	transition: 1.5s ease-in 0.5s;
}
main > section.fadeIn{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.visual{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto 20%;
	width: 100%;
	position: relative;
}
.col1{
	flex-direction: column;
}
.visual figure{
	width: 48%;
	margin: 0 auto;
}
.visual figure+figure{
	margin-left: 4%;
}
.col1 figure{
	width: 75%;
	margin: 0 auto;
}
.full figure{
	width: 100%;
}
.visual img{
	width: 100%;
	height: auto;
}
#l02 figure{
	width: 36%;
	margin: 0!important;
}
#l02 figure:nth-child(2){
	display: flex;
	width: 28%;
}
#l02 figure:nth-child(2) img{
	width: 55%;
	margin: auto 22.5%;
}

.lookDetail{
	background-color:#fff;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	width: 80vw;
	height: 80vw;
}
.caption{
	box-sizing:border-box;
	margin:0 auto;
	padding: 4% 0 0;
}
.caption p+p{
	margin-top: 1.5rem;
}
.caption p{
	font-size: 1.3rem;
	line-height: 1.5;
	margin-top: 0;
}
.caption p span{
	display: inline-block;
}
.caption span:first-of-type{
	content:": ";
	margin-right: 0.75em;
}
.caption a span:first-of-type{
	text-decoration:underline;
	text-transform: capitalize;
}
.caption span.itemPrice{
	letter-spacing: 0.025em;
}
.caption span.itemNo{
	display: none;
}
.caption span small{
	display: inline-block;
	font-size: 0.75em;
	margin: 0 0 2px 0.25em;
	vertical-align: bottom;
}
.caption span.instore,
.caption span.inshop{
	font-size: 1.1rem;
	display: block;
	margin-top:3px;
}
.caption span.instore::before{
	margin-left: 0;
	content: "発売予定：";
}
.caption span.inshop::before{
	content: "取扱店舗：";
}
.caption span:last-child{
	margin-right: 0;
}

section#about{
	margin: 40% 0 0;
	padding: 0;
}
#about h1{
	width: 15%;
	margin: 0 auto 7.5%;
}
#about p{
	font-size: 1.3rem;
	line-height: 2;
	margin: 15% 10% 0;
}
#about p.link{
	display: block;
	font-size: 1.4rem;
	margin: 40px 10% 0;
}
.link a{
	border: #666 solid 1px;
	display: block;
	line-height: 40px;
	padding-top: 5px;
	text-align: center;
	text-decoration: none;
}
.link a:hover{
	border: #665545 solid 1px;
}
footer{
	padding:20% 0 10%;
}
footer nav ul{
	border-bottom: #000 solid 1px;
	display: -webkit-box;
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
footer nav li{
	font-size: 1.2rem;
	line-height: 1;
	width: calc((100% - 1px) / 2);
	text-align: center;
}
footer nav li a{
	display: block;
	text-decoration: none;
	padding: 15% 0;
}
footer nav li+li{
	border-left: #000 solid 1px;
}
footer p{
	font-size: 1rem;
	text-align: center;
	width: 100%;
}
.pcBr{
	display: inline-block;
}
.spBr{
	display: block;
}

.modaal-container{
	/*box-shadow: none;*/
	width: 80vw;
	height: 80vw;
}
.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;
	top: 0px;
	left: 36px;
	width: 1px;
}
.modaal-close:focus::before,
.modaal-close:focus::after,
.modaal-close:hover::before,
.modaal-close:hover::after {
	background: #999;
}

@media(min-width:821px){
html{
	font-size: 11px;
}
.mainImg{
	width: 50%;
}
main{
	padding: 15% 0 0;
}
main > section{
	padding: 0 15%;
}
.visual{
	margin: 0 auto 15%;
}
.visual figure{
	width: 47.5%;
}
.visual figure+figure{
	margin-left: 5%;
}
.col1 figure{
	width: 60%;
}
.full figure{
	width: 100%;
}
.lookDetail{
	width: 400px;
	height: 400px;
}
.caption{
	padding-top: 5%;
}
.caption p+p{
	margin-top: 1.5rem;
}
.caption span.instore,
.caption span.inshop{
	display: inline-block;
}
.caption span.instore::before{
	margin-left: 0.75rem;
}
section#about{
	margin: 20% 0 0;
}
section#about .inner{
	width: 500px;
	margin: 0 auto;
}
#about h1{
	width: 100px;
}
#about p{
	margin: 50px 10% 0px;
}
.link a{
	line-height: 60px;
}
footer{
	padding:15% 0 5%;
}
footer nav li{
	font-size: 1.375rem;
}
.pcBr{
	display: block;
}
.spBr{
	display: inline;
}
.modaal-container{
	width: 400px;
	height: 400px;
}
.modaal-close::before, .modaal-close::after{
	height: 68px;
	top: -9px;
	left: 25px;
}
}

