@charset "UTF-8";

* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
outline: 0;
text-decoration: none;
font-weight: 400
}
body {
font-family: 'Noto Sans JP', sans-serif;
overflow-x: hidden;
position: relative;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
direction: ltr;
background-color: #c2dcd9;
color: #000;
}
::selection {
background: #072752;
color: #fff
}
::-moz-selection {
background: #072752;
color: #fff
}

.loadingWrap {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: #c2dcd9;
}
.loadingWrap figure {
    width: 80px;
    height: auto;
    min-height: 0;
}

.cart-area {
    width: 48px;
    height: auto;
    display: block;
    position: fixed;
    top: 4%;
    right: 2%;
    z-index: 999;
}

/* header */
header.header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-image: url(../img/top.jpg);
    background-size: cover;
    background-position: right bottom;
}

header.header > video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
}
.head-inner {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: rgba(0,0,0,0.2);
}
.head-inner h1 {
    max-width: 320px;
    width: 100%;
    min-height: 0;
    display: block;
}

main.wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4%;
}

section h2 {
    font-size: 1.96rem;
    font-weight: 600;
    margin-bottom: 48px;
    display: block;
}

/* concept */
.concept {
    width: 100%;
    display: block;
}
.concept .inner {
    padding: 128px 0 0 0;
    text-align: center;
}
.concept .inner p {
    font-size: .96rem;
    line-height: 2.2em;
    letter-spacing: .25em;
}

/* collection */
.collection {
    width: 100%;
    display: block;
}
.collection .inner {
    padding: 128px 0 32px 0;
    text-align: center;
    margin: 0 auto;
}
.collection .inner p {
    font-size: 1.16rem;
    font-weight: 600;
    display: block;
    margin-bottom: 48px;
}
.collection .inner ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    margin: 0 auto 96px auto;
}
.collection .inner ul li {
    width: 32%;
    display: block;
    background-color: #fff;
    margin-bottom: 24px;
}

/* price */
.price {
    width: 100%;
    display: block;
}
.price .inner {
    padding: 0 0 128px 0;
    text-align: center;
}
.price .inner p {
    font-size: 1.16rem;
    font-weight: 600;
    display: block;
    margin-bottom: 48px;
}
.price table {
    width: 100%;
}
.price table , .price td, .price th {
	border: 1px solid #595959;
	border-collapse: collapse;
}
.price th {
    font-weight: 600;
}
.price td, .price th {
	padding: 16px;
    background: #fff;
    line-height: 1.6;
}
.price td {
    vertical-align: middle;
    font-size: .9rem;
    line-height: 1.6;
}
.price td.w50 {
    width: 50%;
}
.price .price-table {
    width: 100%;
    display: block;
    margin-bottom: 48px;
}
.price p.notice {
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}


/* style */
.style {
    width: 100%;
    display: block;
}
.style .inner {
    padding: 0 0 128px 0;
    text-align: center;
}
.style .inner p {
    font-size: 1.16rem;
    line-height: 1.6;
    font-weight: 600;
    display: block;
    margin-bottom: 48px;
}
.style .inner h3 {
    font-size: 1.36rem;
    font-weight: 600;
    display: block;
    margin-bottom: 48px;
}
.style .inner .map {
    width: 100%;
    display: block;
    margin-bottom: 48px;
}

/* footer */
footer.footer {
    width: 100%;
    display: block;
    position: relative;
    background-color: #000;
}
.foot-inner {
    width: 100%;
    display: block;
    padding: 96px 4%;
    text-align: center;
}
.foot-inner ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.foot-inner ul li {
    width: 32px;
    margin: 0 12px;
    display: block;
}
.foot-inner p.copy {
    font-size: .86rem;
    color: #fff;
}

@media screen and (max-width:480px) {

    .head-inner h1 {
        max-width: 240px;
    }

    .concept .inner p {
        font-size: .9rem;
        line-height: 2.2em;
        letter-spacing: .25em;
    }
    .collection .inner ul li {
        width: 48%;
        display: block;
        background-color: #fff;
        margin-bottom: 16px;
    }
    .style .inner ul li {
        width: calc(100% / 2);
    }

    .cart-area {
        width: 32px;
        height: auto;
        display: block;
        position: fixed;
        top: 4%;
        right: 4%;
        z-index: 999;
    }

}