@charset "UTF-8";

/*** Web Font ***/
/*
// Noto Serif http://www.google.com/fonts/earlyaccess
@font-face {
    font-family: "Noto Serif";
    font-style: normal;
    font-weight: normal;
    src: url(../../fonts/NotoSerif-Regular.ttf) format("truetype");
}
@font-face {
    font-family: "Noto Serif";
    font-style: normal;
    font-weight: bold;
    src: url(../../fonts/NotoSerif-Bold.ttf) format("truetype");
}

// Noto Sans Japanese (japanese) http://www.google.com/fonts/earlyaccess
@font-face {
    font-family: "Noto Sans Japanese";
    font-style: normal;
    font-weight: 100;
    src: url(../../fonts/NotoSansCJKjp-Light.woff) format("opentype");
}
@font-face {
    font-family: "Noto Sans Japanese";
    font-style: normal;
    font-weight: 400;
    src: url(../../fonts/NotoSansCJKjp-DemiLight.woff) format("opentype");
}
@font-face {
    font-family: "Noto Sans Japanese";
    font-style: normal;
    font-weight: 700;
    src: url(../../fonts/NotoSansCJKjp-Bold.woff) format("opentype");
}
// Noto Serif Japanese (japanese) http://www.google.com/fonts/earlyaccess
@font-face {
    font-family: "Noto Serif Japanese";
    font-style: normal;
    font-weight: 400;
    src: url(../../fonts/NotoSerifCJKjp-Regular.woff) format("opentype");
}
@font-face {
    font-family: "Noto Serif Japanese";
    font-style: normal;
    font-weight: 700;
    src: url(../../fonts/NotoSerifCJKjp-Bold.woff) format("opentype");
}
*/

/*** Base ***/
/*
* {
    font-family: "Noto Serif", "Noto Sans Japanese";
}
*/
body {
    font-weight: lighter;
    background-color: #000;
    font-size: 0.9375rem;
}
.copyright {
    background-color: initial;
    color: #fff;
    text-align: initial;
}
h2 {
    text-transform: none;
    line-height: 1em;
    margin-bottom: 0.8em;
}
div#fullpage {
    max-width: 2048px;
    margin: auto;
    top: 0;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 750px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
/*** Global Navigation Bar ***/
#logo {
    z-index: 100;
    position: relative;
    padding: 10px 10px 0;
    width: 30%;
}
#logo img {
    height: 40px;
    position: relative;
    top: 15px;
    margin-top: -15px;
}
#menu #logo.dark {
    display: none;
}
#menu #logo.light {
    display: block;
}

#menu {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}
#menu ul {
    position: fixed;
    text-align: right;
    top: 0;
    left: auto;
    height: 30px;
    z-index: 70;
    width: 100%;
    max-width: 950px;
    padding: 10px 0 0;
    margin: 0 auto;
}
#menu ul li {
    display: inline;
    margin-left: 10px;
    margin-right: 10px;
}
#menu ul li a {
    color: ivory;
    text-decoration: none;
    font-size: small;
    vertical-align: middle;
}
#menu ul li#store-link {
    margin-right: 0;
    position: relative;
    top: 10px;
}
#menu ul li#store-link a {
    display: inline-block;
    width: 120px;
    height: 45px;
    background-image: url("../../images/btn_store.png");
    background-position: center top;
    background-repeat: no-repeat;
    -moz-background-size: contain;
    background-size: contain;
}
#menu ul li#store-link a img {
    display: none;
    width: 120px;
    float: left;
}
#menu ul li#store-link a:hover img {
    display: inline-block;
}
@media screen and (max-width: 750px) {
    #menu ul li#store-link a {
        width: 100px;
    }
    #menu ul li#store-link a img {
        width: 100px;
    }
}
.cart {
    height: 20px;
    margin-left: 2px;
    margin-bottom: -2px;
}
#menuicon {
    height: 22px;
    margin-left: 2px;
    margin-bottom: -2px;
}

/*** Global Navigation Bar (白背景ページ 差分）***/
#menu.light #logo.dark {
    display: block;
}
#menu.light #logo.light {
    display: none;
}
#menu.light ul {
    /*	background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#333)); */
}
#menu.light ul li a {
    color: black;
    font-weight: bold;
    transition: all 0.8s;
}
#menu.light ul li#store-link img.dark {
    display: inline-block;
}
#menu.light ul li#store-link img.light {
    display: none;
}

