@charset "utf-8";

* {
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2;
}
figure {
    margin: 0;
}
img {
    vertical-align: bottom;
}
a, a:link, a:visited {
    text-decoration: none;
    color: #333;
}
a:hover {
    text-decoration: underline;
}

#siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.brand {
    margin: 0;
    padding-left: 20px;
}
.brand img {
    width: 80px;
    height: auto;
}
.submitted {
    position: fixed;
    top: 120px;
    left: 0;
    margin: 0;
    font-size: .875em;
    z-index: 101;
}
.submitted span {
    padding: .25em;
    background-color: #fff;
}
.product-credit {
    margin: 0;
    padding-right: 20px;
    font-size: .75em;
    text-align: right;
    letter-spacing: 1px;
    line-height: 1.75;
}

#firstView {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url("../images/pc-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color:rgba(255,255,255,0.1);
    background-blend-mode:lighten;
}
/* #mainImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: auto;
    z-index: 10;
} */
#mainImage {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 90vw;
    height: auto;
    z-index: 10;
}
#mainImage img {
    width: 100%;
    height: auto;
}
/* #mainImageBg {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 75vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
} */
#mainImageBg {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
#mainImageBg img {
    width: 100%;
    height: auto;
}
/* #productPrice {
    position: absolute;
    bottom: 10%;
    left: 10%;
} */
#productPrice {
    position: absolute;
    bottom: 14%;
    left: 35px;
}
/* .price {
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1;
} */
.price {
    margin: 0;
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
}

.price dd {
    margin: 0;
}
.price dd span {
    font-size: 3em;
}

#buy {
    position: fixed;
    right: 10%;
    bottom: 0;
}
#buy p {
    margin: 0;
    text-align: center;
}
.cart-button {
    appearance: none;
    padding: .5em 4em;
    font-size: 1.5em;
    border: none;
    background: linear-gradient(45deg, #DAAF08 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #DAAF08 90% 100%);
    background-size: 800% 400%;
    animation: gradient 5s infinite cubic-bezier(.62, .28, .23, .99) both;
    cursor: pointer;
    box-shadow: 3px 3px 3px #666;
    border-radius: 1em 1em 1em 0;
}
@keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}

#introSection {
    background-image: url("../images/bg.png");
}
.intro {
    padding: 40px 10px;
    text-align: center;
}
.intro p {
    font-family: serif;
    font-size: 1em;
    line-height: 2;
}

.intro-flex {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 0;
}
.spec-info, .spec-photo {
    width: 50%;
    padding: 0 20px;
}
.spec-info {
    font-family: serif;
    font-size: .875em;
    order: 2;
    width: 100%;
}
.spec-info h2 {
    text-align: center;
    font-size: 2em;
}
.spec-photo {
    margin: 0 auto;
    order: 1;
}
.spec-photo img {
    width: 100%;
    height: auto;
}

.spec {
    display: flex;
    margin: 0;
    width: 100%;
    border-bottom: 1px solid #666;
    font-family: serif;
    font-size: 1.25em;
}
.spec dt {
    width: 25%;
    padding: 10px;
}
.spec dd {
    width: 75%;
    padding: 10px;
}

.contact {
    background-color: #f5f5f5;
    padding: 1.5em 2em;
}
.contact h3 {
    margin: 0;
    font-size: 1.75em;
}
.contact p {
    margin: 0;
    font-size: 1.25em;
}
.copyright {
    margin: 0;
    padding: 1em 0;
    text-align: center;
}

@media screen and (min-width: 768px) {
    #mainImage {
        height: 75vh;
        width: auto;
    }
    #mainImage img {
        height: 100%;
        width: auto;
    }
    #mainImageBg {
        width: 80vw;
        bottom: 16%;
        opacity: 1;
    }
    #buy {
        right: 4%;
        bottom: 2%;
    }
    #productPrice {
        bottom: 4%;
        left: 4%;
    }
    .price {
        font-size: 1.25em;
    }
    .intro-flex {
        flex-direction: column;
    }
    /* .spec-info {
        width: 100%;
        order: 2;
    }
    .spec-info h2 {
        text-align: center;
    }
    .spec-photo {
        margin:  0 auto;
        order: 1;
    } */
}
@media screen and (min-width: 1024px) {
    #siteHeader {
        padding: 20px 0;
    }
    .brand img {
        width: 100px;
        height: auto;
    }
    #mainImage {
        height: 70vh;
        width: auto;
    }
    #mainImageBg {
        width: 90vw;
        bottom: 0;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .intro-flex {
        flex-direction: row;
    }
    .spec-info {
        width: 50%;
        order: 1;
    }
    .spec-photo {
        width: 50%;
        order: 2;
    }
    .intro p {
        font-size: 1.25em;
    }
    .submitted {
        top: 160px;
        left: 20px;
    }
    .product-credit {
        font-size: .875em;
        line-height: 2;
    }
    #productPrice {
        bottom: 10%;
        left: 10%;
    }
    .price {
        font-size: 1.5em;
    }
    #buy {
        bottom: 8%;
    }
}
@media screen and (min-width: 1280px) {
    #mainImage {
        height: 90vh;
        width: auto;
    }
    #mainImageBg img {
        height: 100%;
        width: auto;
    }
}