/*** Global Navigation Bar (SP 差分）***/
@media screen and (max-width: 750px) {
    #logo img {
        height: 28px;
        position: relative;
        top: 8px;
        margin-top: -3px;
    }
    #menu ul li.item {
        display: none;
    }
}

/*** Menu Trigger: Common ***/
.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    z-index: 100;
}
.menu-trigger {
    position: relative;
    width: 24px;
    height: 20px;
}
.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger span:nth-of-type(2) {
    top: 9px;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

/*** Menu Trigger: Common (白背景ページ 差分）***/
#menu.light .menu-trigger span {
    background-color: #000;
}

/*** Menu Triiger: Rotate ***/
.menu-trigger.menuactive span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
}
.menu-trigger.menuactive span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger.menuactive span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(315deg);
    transform: translateY(-8px) rotate(315deg);
}

/*** Menu ***/
.g-nav {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 400;
    height: 100%;
    z-index: 100;
}
.g-nav .list-sp {
    display: none;
}
.g-nav .list {
    padding: 10px 15px 0 20px;
    margin: 0;
    background-color: white;
    list-style: none;
    color: #fff;
}
.g-nav .list .item {
    position: relative;
}
.g-nav .list .separator {
    height: 1px;
    border-bottom: 1px solid #fff;
    margin: 10px auto;
}

.g-nav .list li.sns {
    padding: 30px 0 20px;
    text-align: center;
}
.g-nav .list-pc li.sns img {
    height: 40px;
    margin: 0 20px;
}
.g-nav .list-pc li.copyright {
    text-align: center;
    font-size: small;
    padding-bottom: 30px;
    color: #fff;
}
.g-nav .list .item a {
    display: block;
    text-align: left;
    text-decoration: none;
    padding: 5px 0;
    color: #fff;
}
.g-nav .list .ext-link a:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 10px;
    width: 20px;
    height: 24px;
    margin-top: -10px;
    background: url("../../images/ext-link_w.png") top left no-repeat;
    background-size: 20px 20px;
}

/*** Menu (SP 差分）***/
@media screen and (max-width: 750px) {
    .g-nav .list-pc {
        display: none;
    }
    .g-nav {
        top: 40px;
        width: 100%;
        overflow: scroll;
    }
    .g-nav .list-sp {
        display: block;
    }
    .g-nav .list-sp li.sns img {
        height: 50px;
        margin: 0 20px;
    }
    .g-nav .list-sp li.copyright {
        text-align: center;
        font-size: small;
        padding-bottom: 60px;
    }
}

/*** fullPage.js: Slider Mark ***/
#fp-nav {
    z-index: 30;
}
#fp-nav.light ul li a span,
.fp-slidesNav ul li a span {
    background: whitesmoke;
    opacity: 0.6;
}
#fp-nav.dark ul li a span,
.fp-slidesNav ul li a span {
    background: black;
    opacity: 0.6;
}
.btn-next {
    text-align: center;
    padding: 0.375rem 42px 0.375rem 0.75rem;
    clear: both;
    display: block;
}
.btn-next img {
    width: 36px;
    position: absolute;
    bottom: 10px;
}
.aboutus {
    padding: 0;
    width: 300px;
    margin: auto;
}
.aboutus img {
    margin-top: 50px;
    width: 310px;
    position: relative;
    padding: 0;
}
@media screen and (max-width: 750px) {
    #fp-nav.right {
        right: -2px !important;
    }
    .aboutus img {
        width: 250px;
    }
}

/*** fullPage.js: Section ***/
div#page01 {
    background-image: url("../../images/p1.jpg");
    background-position: center center;
    background-size: cover;
}
div#page02 {
    background-image: url("../../images/p2.jpg");
    background-position: center center;
    background-size: cover;
}
div#page03 {
    background-image: url("../../images/p3.jpg");
    background-position: center center;
    background-size: cover;
}
div#page04 {
    background-image: url("../../images/p4.jpg");
    background-position: center center;
    background-size: cover;
}
div#page05 {
    background-image: url("../../images/p5.jpg");
    background-position: center center;
    background-size: cover;
}
div#page06 {
    background-image: url("../../images/p6.jpg");
    background-position: center center;
    background-size: cover;
}
div#page07 {
    background-image: url("../../images/p7.jpg");
    background-position: left center;
    background-size: cover;
}

/*** Section Common ***/
.section {
    position: relative;
    background-color: #000;
}
.section .contents {
    width: 530px;
    margin: auto 100px 200px;
}
.section .contents h1 {
    color: orange;
    font-size: 20pt;
    margin-bottom: 5px;
}
.section .contents h2 {
    font-size: 30pt;
    font-weight: normal;
    color: white;
    margin-top: 10px;
    margin-bottom: 20px;
}
.section .contents p {
    font-size: 12pt;
    font-weight: 100;
    color: white;
    margin-top: 10px;
    text-align: left;
}
.section .contents div.ext-link {
    white-space: nowrap;
    font-weight: bold;
}
.section .contents div.ext-link a {
    color: #ccc;
    text-decoration: none;
    font-size: x-large;
}
.section .contents div.ext-link a img {
    width: 16px;
    margin-left: 5px;
}

/*** Section Common (SP 差分）***/
@media screen and (max-width: 750px) {
    .section .contents {
        width: 75%;
        margin: auto 30px 100px;
    }
    .section .contents h2 {
        font-size: 18pt;
    }
    .section .contents p {
        font-size: 8pt;
    }
    .section .contents div.ext-link a {
        font-size: 10pt;
    }
}

/*** Page 01 ***/
#page01 .contents {
    text-align: center;
    width: 100%;
    margin: 0;
}
#page01 .contents p {
    text-align: center;
}
#page01 .contents img.symbol {
    width: 120px;
}
@media screen and (max-width: 750px) {
    #page01 .contents img.symbol {
        width: 60px;
    }
}

/*** Page 02 ***/
#page02 .contents {
    margin: 0;
    position: absolute;
    left: 100px;
    bottom: 100px;
}
@media screen and (max-width: 750px) {
    #page02 .contents {
        margin: auto 30px 100px;
        position: absolute;
        left: 0;
        bottom: 0;
    }
}

/*** Page 03 ***/
#page03 .contents {
    margin: 0;
    position: absolute;
    top: 100px;
    left: 100px;
}
@media screen and (max-width: 750px) {
    #page03 .contents {
        margin: 100px 30px auto;
        position: absolute;
        top: 0;
        left: 0;
    }
}

/*** Page 04 ***/
#page04 .contents {
    margin: 0;
    position: absolute;
    top: 100px;
    left: 100px;
}
@media screen and (max-width: 750px) {
    #page04 .contents {
        margin: 100px 30px auto;
        position: absolute;
        top: 0;
        left: 0;
    }
}

/*** Page 05 ***/
#page05 .contents {
    margin: 0;
    position: absolute;
    right: 100px;
    bottom: 100px;
}
@media screen and (max-width: 750px) {
    #page05 .contents {
        margin: auto 30px 50px;
        position: absolute;
        left: 0;
        bottom: 60px;
    }
}

/*** Page 06 ***/
#page06 .contents {
    color: white;
    width: 100%;
    margin: auto 30px;
}
#page06 .contents .products {
    overflow: hidden;
    width: 90%;
    margin-left: 0;
}
#page06 .contents .product {
    background-color: black;
    margin: 5px;
    overflow: hidden;
    width: 48%;
    position: relative;
}
#page06 .contents .product.odd {
    float: left;
}
#page06 .contents .product.even {
    float: right;
}
#page06 .contents .product img {
    width: 40%;
    float: left;
    margin-right: 20px;
}
#page06 .contents .product .more {
    position: absolute;
    right: 35px;
    bottom: 10px;
}
#page06 .contents .product .more a {
    color: orange;
    text-decoration: none;
    font-size: 14pt;
}
/*
#page06 .contents .product .more a:after {
	position: absolute;
    content: "";
    top: 60%;
    left: 60px;
    width: 20px;
    height: 24px;
    margin-top: -10px;
    background: url(../../images/ext-link_w.png) top left no-repeat;
    background-size: 15px 15px;
}*/
#page06 .contents .product .comment {
    padding-top: 20px;
    padding-right: 20px;
    font-size: medium;
    font-weight: 100;
}
#page06 .contents .product .comment .title {
    padding-top: 20px;
    padding-right: 20px;
    font-size: large;
    font-weight: normal;
}
@media screen and (max-width: 1024px) {
    #page06 .contents {
        margin: 0 auto;
        width: 80%;
    }
    #page06 .contents .products {
        margin: auto;
        width: 90%;
    }
    #page06 .contents .product {
        margin-bottom: 10px;
        width: 100%;
    }
    #page06 .contents .product img {
        width: 20%;
        float: left;
        margin-right: 20px;
    }
    #page06 .contents .product.odd {
        float: none;
    }
    #page06 .contents .product.even {
        float: none;
    }
    #page06 .contents .product .more {
        bottom: 5px;
    }
    #page06 .contents .product .more a {
        font-size: 12pt;
    }
    #page06 .contents .product .more a:after {
        left: 55px;
    }
}
@media screen and (max-width: 750px) {
    #page06 .contents {
        margin: auto;
        width: 95%;
    }
    #page06 .contents h1 {
        margin-left: 20px;
    }
    #page06 .contents .product .comment {
        padding-top: 5px;
        padding-right: 8px;
        font-size: 8pt;
    }
    #page06 .contents .product .comment .title {
        font-size: 8pt;
    }
    #page06 .contents .product img {
        width: 20%;
        min-width: 80px;
        margin-right: 5px;
    }
    #page06 .contents .product .more {
        bottom: 0px;
    }
    #page06 .contents .product .more a {
        font-size: 8pt;
    }
    #page06 .contents .product .more a:after {
        left: 40px;
    }
}

/*** Page 07 ***/
#page07 .contents {
    margin: 0 auto;
    text-align: center;
}
#page07 .contents div.link {
    text-align: left;
}
#page07 .contents div {
    text-align: center;
}
#page07 .contents img.symbol {
    width: 60px;
}
#page07 .btn-next {
    padding-right: 80px;
}
#page07 .btn-next img {
    width: 64px;
    bottom: 20px;
}
@media screen and (max-width: 750px) {
    #page07 .contents {
        width: 80%;
        margin: 0 20px auto;
        position: absolute;
        top: 50px;
        left: 0;
    }
    #page07 .contents h2 {
        font-size: 16pt;
    }
    #page07 .contents p {
        font-size: 8pt;
    }
    #page07 .contents img.symbol {
        width: 40px;
    }
}

/*** Page 08 ***/
#page08 .contents {
    margin: 0 auto;
    display: inline-table;
    vertical-align: middle;
    width: 40%;
    margin: 2%;
}
#page08 .fp-tableCell {
    text-align: center;
}
#page08 .contents .map-link {
    border: 1px #fff solid;
    text-align: center;
}
#page08 .contents .map-link a {
    color: #fff;
    text-decoration: none;
    width: 100%;
    display: inline-block;
    padding: 5px 0;
    font-size: large;
}
#page08 .image img {
    width: 100%;
    margin-top: 20px;
}
#page08 #footer {
    width: 96%;
    margin: 20px 20px 0;
    border-top: 1px #fff solid;
    position: absolute;
    bottom: 10px;
}
#page08 #footer .copyright {
    display: inline-block;
    margin-top: 15px;
    font-size: x-small;
    position: absolute;
    left: 10px;
}
#page08 #footer .sns {
    margin-top: 10px;
    display: inline-block;
    width: 100%;
    text-align: right;
}
#page08 #footer .sns img {
    width: 32px;
}
#page08 #footer .sns a {
    margin: auto 10px;
}
#page08 .contents div.ext-link {
    text-align: center;
}
#page08 .contents h2 {
    text-align: center;
}
@media screen and (max-width: 750px) {
    #page08 .contents {
        width: 80%;
        margin: 0 20px auto;
    }
    #page08 .contents h2 {
        font-size: 18pt;
    }
    #page08 .contents p {
        font-size: 9pt;
    }
    #page08 .image {
        text-align: center;
    }
    #page08 .image img {
        width: 80%;
        margin-top: 20px;
    }
    #page08 #footer {
        display: none;
    }
}

.header {
    z-index: 1 !important;
}

@media (max-width: 768px) {
    .minicart {
        position: fixed;
        right: 48px;
    }

    #menu {
        position: fixed;
        width: auto;
    }

    .g-nav {
        position: fixed;
        top: 65px;
    }

    #menu ul {
        top: 5px;
        position: relative;
        height: auto;
    }
}

.main-menu {
    background-color: transparent;
}

header {
    position: fixed;
    z-index: 999;
    width: 100%;
    background-color: transparent;
}

img {
    height: auto;
}

.static-header > .row {
    margin: 0;
}

.static-header .brand {
    position: static;
    margin: 0;
    padding: 15px 0;
    text-align: left;
}
.static-header .brand img {
    height: 28px;
    margin-top: 5px;
    top: 0;
    width: auto;
    max-width: none;
}

.static-header .main-menu {
    padding: 0;
}
.static-header .main-menu .container {
    padding: 15px 0;
}
.static-header .main-menu .container a {
    font-size: 0.9rem;
    padding-right: 4.375rem;
}

.static-header .navbar .navbar-nav li.nav-item > a {
    color: white;
    line-height: 1.5;
}

.static-header #navbar-header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}
.static-header #navbar-header-right .search {
    display: none;
}
.static-header #navbar-header-right .search .site-search input {
    font-family: 'FontAwesome'
}
.static-header #navbar-header-right .search .site-search .suggestions {
    width: 100%;
}
.static-header #navbar-header-right .search .site-search .suggestions .header {
    -webkit-box-pack: left !important;
    -ms-flex-pack: left !important;
    justify-content: left !important;
}
.static-header #navbar-header-right .search .search-button {
    display: none;
}
.static-header #navbar-header-right .nav-item .user {
    padding: 0.8rem;
    margin: 0;
    line-height: normal;
}
.static-header #navbar-header-right .nav-item .user > a {
    color: white;
    font-size: 0.9rem;
}
.static-header #navbar-header-right .nav-item .user > a i {
    display: none;
}
.static-header #navbar-header-right .nav-item .user > a .user-message {
    color: white;
    padding: 0;
}
.static-header #navbar-header-right .minicart {
    margin: 0.6rem 1rem 0;
}
.static-header #navbar-header-right .minicart .minicart-icon {
    width: 34px;
    height: auto;
}
.static-header #navbar-header-right .minicart .minicart-link {
    font-size: 0.9375rem;
    line-height: 2.1094rem;
}
.static-header #navbar-header-right .minicart .logo_black {
    display: none;
}
.static-header #navbar-header-right .minicart .minicart-quantity {
    background-color: transparent;
    position: absolute;
    top: 11px;
    left: 8.8px;
    color: #fff;
    font-size: 0.7617rem;
}
.static-header #navbar-header-right .g-nav .lit-sp .nav-item a {
    line-height: 1.5;
}
.static-header #navbar-header-right .g-nav .spLoginButton {
    border: 1px solid #999;
    margin-bottom: 1.5em;
    text-align: center;
}
.static-header #navbar-header-right .g-nav .collapsible-sm .title {
    line-height: 1.3em;
}
.static-header #navbar-header-right .g-nav .collapsible-sm .title::after {
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin-left: 0.5rem;
    float: none;
}
.static-header #navbar-header-right .g-nav .collapsible-sm.active .title::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.static-header #navbar-header-right .g-nav .category-end {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.static-header .menu-sns {
    padding: 20px;
}
.static-header .menu-sns .social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
}
.static-header .menu-sns .social-links li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    text-align: center;
}

@media (min-width: 768.98px) {
    .static-header > .row {
        margin-right: -15px;
        margin-left: -15px;
    }
    .static-header #menu {
        display: none;
    }
    .static-header .brand img {
        height: 28px;
        margin-top: 8px;
    }
    .static-header #navbar-header-right {
        padding: 15px;
    }
    .static-header #navbar-header-right .nav-item .user > a {
        line-height: normal;
    }
    .static-header #navbar-header-right .minicart {
        margin: 0.3rem 0 0;
    }
    .static-header #navbar-header-right .search {
        display: inline-block;
        color: white;
        padding: 0.8rem;
        margin: 0;
        font-size: 0.9375rem;
    }
    .static-header #navbar-header-right .site-search {
        display: none;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        padding: 5%;
        position: fixed;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 10;
    }
}

@media (min-width: 991.98px) {
    .static-header .brand img {
        height: 33px;
        top: 0.9em;
    }
    .static-header #navbar-header-right .site-search {
        padding: 1% 20%;
    }
}

@media (min-width: 1199.98px) {
    .static-header .brand img {
        height: 40px;
        top: 0;
        margin-top: 10px;
    }
}
