@charset "utf-8";

@import url("bootstrap.custom.min.css");
/* only Grid system CSS */

/* --------------------------------
	Base style
-------------------------------- */
body {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    font-weight: 400;
}
ul,
ol,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

ol,
li {
    list-style: none;
}

img {
    border: none;
    line-height: 0;
    font-size: 0;
    vertical-align: middle;
    max-width:100%;
}

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

/* ---------- */
a {
    margin: 0;
    padding: 0;
    font-size: inherit;
    background: transparent;
}

th,
td {
    font-style: normal;
    font-weight: normal;
    font-size: inherit;
    empty-cells: show;
}

input,
select {
    vertical-align: middle;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    border-radius: 0;
}

pre {
    white-space: -moz-pre-wrap;/* Mozilla */
    white-space: pre-wrap;/* CSS3 */
    word-wrap: break-word;/* IE 5.5+ */
}

/* Selected Text
---------------------------------------------------*/
::selection {
    background: #191919;
    /* Safari */
    color: #fff;
}


/* --------------------------------
	Common style
-------------------------------- */
html {
    font-size: 62.5%;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

body {
    position: relative;
    width: 100%;
    line-height: 1;
    color: #000;
    font-family: 'Noto Sans JP', serif;
    font-size: 16px;
    font-weight: 400;
    font-feature-settings: 'palt';
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: #000;
}
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}

.spno {display:block;}
br.spno {display: inline;}
.pcno {display:none;}
br.pcno {display:none;}


/* < 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
    body {
        font-size: 3.88vw;
        -webkit-text-size-adjust: 100%;
        -webkit-touch-callout:none; /* リンク長押しのポップアップを無効化 */
        -webkit-user-select:none; /* テキスト長押しの選択ボックスを無効化 */
    }
    .pcno {display: block;}
    br.pcno {display: inline;}
    .spno {display: none;}
    br.spno {display: none;}
}


/* link
---------------------------------------------------*/
a {
    text-decoration: none;
}
a:link,
a:visited,
a:active {
    color: #000;
}
a:hover {
    color: #333;
    text-decoration: none;
}
a,
.hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.hover:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

/* clearfix
---------------------------------------------------*/
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.clearfix {
    min-height: 1px;
    zoom: 1;
}
* html .clearfix {
    height: auto;
    overflow: hidden;
}


/* INPUT
---------------------------------------------------*/
input, button, select, textarea {
    font-family: inherit;
    font-size: 1em;
    color: inherit;
    margin: 0;
}

input, button {
    border: 0;
    line-height: normal;
    vertical-align: inherit;
    *vertical-align: middle;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    cursor: pointer;
    -webkit-appearance: button;
    *overflow: visible;
    border: 0;
    outline: none;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea,
select {
    overflow : hidden;
    outline : none;
}

input:focus{ outline: 0 none black; }

/* ------ */
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
    width: 100%;
    line-height: 1.0em;
    color: #333;
    background-color: #fff;
    border: 1px solid #343D4A;
    -webkit-border-radius: 0.3em;
    border-radius: 0.3em;
    vertical-align: middle;
    padding: 0.3em 0.5em;
}
textarea {
    height: 10em;
    line-height: 1.4em;
    color: #333;
    overflow: auto;
}
select {
    color: #333;
    background-color: #fff;
    border: 1px solid #343D4A;
    -webkit-border-radius: 0.3em;
    border-radius: 0.3em;
    vertical-align: middle;
    padding: 0.2em 0.5em;
    line-height: 1.0em;
}
input:read-only {
    border: 0;
    background-color: transparent;
}
input[type="checkbox"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="radio"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
select:focus,
textarea:focus {
    border-color: #1EA9DB;
    box-shadow: 0 0 0 1px #1EA9DB;
    outline: 2px solid transparent;
}

/** placeholder **/
.placeholder {color: #999;}
:placeholder-shown{color:#999;}
/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder{color:#999;}
/* Firefox 18- */
:-moz-placeholder{color:#999;}
/* Firefox 19+ */
::-moz-placeholder{color:#999;}
/* IE 10+ */
:-ms-input-placeholder{color:#999 !important;}


input.disabled {
    background-color: #f5f5f5;
}

/* < 768 */
@media screen and (min-width:1px) and (max-width: 768px) {
}


/* Page
---------------------------------------------------*/
#wrapper {
    position: relative;
    overflow: hidden;
}
/* contents-wrap */
.contents-wrap {
    position: relative;
    width: 96%;
    max-width: 1000px;
    margin: 0 auto;
}
.container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 8px;
    padding-right: 8px;
}
.row {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 16px;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    .contents-wrap {
        width: 91.66vw;
    }
}



/* svg icon
---------------------------------------------------*/
#svgicon {
    display: block;
    width: 0; height: 0; overflow: hidden;
}
.cb {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.cb-images {
    width: 1.125em;
}
.icon-bg {
    fill: #d4d4d5;
}
.icon-with-bg {
    fill: #fff;
}


/* Header
---------------------------------------------------*/
#Header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 999;
}
#Header .inner {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    height: 80px;
    z-index: 1;
}
.header_logo_area {
    width: 50%;
}
.header_logo_area .header_logo a {
    display: block;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.12em;
}

/* gnavi */
#gnavi {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 505px;
    height: 80px;
    z-index: 2;
}

/* btn_cart */
#gnavi > .btn_cart {
    display: none;
}
#gnavi > .btn_cart a .cb {
    fill: #fff;
}
#gnavi > .btn_cart a p {
    color: #fff;
}


/* ul.menu */
#gnavi > ul.menu {
    position: absolute;
    top: 0;
    right: 30%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    height: 80px;
    z-index: 100;
}
#gnavi > ul.menu li {
    margin-right: 30px;
}
#gnavi > ul.menu li:last-of-type {
    margin-right: 0;
}
#gnavi > ul.menu li a {
    display: block;
    text-align: center;
}
#gnavi > ul.menu li a:hover {
}
#gnavi > ul.menu li a .cb {
    position: relative;
    width: 20px;
    height: 20px;
    fill: #fff;
}
#gnavi > ul.menu li a:hover .cb {
    opacity: 0.8;
}
#gnavi > ul.menu li a p {
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.01em;
    margin-top: 0.5em;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/* menu-panel */
#gnavi .menu-panel {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    padding: 110px 60px 50px;
}

/* scrollbar */
#gnavi .menu-panel::-webkit-scrollbar {
    width: 6px;
}
#gnavi .menu-panel::-webkit-scrollbar-thumb {
    border: 2px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 1em;
    background-color: rgba(255, 255, 255, 0.5);
}
#gnavi .menu-panel::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}
#gnavi .menu-panel::-webkit-scrollbar-corner {
    background-color: transparent;
}

/* ul.menu */
#gnavi .menu-panel > ul.menu {
    display: none;
}

/* category_nav */
#category {
    min-height: 330px;
    padding-bottom: 20px;
}

/* ul.toggle-navi */
ul.toggle-navi {
    margin: 0 auto;
}
ul.toggle-navi li a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 1em 0;
}

/* sub-menu */
ul.toggle-navi nav.sub-menu {
    display: none;
    padding-left: 1em;
}
ul.toggle-navi nav.sub-menu li a {
    font-weight: normal;
}

/* has-child */
ul.toggle-navi li.has-child > a {
    position: relative;
}
ul.toggle-navi li.has-child > a:before {
    position: absolute;
    content: '';
    top: 50%;
    right: -40px;
    width: 20px;
    height: 1px;
    background-color: #fff;
}
ul.toggle-navi li.has-child > a:after {
    position: absolute;
    content: '';
    top: 50%;
    right: -30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 1px;
    height: 20px;
    background-color: #fff;
}

/* has-child.active */
ul.toggle-navi li.has-child.active > a:after {
    height: 0;
}

/* menu-links */
#menu-links {
    margin: 0 auto;
}
#menu-links .btn-wrap {
    margin-bottom: 15px;
}
#menu-links .btn-wrap:last-of-type {
    margin-bottom: 0;
}

/* btn_menu */
#btn_menu {
    position: absolute;
    top: 0;
    right: 8%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 999;
}
#btn_menu .menu-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 28px;
    height: 22px;
    z-index: 10;
}
#btn_menu .menu-trigger,
#btn_menu .menu-trigger span {
    transition: all 0.5s;
    box-sizing: border-box;
}
#btn_menu .menu-trigger span {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
#btn_menu .menu-trigger span:nth-of-type(1) {
    top: 0;
}
#btn_menu .menu-trigger span:nth-of-type(2) {
    top: calc(50% - 1px);
}
#btn_menu .menu-trigger span:nth-of-type(2)::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.15s;
}
#btn_menu .menu-trigger span:nth-of-type(3) {
    top: auto;
    bottom: 0;
}

#btn_menu .menu-trigger.active span {
    background-color: #fff;
}
#btn_menu .menu-trigger.active span:nth-of-type(1) {
    transform: translate(50%) scale(0);
}
#btn_menu .menu-trigger.active span:nth-of-type(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#btn_menu .menu-trigger.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background-color: #fff;
}
#btn_menu .menu-trigger.active span:nth-of-type(3) {
    transform: translate(-50%) scale(0);
}

/*------ active -----*/
/* gnavi.active */
#gnavi.active {
    display: block;
}
#gnavi.active > ul.menu li a .cb {
    fill: #fff;
}
#gnavi.active > ul.menu li a p {
    color: #fff;
}
#gnavi.active > .btn_cart a .cb {
    fill: #fff;
}
#gnavi.active > .btn_cart a p {
    color: #fff;
}

/* menu-panel */
#gnavi.active .menu-panel {
    display: block;
    left: 0;
}

/* hide */
#Header.shift {
    top: -80px;
}
/* stand */
#Header.stand {
    position: fixed;
    top: -80px;
    background-color: #000;
    -webkit-transition: 0.5s top ease-in-out;
    transition: 0.5s top ease-in-out;
}
/* fixed */
#Header.fixed {
    position: fixed;
    top: 0;
    background-color: #000;
    opacity: 1;
    -webkit-transition: 0.5s top ease-in-out;
    transition: 0.5s top ease-in-out;
}
#Header.fixed .header_logo_area .header_logo a {
    color: #fff;
}
#Header.fixed #gnavi > ul.menu li a .cb {
    fill: #fff;
}
#Header.fixed #gnavi > ul.menu li a p {
    color: #fff;
}
#Header.fixed #btn_menu .menu-trigger span {
    background-color: #fff;
}
#Header.fixed #btn_menu .menu-trigger span:nth-of-type(2)::after {
    background-color: #fff;
}
#Header.fixed #gnavi > .btn_cart a .cb {
    fill: #fff;
}
#Header.fixed #gnavi > .btn_cart a p {
    color: #fff;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    #Header .inner {
        width: 70%;
        height: 13.88vw;
        padding-left: 4.16vw;
        margin: 0;
        z-index: 3;
    }
    .header_logo_area {
        width: 100%;
    }
    .header_logo_area .header_logo a {
        font-size: 3.61vw;
    }
    .drawer-open #Header .inner {
        z-index: 3;
    }
    .drawer-open .header_logo_area .header_logo a {
        color: #fff;
    }

    /* gnavi */
    #gnavi {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        max-width: none;
        height: 13.88vw;
    }

    /* btn_cart */
    #gnavi > .btn_cart {
        display: block;
        position: absolute;
        top: 0;
        right: 18.05vw;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        height: 13.88vw;
        z-index: 100;
    }
    #gnavi > .btn_cart a {
        display: block;
        text-align: center;
    }
    #gnavi > .btn_cart a .cb {
        position: relative;
        width: 3.88vw;
        height: 3.88vw;
    }
    #gnavi > .btn_cart a p {
        font-size: 2.36vw;
        letter-spacing: 0.01em;
        margin-top: 0.5em;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

    /* ul.menu */
    #gnavi > ul.menu {
        display: none;
    }

    /* menu-panel */
    #gnavi .menu-panel {
        padding: 13.88vw 0 12.5vw;
    }

    /* ul.menu */
    #gnavi .menu-panel > ul.menu {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-align-items: center;
        align-items: center;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }
    #gnavi .menu-panel > ul.menu li {
        width: 50%;
        border-right: 1px solid #fff;
    }
    #gnavi .menu-panel > ul.menu li:last-of-type {
        border-right: 0;
    }
    #gnavi .menu-panel > ul.menu li a {
        display: block;
        text-align: center;
        color: #fff;
        padding: 3.88vw 1em;
    }
    #gnavi .menu-panel > ul.menu li a .cb {
        width: 3.61vw;
        height: 3.61vw;
        fill: #fff;
        margin-right: 1.38vw;
    }

    /* category_nav */
    #category {
        min-height: 63.88vw;
        padding: 5.55vw 4.16vw;
    }
    /* ul.toggle-navi */
    ul.toggle-navi li a {
        display: block;
        font-size: 4.44vw;
    }
    ul.toggle-navi nav.sub-menu li a {
        font-size: 3.88vw;
    }
    /* has-child */
    ul.toggle-navi li.has-child > a:before {
        right: 0;
        width: 3.47vw;
        height: 2px;
    }
    ul.toggle-navi li.has-child > a:after {
        right: 1.735vw;
        width: 2px;
        height: 3.47vw;
    }

    /* menu-links */
    #menu-links {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
    }
    #menu-links .btn-wrap {
        margin-bottom: 0;
        margin-right: 4.72vw;
    }
    #menu-links .btn-wrap:last-of-type {
        margin-right: 0;
    }

    /* btn_menu */
    #btn_menu {
        right: 0;
        width: 14.58vw;
        height: 13.88vw;
    }
    #btn_menu .menu-trigger {
        width: 6.11vw;
        height: 5.14vw;
    }
    #btn_menu .menu-trigger span,
    #btn_menu .menu-trigger span:nth-of-type(2)::after {
        height: 4px;
    }
    #btn_menu .menu-trigger span:nth-of-type(2) {
        top: calc(50% - 2px);
    }

    /*------ active -----*/
    /* hide */
    #Header.shift {
        top: -13.88vw;
    }
    /* stand */
    #Header.stand {
        top: -13.88vw;
    }
    #Header.fixed {
        top: 0;
    }
}

/* footer
---------------------------------------------------*/
#footer .footer-contents {
    background-color: #fff;
    padding: 50px 0;
}
#footer .footer-contents .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
#footer .footer-contents .inner .information {
    display: -webkit-flex;
    display: flex;
}
#footer .footer-contents .inner .information .shop {
    margin-right: 100px;
}
#footer .footer-contents .inner .information .shop p {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1em;
}
#footer .footer-contents .inner .information .shop .logo img {
    width: 185px;
}

/* category_nav */
#footer-category ul.toggle-navi li a {
    color: #000;
    padding: 0.5em 0;
}
/* sub-menu */
#footer-category ul.toggle-navi nav.sub-menu {
    display: block;
    padding-left: 0;
}
#footer-category ul.toggle-navi li.has-child > a:before {
    display: none;
}

/* footer-links */
#footer-links {
}
#footer-links .btn-wrap {
    margin-bottom: 15px;
}
#footer-links .btn-wrap:last-of-type {
    margin-bottom: 0;
}

/* footer-navi */
#footer .footer-navi {
    color: #fff;
    background-color: #000;
    padding: 25px 0;
}
#footer .footer-navi .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}
#footer .footer-navi .logo {
    width: 33%;
}
#footer .footer-navi .logo img {
    width: 197px;
}
#footer .footer-navi .copyright {
    width: 33%;
    text-align: center;
    font-size: 10px;
}
#footer .footer-navi ul.menu {
    width: 33%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
#footer .footer-navi ul.menu li {
    position: relative;
    padding: 0 1em;
    border-right: 1px solid #fff;
}
#footer .footer-navi ul.menu li:last-of-type {
    border-right: 0;
}
#footer .footer-navi ul.menu li a {
    display: block;
    color: #fff;
    font-size: 10px;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    #footer .footer-contents {
        padding: 13.88vw 0;
    }
    #footer .footer-contents .inner {
        display: block;
    }
    #footer .footer-contents .inner .information {
        display: block;
        margin-bottom: 5.55vw;
    }
    #footer .footer-contents .inner .information .shop {
        text-align: center;
        margin-right: 0;
        margin-bottom: 6.94vw;
    }
    #footer .footer-contents .inner .information .shop p {
        font-size: 3.88vw;
    }
    #footer .footer-contents .inner .information .shop .logo img {
        width: 62.22vw;
    }

    /* category_nav */
    #footer-category {
        padding: 0 4.16vw;
    }

    /* footer-links */
    #footer-links {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
    }
    #footer-links .btn-wrap {
        margin-bottom: 0;
        margin-right: 4.72vw;
    }
    #footer-links .btn-wrap:last-of-type {
        margin-right: 0;
    }

    /* footer-navi */
    #footer .footer-navi {
        padding: 8.33vw 0 6.94vw;
    }
    #footer .footer-navi .inner {
        display: block;
    }
    #footer .footer-navi .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 6.94vw;
    }
    #footer .footer-navi .logo img {
        width: 45.416vw;
    }
    #footer .footer-navi .copyright {
        width: 100%;
        font-size: 2.5vw;
        margin-bottom: 4.16vw;
    }
    #footer .footer-navi ul.menu {
        width: 100%;
        -webkit-justify-content: center;
        justify-content: center;
    }
    #footer .footer-navi ul.menu li a {
        font-size: 2.5vw;
    }
}

/*

.drawer-open .nav-trigger span {
    !* hide line in the center *!
    background: rgba(46, 50, 51, 0);
}
.drawer-open .nav-trigger span::before, .drawer-open .nav-trigger span::after {
    !* keep visible other 2 lines *!
    background: #525263;
}
.drawer-open .nav-trigger span::before {
    -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
    transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.drawer-open .nav-trigger span::after {
    -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
    transform: translateX(4px) translateY(2px) rotate(-45deg);
}
*/


/* Layout
---------------------------------------------------*/
#contents {
    /*min-height: 100%;*/
    z-index: 2;
}
#side_left {
    float: left;
    width: 25%;
    padding-right: 16px;
}
#side_right {
    float: right;
    width: 25%;
    padding-left: 16px;
}

/* -- main_left (side_right only) -- */

/* main */
.theme_side_right #main {
    width: 75%;
    float: left;
}

/* -- main_right (side_left only) -- */
/* main */
.theme_side_left #main {
    width: 75%;
    float: right;
}

/* -- main_only -- */
/* main */
.theme_main_only #main {
    width: 100%;
}

/* -- main_left_right (side_left & side_right) -- */
/* main */
.theme_side_both #main {
    width: 50%;
    float: left;
}


/* display-flex */
.display-flex {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.display-flex-content-between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.display-flex-content-center {
    -webkit-justify-content: center;
    justify-content: center;
}
.display-flex-align-center {
    -webkit-align-items: center;
    align-items: center;
}
.display-flex-align-end {
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.display-flex-align-end {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

/* < 768 */
@media only screen and (max-width: 768px) {
    .display-sp-block {
        display: block;
    }
}


/* Parts
---------------------------------------------------*/
/* heading */
.page-heading {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 80px;
}

.heading01 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.5em;
}
.heading01 span {
    display: block;
    color: #c67089;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.025em;
    margin-bottom: 0.3em;
}
.heading02 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #000;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}
.heading03 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 1em;
}


/* message */
.message {
    line-height: 1.4em;
    text-align: center;
    padding: 16px 0;
    margin: 0;
}
p.message {
    padding: 0 0 1em;
}
.heading04 + .message {
    padding-top: 0;
    text-align: left;
}
.message .errormsg {
    padding: 1em;
    font-weight: bold;
}
.message .errormsg:first-child {
    margin-top: 0;
}
.message .errormsg:last-child {
    margin-bottom: 0;
}
.message .errormsg .cb {
    margin-right: 5px;
    font-size: 130%;
    position: relative;
    top: -1px;
}

/* intro */
.intro {
    padding-top: 0.5em;
    padding-bottom: 1.5em;
    margin: 0;
}

/* flowline */
.flowline {
    position: relative;
    margin: 0 auto 60px;
}
.flowline ul {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 auto;
}
.flowline ul::before {
    position: absolute;
    content: "";
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c67089;
    z-index:0;
}
.flowline.step3 ul::before {
    width: 66.66666666%;
    left: 16.6666666%;
}
.flowline.step4 ul::before {
    width: 75%;
    left: 12.5%;
}
.flowline ul li {
    position: relative;
    text-align: center;
    z-index:1;
}
.flowline.step3 ul li {
    width: 33.33333333333333%;
}
.flowline.step4 ul li {
    width: 25%;
}
.flowline li .flow_number {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 16px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: #c67089;
}
.flowline li .flow_number:after {
    position: absolute;
    content: '';
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 16px;
    height: 14px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: #fff;
}
.flowline li.active {
    color: #c67089;
}
.flowline li.active .flow_number:after {
    background-color: #c67089;
}
.flowline ul li p {
    font-size: 18px;
    white-space: nowrap;
    margin-top: 1.5em;
}



/* < 768 */
@media only screen and (max-width: 768px) {
    .page-heading {
        font-size: 5vw;
        margin-bottom: 19.44vw;
    }

    .heading01 {
        text-align: center;
        font-size: 5.83vw;
    }
    .heading01 span {
        font-size: 4.72vw;
    }
    .heading02 {
        font-size: 4.16vw;
    }
    .heading03 {
        font-size: 4.16vw;
    }

    /* message */
    .message .errormsg {
        padding: 0.5em;
    }


    /* flowline */
    .flowline {
        margin-bottom: 10vw;
    }
    .flowline ul::before {
        top: 1.597vw;
    }
    .flowline li .flow_number {
        width: 3.88vw;
        height: 3.33vw;
    }
    .flowline li .flow_number:after {
        width: 3.61vw;
        height: 3.05vw;
    }
    .flowline ul li p {
        font-size: 3.33vw;
    }

}


/* News List
---------------------------------------------------*/
.newslist dl {
    line-height: 1.4em;
    border-bottom: 1px solid #000;
}
.newslist dt {
    position: relative;
    display: -webkit-flex;
    display: flex;
    padding: 0.8em 0;
}
.newslist dt.haslink {
    cursor: pointer;
}
.newslist dt span {
    display: block;
}
.newslist dt span.date {
    margin-right: 3em;
}
.newslist dt .angle-circle {
    position: absolute;
    top: 10px;
    right: 0;
    width: 24px;
    height: 24px;
}
.newslist dt .angle-circle .cb {
    width: 100%;
    height: 100%;
    fill: #000;
}
.newslist dt:hover .angle-circle .cb {
    opacity: 0.8;
}
.newslist dt.haslink:hover .news_title {
    text-decoration: underline;
}
.newslist dt.active .cb {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.newslist dd {
    display: none;
    padding: 0 1em 0.8em;
}

/* < 768 */
@media only screen and (max-width: 768px) {

    /* newslist */
    .newslist .heading01 {
        text-align: left;
    }
    .newslist {
        padding: 0 4.16vw;
    }
    .newslist dt {
        display: block;
        font-size: 3.61vw;
    }
    .newslist dt span.date {
        margin-right: 0;
        margin-bottom: 0.5em;
    }
    .newslist dt .angle-circle {
        top: 8.33vw;
        width: 5.27vw;
        height: 5.27vw;
    }
}


/* btn
---------------------------------------------------*/
.btn-wrap {
}
.btn-wrap.center {
    text-align: center;
}
.btn {
    position: relative;
    display: inline-block;
    min-width: 220px;
    line-height: 1;
    text-align: center;
    color: #000;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #000;
    -webkit-border-radius: 2em;
    border-radius: 2em;
    padding: 0.86em 1em;
    letter-spacing: 0.04em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    outline: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
}
a.btn {
    color: #000;
}
.btn-cover:hover .btn,
.btn:hover {
    color: #fff !important;
    background-color: #000;
}
.btn-cover:hover .btn::after,
.btn::after {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.btn-black {
    color: #fff !important;
    background-color: #000;
    border-color: #fff;
}
.btn-cover:hover .btn-black,
.btn-black:hover {
    color: #000 !important;
    background-color: #fff;
    border-color: #000;
}
.btn-black .cb {
    fill: #fff;
}
.btn-black:hover .cb {
    fill: #000;
}


/* arrow */
.btn.arrow {
    padding-right: 2.5em;
    padding-left: 2.5em;
}
.btn.arrow::after {
    position: absolute;
    content: '';
    top: 40%;
    right: 10%;
    width: 0.6em;
    height: 0.6em;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-cover:hover .btn.arrow::after,
.btn.arrow:hover::after {
    border-color: #fff;
}
.btn.btn-black.arrow::after {
    border-color: #fff;
}
.btn-cover:hover .btn-black.arrow::after,
.btn.btn-black.arrow:hover::after {
    border-color: #000;
}

/* icon-mail */
.btn.icon-mail .cb {
    position: absolute;
    left: 10%;
    width: 18px;
    transition: none;
}

/* icon-cart */
.btn.icon-cart .cb {
    width: 19px;
    transition: none;
    vertical-align: bottom;
    margin-right: 0.5em;
}

/* square */
.btn.square {
    min-width: auto;
    -webkit-border-radius: 0.3em;
    border-radius: 0.3em;
    padding: 0.5em 1.5em;
}

/* btn-default */
.btn-default {
    color: #434343;
    background-color: #fff;
    border-color: #434343;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    color: #434343 !important;
    background-color: #eee;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    background-color: #F5F7F8;
    border-color: #D7DADD;
    color: #525263;
}
.btn-default .badge {
    color: #fff;
    background-color: #525263;
}

.btn_group.btn_rows {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.btn_group.btn_rows > p {
    margin-right: 24px;
}
.btn_group.btn_rows > p:last-of-type {
    margin-right: 0;
}


/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    .btn {
        min-width: 43.05vw;
        font-size: 3.88vw;
        padding: 1.04em 0.5em;
    }

    /* arrow */
    .btn.arrow::after {
        border-top: 2px solid #000;
        border-right: 2px solid #000;
    }

    /* icon-mail */
    .btn.icon-mail .cb {
        left: 8%;
        width: 4.16vw;
    }

    /* icon-cart */
    .btn.icon-cart .cb {
        width: 3.47vw;
    }

    /* btn-sp-block */
    .btn-sp-block {
        width: 100%;
    }

    /* btn_rows */
    .btn_group.btn_rows {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .btn_group.btn_rows > p {
        width: 100%;
        margin-right: 0;
        margin-bottom: 4.72vw;
    }
    .btn_group.btn_rows > p:last-of-type {
        margin-right: 0;
        margin-bottom: 0;
    }
    .btn_group.btn_rows.btn_sp_revers > p:nth-child(1) {
        order: 2;
    }
    .btn_group.btn_rows.btn_sp_revers > p:nth-child(2) {
        order: 1;
        margin-bottom: 4.72vw;
    }
}


/* topicpath
---------------------------------------------------*/
#topicpath {
    padding: 1em 0;
}
#topicpath ol {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding-bottom: 0.7em;
    overflow: hidden;
}
#topicpath ol:last-of-type {
    padding-bottom: 0;
}
#topicpath li {
    color: #c67089;
    font-size: 12px;
}
#topicpath li:after {
    content:"＞";
    margin: 0 0.2em;
}
#topicpath li:last-child {
    font-weight: bold;
}
#topicpath li:last-child:after {
    content:"";
}
#topicpath li a {
    color: #c67089;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    /* topicpath */
    #topicpath ol {
        padding-bottom: 1em;
    }
    #topicpath li {
        font-size: 2.77vw;
    }
}


/* result_info_box
---------------------------------------------------*/
#result_info_box {
}
/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    #result_info_box__item_count {
        font-size: 2.77vw;
        padding: 1em 0;
    }

}



/* result_info_box
---------------------------------------------------*/
label {
    font-weight: normal;
}
input:focus,
select:focus {
    outline: none;
}
input[type="number"] {
    text-align: right;
}
.form-group .errormsg {
    margin-top: 0.5em;
}
dd.form-group .errormsg {
    margin-bottom: 0;
}
.form-control {
    border: 1px solid #000;
    border-radius:3px !important;
    box-shadow:none;
    padding: 0.2em 0.8em;
    width: auto;
    line-height: 1.5
}
.form-control:focus {
    border-color:#3c8dbc !important;
    box-shadow:none
}
.has-success .form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus {
    box-shadow:none;
    background: none;
}
.has-success .form-control { border-color: #0D8969; background: #e7f6f3; }
.has-warning .form-control { border-color: #E99133; background: #fdf7ed; }
.has-error .form-control { border-color: #CF3F34; background: #FDF1F0; }

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
    color: inherit;  background: #FDF1F0;
}

.form-control::-moz-placeholder {
    color:#bbb;
    opacity:1
}
.form-control:-ms-input-placeholder {
    color:#bbb
}
.form-control::-webkit-input-placeholder {
    color:#bbb
}
.form-control:not(select) {
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none
}

.form-group .form-control {
    width: 100%;
}
.form-inline .form-control {
    width: auto;
}

.form-group.lange input[type="text"], .form-group.lange label {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 1%;
    margin-right: 1%;
    vertical-align: middle;
}
.form-group.lange input[type="text"] {
    width: 28%;
}
.input_tel input {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 1px;
    margin-right: 1px;
    max-width: 5em;
    vertical-align: middle;
    width: 30%;
}
.form-group.input_tel input:first-child {
    margin-left: 0;
}
.form-group.input_name input {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 2%;
    vertical-align: middle;
    width: 48%;
}
.form-group.input_name input:first-child {
    margin-left: 0;
}
.form-group.input_zip input {
    display: inline-block;
    margin-left: 1%;
    margin-right: 1%;
    max-width: 5em;
    vertical-align: middle;
    width: 30%;
}
.form-group.input_zip .question-circle {
    font-size: 11px;
    display: inline-block;
    width: 15px; height: 15px;
    line-height: 15px;
    text-align: center;
    vertical-align: middle;
    background: #525263;
    border-radius: 50%;
}
.form-group.input_zip .question-circle .cb-question {
    fill: #fff;
}


.form-group .item_price input, .form-group .item_quantity input {
    margin: 0 1%;
    text-align: right;
    width: 50%;
}

.form-inline label {
    margin: 0 10px 0 0;
}
.form-inline label:first-child + select,
.form-inline label:first-child + input {
    margin-right: 10px;
}

.form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: top;
}
.checkbox-inline, .radio-inline {
    cursor: pointer;
    margin-left: 20px;
}
.checkbox-inline:first-child, .radio-inline:first-child {
    margin-left: 0;
}

span.required {
    color: #ea092f;
    font-weight: normal !important;
    margin-left: 1em;
    font-size: 12px;
    font-size: 1.2rem;
}

.form-group input.transparent {
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
}

/* tableStyle */

div.table {
    width: 100%;
    display: table;
}
div.table .thead {
    display: table-header-group;
}
div.table .tbody {
    display: table-row-group;
}
div.table .tbody .tr {
    display: table-row;
    margin: 0;
}

div.table ol {
    display: table-row;
    margin: 0;
}
div.table ol li {
    display: table-cell;
    text-align: center;
    color: #fff;
    background-color: #000;
    padding: 1em;
    overflow-x: hidden;
}

div.table .tbody .tr > .td {
    display: table-cell;
    text-align: center;
    border-right: 1px solid #000;
    padding: 30px 10px;
    overflow-x: hidden;
}
div.table .tbody .tr > .td:last-of-type {
    border-right: 0;
}

.table .tbody .tr > .price {
    text-align: right;
}

/* dl_table */
.dl_table {
    width: 100%;
}
.dl_table dl {
    max-width: 680px;
    margin: 0 auto 2em;
}
.dl_table dt {
    width: 100%;
    margin-bottom: 1em;
}
.dl_table dt > p {
    line-height: 1.6em;
    margin-top: 0.5em;
}

.dl_table dd {
}
.dl_table dd .form-group {
    padding-top: 16px;
}
.dl_table dd > .form-group:first-child {
    padding-top: 0;
}
.dl_table .zip-search {
    margin-top: 8px;
}
.dl_table dd .notice {
    line-height: 1.4em;
    margin-top: 1em;
}
.dl_table dd .notice span {
    color: #e60012;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {

    /* tableStyle */
    div.table .thead {
    }
    div.table .thead ol li {
        font-size: 2.5vw;
        white-space: nowrap;
    }
    div.table .thead ol li:last-of-type {
        display: none;
    }
    div.table .tbody .tr > .td:nth-last-child(-n+2) {
        border-right: 0;
    }

    /* dl_table */
    .dl_table dd .form-group {
        padding-top: 4.16vw;
    }
    .dl_table .zip-search {
        margin-top: 4.16vw;
    }
}

/* .cart .item_box */
.cart .item_box {
    border-bottom: 1px solid #E8E8E8;
    position: relative;
}
.cart .item_box:last-child {
    border: 0 none;
}
.cart .item_box > div,
.cart .item_box > dl {
    padding: 16px 0;
}
.cart .item_box .item_photo {
    float: left;
    padding: 16px 8px 16px 0;
}
.cart .item_box .item_detail {
    padding-left: 108px;
}
.cart .item_box .icon_edit {
    width: 30px;
    height: 30px;
    top: 10px;
    right: -7px;
    text-align: center;
    vertical-align: middle;
}
.cart .item_box .icon_edit button {
    display: inline-block;
    vertical-align: middle;
}
.cart .item_box .icon_close {
    width: 30px;
}
.cart .item_box .cb {
    font-size: 20px;
    font-size: 2rem;
}
.cart .item_box .item_name {
    margin-right: 35px;
    font-size: 16px;
    font-size: 1.6rem;
}
.cart .item_box .item_pattern {
    font-size: 14px;
    font-size: 1.4rem;
}
.cart .item_box .item_price {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}
.cart .item_box .item_price .small {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
    margin-left: 10px;
}
.cart .item_box .item_quantity {
    vertical-align: middle;
    font-size: 14px;
    font-size: 1.4rem;
}
.cart .item_box .item_quantity input {
    font-size: 16px;
    font-size: 1.6rem;
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    text-align :right;
}
.cart .cart_price {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 8px;
    border-bottom: 1px solid #E8E8E8;
    text-align: right;
}
.cart .cart_price .price {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}
.cart .btn_area {
    padding: 16px 0 8px;
}
.cart .btn_area li {
    padding-bottom: 8px;
}
.cart .btn_area .btn {
    width: 100%;
}
.cart .btn_area .btn-sm {
    height: auto;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 10px 8px;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {

    /* .cart .item_box */
    .cart .item_box > div,
    .cart .item_box > dl {
        padding: 8px 0;
    }
    .cart .item_box .item_photo {
        padding: 8px 8px 8px 0;
    }
    .cart .item_box .icon_edit {
        top: 10px;
    }
    .cart .btn_area {
        padding: 8px 0 0;
    }
}


/* Cart Page
------------------------------------------- */
#form_cart > .message:first-child {
    padding-top: 1em;
}
.total_box {
    margin-top: 40px;
}
.total_box dl {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: center;
    align-items: center;
}
.total_box dl dt {
    white-space: nowrap;
    text-align: right;
    margin-right: 1em;
}
.total_box dl dd {
    text-align: right;
}
.total_box dl.total_price dd {
    font-size: 20px;
    font-weight: bold;
}

.total_box .btn_group {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin-top: 60px;
}
.total_box .btn_group p {
    margin-right: 30px;
}
.total_box .btn_group p:last-of-type {
    margin-right: 0;
}

.cart_item {
    margin: 24px 0 16px;
}
.cart_item .item_box > .td {
    border-bottom: 1px solid #000;
}
.cart_item .item_box .td {
    vertical-align: middle;
}
.cart_item .icon_edit {
    position: static;
    width: 8.3333333333%;
}
.cart_item .icon_edit a .cb {
    color: #000;
    fill: #000;
    font-size: 20px;
}
.cart_item .icon_edit a:hover .cb {
    opacity: 0.8;
}
.cart_item .item_box a:hover img {
    opacity: 0.8;
}
.cart_item .item_box .table {
    width:58.33333333%;
}
.cart_item .item_box .table .item_photo,
.cart_item .item_box .table .item_detail {
    display: table-cell;
    vertical-align: top;
}
.cart_item .item_box .table .item_photo {
    width: 116px;
}
.cart_item .item_box .table .item_photo img {
    width: 100%;
}
.cart_item .item_box .table .item_detail {
    line-height: 1.6em;
    text-align: left;
    padding-left: 30px;
}
.cart_item .item_box .table .item_name a {
    font-weight: bold;
}

.cart_item .item_detail .item_subtotal {
    display: block;
}

.cart_item .item_quantity {
    width: 16.66666667%;
}
.cart_item .item_quantity::before {
    content: "数量：";
}
.cart_item .item_quantity ul {
    text-align: center;
    white-space: nowrap;
}
.cart_item .item_quantity ul li {
    display: inline-block;
    margin: 8px 4px;
}
.cart_item .item_quantity ul li a,
.cart_item .item_quantity ul li span {
    display: inline-block;
    width: 32px; height: 32px;
    line-height: 32px;
    vertical-align: middle;
    border-radius: 50%;
}
.cart_item .item_quantity ul li a {
    border: 2px solid #c9c9c9;
}
.cart_item .item_quantity ul li span {
    border: 2px solid #e9e9e9;
}
.cart_item .item_quantity ul li a .cb {
    color: #525263;
    fill: #525263;
    margin-top: 6px;
    vertical-align: top;
}
.cart_item .item_quantity ul li span .cb {
    color: #babac1;
    fill: #babac1;
    margin-top: 6px;
    vertical-align: top;
}
.cart_item .item_quantity ul li a:hover {
    opacity: 0.8;
}

/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {

    /* Cart Page
    ------------------------------------------- */
    .total_box {
        margin-top: 10vw;
    }
    .total_box dl {
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .total_box dl.total_price dt {
        text-align: left;
    }
    .total_box dl.total_price dd {
        font-size: 5.55vw;
    }

    .total_box .btn_group {
        margin-top: 5.55vw;
    }
    .total_box .btn_group p {
        margin-right: 3.125vw;
    }
    .total_box .btn_group p:last-of-type {
        margin-right: 0;
    }

    .cart_item {
        border-top: 1px solid #000;
        margin: 3.33vw 0 6.94vw;
    }
    .cart_item .item_quantity::before {
        content: "";
    }
    .cart_item.table .tbody .tr > .item_quantity {
        text-align: center;
    }
    .cart_item .item_detail .item_subtotal {
        display: none;
    }
    .cart_item.table .tbody .tr div.item_subtotal {
        display: table-cell;
        text-align: right;
    }
    .cart_item .item_box .table .item_photo {
        width: 16.11vw;
    }
    .cart_item .item_box .table .item_detail {
        padding-left: 3.125vw;
    }

    .cart_item.table .tbody .tr div.item_subtotal {
        display: none;
    }
}


/* Other Page
------------------------------------------- */

/* Login Page */

#login_box {
}
#login_box .column {
    max-width: 70%;
    background: transparent;
    margin: 0 auto;
}
#login_box .column p {
    margin-top: 0;
    margin-bottom: 0;
}
#login_box .column  .icon {
    text-align: center;
    font-size: 55px;
    color: #000;
    margin-bottom: 50px;
}
#login_box .column  .icon svg {
    vertical-align: middle;
}
#login_box .column .form-group {
    padding: 10px 10%;
}
#login_box .column input[type="text"],
#login_box .column input[type="email"],
#login_box .column input[type="password"]{
    width: 100%;
}
#login_box .column .form-group label {
    display: inline-block;
    padding: 5px 0;
}
#login_box .column .btn_area {
    padding: 0 10%;
}
#login_box .column .btn_area p {
    text-align: center;
}
#login_box .column .btn_area ul {
    text-align: center;
    margin-top: 30px;
}
#login_box .column .btn_area ul li {
    margin-bottom: 1em;
}
#login_box .column .btn_area ul li a {
    color: #c67089;
}
#login_box .column .btn_area ul li a:hover {
    text-decoration: underline;
}
#login_box .column .message {
    padding: 1em;
}
#login_box .column .error_message {
    line-height: 1.4em;
    text-align: center;
    padding-bottom: 1em;
}

#guest_box {
    border-top: 1px solid #000;
    padding-top: 60px;
    margin-top: 60px;
}
#guest_box .column .message {
    line-height: 1.4em;
}
#guest_box .column .btn_area {
    text-align: center;
}

/* < 768 */
@media only screen and (max-width: 768px) {
    #mypage.login .page-heading {
        margin-bottom: 5.55vw;
    }
    /* Login Page */
    #login_box .column {
        max-width: none;
    }
    #login_box .column p {
    }
    #login_box .column  .icon {
        font-size: 12.22vw;
        margin-bottom: 13.88vw;
    }
    #login_box .column .form-group {
        padding: 1.94vw 6%;
    }
    #login_box .column .form-group label {
        padding: 1.94vw 0;
    }
    #login_box .column .btn_area p {
    }
    #login_box .column .btn_area ul {
        margin-top: 5.55vw;
    }

    #guest_box {
        padding-top: 5.55vw;
        margin-top: 5.55vw;
    }

}


/* Registration Page
------------------------------------------- */
.registration_page .not_required {
    margin-top: 1em;
}

.registration_page .title_hint {
    margin: 1em 0 0;
}
.registration_page .title_hint + .form-group {
    padding-top: 0.5em;
}
.registration_page .dl_table {
    margin-bottom: 50px;
}
.registration_page .form_terms_link {
    margin-bottom: 30px;
}
.registration_page .form_terms_link a {
    color: #ea092f;
    text-decoration: underline;
}
.registration_page .form_terms_link a:hover {
    text-decoration: none;
}
.registration_page .btn_group {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.registration_page .btn_group > p {
    margin-right: 24px;
}
.registration_page .btn_group > p:last-of-type {
    margin-right: 0;
}


/* < 768px */
@media screen and (min-width:1px) and (max-width: 768px) {
    .registration_page .dl_table {
        margin-bottom: 19.44vw;
    }
    .registration_page .form_terms_link {
        margin-bottom: 5.55vw;
    }
    .registration_page .btn_group {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .registration_page .btn_group > p {
        width: 100%;
        margin-right: 0;
    }
    .registration_page .btn_group > p:nth-child(1) {
        order: 2;
    }
    .registration_page .btn_group > p:nth-child(2) {
        order: 1;
        margin-bottom: 4.72vw;
    }
    .registration_page .btn_group > p .btn {
        width: 100%;
    }

}



/* MyPage
------------------------------------------- */
.mypage .welcome {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 40px;
}
.mypage .welcome .title {
    font-size: 22px;
    font-weight: 500;
}
.mypage .welcome .name {
    font-weight: 500;
}
.mypage .intro {
    color: #c67089;
    font-size: 14px;
}
.mypage .intro strong {
    font-weight: normal;
}
.mypage #item_list .product_item {
    padding-bottom: 8px;
}
.mypage #item_list .item_name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.mypage #item_list .btn_circle span {
    position: relative;
    top: 3px;
}

.mypage .not_required {
    margin-top: 40px;
}

.mypage .title_hint {
    margin: 16px 0 0;
}
.mypage .title_hint + .form-group {
    padding-top: 4px;
}

@media only screen and (max-width: 768px) {
    /* MyPage
    ------------------------------------------- */
    .mypage .welcome {
        display: block;
        text-align: center;
        margin-bottom: 11.11vw;
    }
    .mypage .welcome .title {
        font-size: 5vw;
        margin-bottom: 8.33vw;
    }
    .mypage .welcome .name {
    }
    .mypage .intro {
        font-size: 3.88vw;
    }

    .mypage #shopping_confirm .cart_item,
    .mypage #shopping_confirm .total_box {
        /*margin-top: 0;*/
    }
    .mypage #item_list .product_item {
        padding-bottom: 24px;
    }
    .mypage .title_hint {
        margin: 24px 0 0;
    }
    .mypage .title_hint + .form-group {
        padding-top: 8px;
    }

    /* My page address */
    #delivery_address_list div.is-edit p.btn_edit {
        top: 30%;
    }
}



/* MyPage
------------------------------------------- */
.local_nav ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 1px solid #0d0d0d;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 100px;
}
.local_nav li {
    width: 25%;
    border-right: 1px solid #0d0d0d;
    background-color: #fff;
    text-align: center;
}
.local_nav li:last-of-type {
    border-right: 0;
}
.local_nav.favorite li {
    width: 20%;
}
.local_nav li a {
    display: block;
    color: #000;
    font-size: 14px;
    padding: 1em 0.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.local_nav li a:hover {
    background: #f5f7f8;
}
.local_nav li.active {
    background-color: #0d0d0d;
}
.local_nav li.active a {
    color: #fff;
}
.local_nav li.active a:hover {
    color: #000;
}

/* historylist_column */
.historylist_column {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    border-top: 1px solid #000;
    margin: 0 auto;
}
.historylist_column:last-of-type {
    border-bottom: 1px solid #000;
}
.historylist_column .history_list_item_info {
    width: 24%;
}
.historylist_column .history_detail_list {
    width: 63%;
}
.historylist_column .history_detail_button {
    width: 13%;
}

/* history_list_item_info */
.historylist_column .order_date {
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
}
.historylist_column .order_detail {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 14px;
    letter-spacing: 0.1em;
}
.historylist_column .order_detail dt {
    width: 40%;
    margin-bottom: 1em;
}
.historylist_column .order_detail dd {
    width: 60%;
    margin-bottom: 1em;
}
.historylist_column .order_detail dt:last-of-type,
.historylist_column .order_detail dd:last-of-type {
    margin-bottom: 0;
}

/* history_detail_list */
.historylist_column .item_box {
}
.historylist_column .item_box .td {
    vertical-align: top;
}
.historylist_column .item_box .item_photo.td {
    width: 20%;
    margin-bottom: 0;
    max-width: none;
    min-width: 100px;
}
.historylist_column .item_box .tbody .item_detail.td {
    line-height: 1.7em;
    text-align: left;
}

/* history_detail_button */
.historylist_column .btn {
    min-width: auto;
    text-indent: -0.5em;
}

.historylist_column + .pagination {
    margin-top: 0;
    border-top: 1px solid #000;
}

.mail_list dl {
    line-height: 1.6em;
    border-bottom: 1px solid #000;
    padding-bottom: 1em;
    margin-bottom: 1em;
}
.mail_list dl dt {
    margin-bottom: 0.5em;
}
.mail_list dl dd {
    margin-bottom: 1em;
}
.mail_list dl dd a {
    cursor: pointer;
}
.mail_list dl dd p {
    font-size: inherit;
    line-height: 1.4em;
}

.address_table .icon_edit {
    width: 8.33333%;
    vertical-align: middle;
}
.address_table .icon_edit a .cb {
    color: #b8bec4;
    fill: #b8bec4;
    font-size: 2rem;
}

.unsubscribe_box {
    text-align: center;
}
.unsubscribe_box .icon {
    font-size: 100px;
    font-size: 10rem;
    color: #E7E7E7;
}
.unsubscribe_box h3 {
    font-size: 26px;
    margin: 0 0 1em;
}
.unsubscribe_box .message {
    line-height: 1.6em;
}

#entry_birth select {
    margin: 0 8px;
}
#entry_birth select:first-child {
    margin-left: 0;
}
#entry_sex .radio {
    display: inline-block;
    line-height: 1.6em;
    margin-right: 1em;
}
#entry_sex .radio input[type="radio"] {
    margin-right: 0.5em;
}

.mypage .dl_table dt label {
}

#delivery_address_list div.is-edit {
    position: relative;
}

#entry_mailmaga_flg .radio {
    line-height: 1.6em;
    margin-bottom: 0.5em;
}
#entry_mailmaga_flg .radio {
    display: inline-block;
    line-height: 1.6em;
    margin-right: 1em;
}
#entry_mailmaga_flg .radio input[type="radio"] {
    margin-right: 0.5em;
}


/* < 768 */
@media only screen and (max-width: 768px) {

    /* MyPage
    ------------------------------------------- */
    .local_nav ul {
        -webkit-border-radius: 1.38vw;
        border-radius: 1.38vw;
        margin-bottom: 13.88vw;
    }
    .local_nav li {
        width: 50%;
        border-right: 1px solid #0d0d0d;
        border-top: 1px solid #0d0d0d;
    }
    .local_nav li:nth-of-type(even) {
        border-right: 0;
    }
    .local_nav li:nth-child(-n+2) {
        border-top: 0;
    }
    .local_nav.favorite li:last-of-type {
        border-right: 1px solid #0d0d0d;
    }
    .local_nav.favorite li {
        width: 50%;
    }
    .local_nav li a {
        font-size: 3.88vw;
    }

    /* historylist_column */
    .historylist_column {
        display: block;
        padding: 5.55vw 0;
    }
    .historylist_column .history_list_item_info,
    .historylist_column .history_detail_list,
    .historylist_column .history_detail_button {
        width: 100%;
    }

    /* history_list_item_info */
    .historylist_column .order_date {
        font-size: 3.88vw;
    }
    .historylist_column .order_detail {
        font-size: 3.88vw;
    }
    .historylist_column .order_detail dt {
        width: 30%;
    }
    .historylist_column .order_detail dd {
        width: 70%;
    }

    /* history_detail_list */
    .historylist_column .item_box .td {
        vertical-align: middle;
    }
    .historylist_column .item_box .item_photo {
        width: 25vw;
    }
    div.table .tbody .tr > .item_photo.td {
        padding: 4.16vw 4.16vw 4.16vw 0;
    }

    .historylist_column + .pagination {
        padding-top: 16px;
    }

    .unsubscribe_box h3 {
        line-height: 1.4em;
        font-size: 6.66vw;
    }


}


/* Cart Page
------------------------------------------- */
.column p {
    line-height: 2em;
    font-size: 18px;
    margin: 1em 0;
}
.column textarea {
    width: 100%;
    height: 6em;
}
.column.is-edit > p {
    margin-right: 4em;
    min-height: 40px;
}
.column.is-edit .btn_edit {
    margin: 0;
    position: absolute;
    right: 0; top: 0;
}
.column .form-inline input,
.column .form-inline select {
    margin-bottom: 1em;
}

.address_table {
    border-bottom: 1px solid #000;
}
.addr_box {
    position: relative;
}
.addr_box .icon_radio {
    vertical-align: middle;
    text-align: center;
    max-width: 32px;
}
div.table .tbody .addr_box .column {
    position: relative;
    text-align: left;
}
.addr_box .column .address {
    line-height: 1.4em;
    margin: 0;
}
.addr_box .column.is-edit .address {
    margin: 0 25% 0 0;
    min-height: 40px;
}
.addr_box .column.is-edit .btn_edit {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.addr_box > .td {
    border-top: 1px solid #000;
}

/* payment_list */

.payment_list li {
    margin-bottom: 8px;
}
.payment_list li img {
    margin-top: 5px;
}
#shopping_confirm .payment_list .radio label{
    font-weight: normal;
}

.complete_message {
    text-align: center;
}

/* < 768 */
@media only screen and (max-width: 768px) {
    /* Cart Page
    ------------------------------------------- */
    .column p {
        line-height: 1.7em;
        font-size: 3.88vw;
    }
    .column select {
        width: 100%;
    }
    div.table .tbody .addr_box .column {
        text-align: left;
        position: relative;
    }

}

/* PC VIEW */
@media only screen and (min-width: 769px) {

    /* Cart Page
    ------------------------------------------- */

    /*

    .multiple_column .item_box > div,
    .multiple_column .item_box > dl {
        padding: 16px 0;
        vertical-align: middle;
    }

    .multiple_column .item_box .item_photo {
        padding: 16px;
        max-width: 198px;
    }

    .multiple_column .item_box .item_detail .item_price {
        margin: 8px 0 16px;
    }

    .multiple_column .form-group {
        margin-top: 16px;
    }
    */


    /*
    .complete_message .heading01 {
        font-size: 32px;
        font-size: 3.2rem;
    }
    */

    #confirm_side {
        top: 0;
    }

    /* payment_list */
    .payment_list .radio {
        display: inline;
        margin-right: 16px;
        vertical-align: middle;
    }

    .payment_list .radio input[type="radio"] {
        margin-right: 10px;
    }

    .payment_list li img {
        margin-top: 0;
        vertical-align: middle;
    }

}



/* Cart Page
------------------------------------------- */

.cart_page .form_terms_link {
    margin-bottom: 0;
}

#shopping_confirm .cart_item.table {
    border-top: 1px solid #000;
}
#shopping_confirm .cart_item .item_box .table {
    width:100%;
}

/* total_box */
#shopping_confirm .total_box {
    margin-top: 24px;
    background: #fff;
    padding: 2em;
}
#shopping_confirm .total_box dl {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    padding-top: 1.5em;
    margin-left: 0;
}
#shopping_confirm .total_box dl:first-child {
    padding-top: 0;
}
#shopping_confirm .total_box dl dt {
    font-weight: normal;
    text-align: left;
}
#shopping_confirm .total_box .total_amount {
    text-align: right;
    margin-top: 2em;
}
#shopping_confirm .total_box .total_amount p.total_price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 2em;
}
#shopping_confirm .total_box .total_amount p.total_price strong {
    margin-left: 0.5em;
}
#shopping_confirm .total_box .total_amount p.total_price strong .small {
    font-size: 0.8em;
    margin-left: 0.5em;
}

#shopping_confirm .cart_item .item_box .table .item_name {
    margin-bottom: 0;
}
#shopping_confirm .cart_item .item_box .table .item_photo {
    max-width: 96px;
}
#shopping_confirm .cart_item .item_box .table .item_price {
    font-weight: normal;
    display: inline;
    margin-right: 1em;
}
#shopping_confirm .cart_item .item_box .table .item_subtotal {
    display: inline;
}
#shopping_confirm label {
    font-weight: bold;
}

#shopping_confirm .heading02 {
    color: #be6c84;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 0;
    margin-top: 3em;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
}
#shopping_confirm .ttl_shipping {
    font-size: 18px;
    font-weight: 500;
    padding-top: 1em;
    margin-bottom: 1em;
}

#shopping_confirm .column {
    position: relative;
}
.heading02 + .column .btn_edit {
    position: absolute;
    top: 0;
    right: 0;
}

#deliveradd_input .dl_table {
    border-top: 0 none;
}

/* multiple */
.shipping_multiple_table {
    background-color: #fff;
}
#multiple_list_box .shipping_item {
    margin-bottom: 30px;
}
#multiple_list__footer {
    margin-top: 50px;
}

.shipping_item .quantity {
    width: 100px;
}


.use_point {
    text-align: center;
    margin: 16px 0;
}
.use_point input {
    text-align: right;
    width: 10%;
    min-width: 130px;
}
.use_point .text_accent {
    margin: 0 5px;
}
/*
.multiple_column {
    padding-bottom: 16px;
}
.multiple_column .item_box {
    background: #F3F3F3;
}
.multiple_column .table.item_box .td {
    vertical-align: middle;
}
.multiple_column .table.item_box .tbody .item_detail {
    padding: 8px 0;
    text-align: left;
}
.multiple_column .item_box .item_photo {
    padding: 8px;
    width: 22%;
    margin-bottom: 0;
    max-width: none;
    min-width: 100px;
}
.multiple_column .item_box .item_detail .item_name {
    font-weight: bold;
}
.multiple_column .item_box .item_detail .item_price {
    font-weight: normal;
    margin: 4px 0 8px;
}
.multiple_column .form-group {
    margin: 8px 10px 0 0;
}
.multiple_column .item_quantity input {
    width: 100px;
}*/

.complete_message {
    text-align: center;
}
.complete_message .heading01 {
    font-size: 24px;
    font-size: 2.4rem;
}

/* < 768 */
@media only screen and (max-width: 768px) {

    /* Cart Page
    ------------------------------------------- */

    #shopping_confirm .cart_item .item_box .table {
        padding: 3.61vw 0;
    }


    /* total_box */
    #shopping_confirm .total_box {
        width: 100%;
        margin-top: 5.55vw;
    }
    #shopping_confirm .total_box .total_amount p.total_price {
        font-size: 4.72vw;
    }

    #shopping_confirm .cart_item .item_box .table .item_photo {
        max-width: 15.13vw;
    }
    #shopping_confirm .heading02 {
        font-size: 3.88vw;
    }
    #shopping_confirm .ttl_shipping {
        font-size: 3.88vw;
    }

    /* multiple */
    #multiple_list_box .shipping_item {
        margin-bottom: 5.55vw;
    }
    #multiple_list_box .shipping_item > div {
        margin-bottom: 3.88vw;
    }
    #multiple_list_box .cart_item {
        margin-top: 11.11vw;
    }
    #multiple_list__footer {
        margin-top: 11.11vw;
    }

}

/* Contact Page */
#contact_contents {
    height: 12em;
}

/* Error Page */
.error_page #contents {
    height: 100vh;
    background: #fff;
}
.message_box {
    text-align: center;
}
.message_box .icon {
    font-size: 10rem;
    color: #ccc;
}
.message_box h1 {
    font-size: 1.6rem;
    margin: 1em 0;
}
.message_box .btn_group {
    margin-top: 3em;
}


/* Default CSS
---------------------------------------------------*/

/*  table
============================ */
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding:8px;
    line-height:1.42857143;
    vertical-align:top;
    border-top:1px solid #ddd
}
.table-bordered {
    border:1px solid #ddd
}
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered>thead>tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border:1px solid #ddd
}
.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
    border-bottom-width:2px
}


/* --------------------------------
	Parts
-------------------------------- */
.heading04 {
    clear: both;
    margin-bottom: 5px;
}
.heading05 {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}


/* icon_close */
.icon_close {
    /* container for the X icon */
    position: absolute;
    height: 100%;
    width: 50px;
    top: 0;
    left: 0;
}
.icon_close::before, .icon_close::after {
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    /* close icon */
    content: '';
    position: absolute;
    display: inline-block;
    height: 3px;
    width: 22px;
    top: 50%;
    margin-top: -2px;
    left: 50%;
    margin-left: -11px;
    background: #525263;
}
.icon_close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.icon_close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* badge */
.badge {
    display:inline-block;
    min-width:10px;
    padding:3px 7px;
    font-size:10px;
    font-size:1rem;
    font-weight:700;
    line-height:1;
    color:#fff;
    text-align:center;
    white-space:nowrap;
    vertical-align:baseline;
    background-color:#DE5D50;
    border-radius:10px
}

/* pagination */
.pagination {
    width: 95%;
    margin: 16px auto;
    position: relative;
    clear: both;
}
.pagination ul {
    list-style-type: none;
    margin: 0 auto;
    padding: 1em 0;
    text-align: center;
}
.pagination ul li {
    display: inline-block;
    min-width: 29px;
    padding: 0 3px 0 2px;
    text-align: center;
    position: relative;
}

.pagination ul li a {
    color: #525263;
    display: block;
    line-height: 1.8;
    padding: 5px 1em;
    text-decoration: none;
}
.pagination ul li a:hover, .pagination ul li a:focus {
    background: #f1f1f1;
}
.pagination ul li.active a {
    background: #F3F3F3;
    text-decoration: none;
}
.pagination ul li.active a:hover, .pagination ul li.active a:focus {
    background: #F3F3F3;
}
.pagination ul li.disabled a {
    color: #9797A0;
    text-decoration: none;
}
.pagination ul li.disabled a:hover, .pagination ul li.disabled a:focus {
    color: #9797A0;
}


/* pagenumberarea */

.pagenumberarea {
    text-align: right;
    margin: 0;
    padding-right: 16px;
    padding-bottom: 20px;
}
.pagenumberarea > li {
    float: none;
    display: inline-block;
    margin-left: 3px;
    width: auto;
}
.dropdown.open > a {
    background: #ededed;
}


/* form_terms_link */

.form_terms_link {
    text-align: center;
}

/* error_box */
.error_box {
    text-align: center;
    padding: 5% 0;
}
.error_box .btn_back {
    padding: 5% 0;
}
.error_box .btn_back a {
    width: 100%;
    max-width: 320px;
}


/* --------------------------------
	Common
-------------------------------- */

/****** Base Layout Setting ********/

#contents, #footer, .pagetop {
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

#contents, #footer, .pagetop {
    position: relative;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}

/* main */
#main {}

/* side */
.side {}



/****** drawer Setting ********/

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 260px;
    background: #F6F6F6;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}


/*	Category navigation
--------------------------- */

.pagetop {
    display: none;
    text-align: right;
    position: fixed;
    bottom: 10px; right: 10px;
    z-index: 2;
}
.pagetop a {
    display: inline-block;
    position: relative;
    width: 30px; height: 30px;
    background-color: #B8BEC4;
    border-radius: 50%;
}
.pagetop a:hover {
    opacity: 0.8;
}
.pagetop a .cb-angle-down {
    fill: #fff;
    font-size: 25px;
    font-size: 2.5rem;
    position: absolute;
    top: 50%; left: 50%;
    margin-left: -0.5em;
    margin-top: -0.5em;
    -webkit-transform:rotate(-180deg);
    -ms-transform:rotate(-180deg);
    -o-transform:rotate(-180deg);
    transform:rotate(-180deg);
}

/****** Each BlockParts Setting ********/

/* Cart */

.cart {
    position: absolute;
    height: 50px;
    width: 100%;
    top: 50px;
    left: 0;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cart.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}


/* Search */

.bt_search {
    border: 0;
    background: none;
    position: absolute;
    right: 0; top: 0;
    display: block;
    width: 44px;
    height: 44px;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
}
.bt_search .cb-search {
    fill: #636378;
    font-size: 25px;
    font-size: 2.5rem;
}

#searchform {
    position: relative;
}

.search select {
    height: 50px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0.5em 1em;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.search select option {
    max-width: 190px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.search .input_search {
    height: 50px;
    padding: 0 50px 0 1em;
    border-bottom: 1px solid #ccc;
    position: relative;
    margin-left: 1%;
}

.search input[type="search"] {
    height: 50px;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    border: 0 none;
    padding: 0.5em 0;
    box-shadow: none;
    background: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.search .bt_search {
    margin-top: 3px;
}


/****** Effect Setting ********/

/* Overlay */
.overlay {
    /* shadow layer visible when navigation is active */
    position: fixed;
    z-index: 2;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    background-color: rgba(0,0,0, 0.5);
    visibility: hidden;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}
.overlay.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}

/* modal */

.modal-header .close {
    font-size: 22px;
    font-size: 2.2rem;
}
.modal-content {
    background-color: #F3F3F3;
}
.modal-body .form-control {
    width: 100%;
}
.modal-body .quantity {
    width: 50%;
    float: right;
    text-align: right;
    padding: 16px 0;
    font-size: 16px;
    font-size: 1.6rem;
}
.modal-body .quantity dd input {
    text-align: right;
}
.modal-body .classcategory_list li {
    margin-top: 16px;
}
.modal-body .classcategory_list li:first-child {
    margin-top: 0;
}
.modal-body .item_price {
    margin: 0;
    clear: both;
    text-align: right;
    font-size: 16px;
    font-size: 1.6rem;
}
.modal-body .item_price .small {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: normal;
    margin-left: 5px;
}
.modal-footer {
    padding: 16px 0;
    margin: 0 16px;
}
.modal-footer .btn_area {
    padding-bottom: 0;
}
.modal-footer .btn_area li:last-child {
    padding-left: 0;
}
.modal-footer .btn_area button {
    font-size: 16px;
    font-size: 1.6rem;
    height: 56px;
    line-height: 56px;
    vertical-align: middle;
    padding-top: 0;
    padding-bottom: 0;
}
.modal-footer .btn_area .btn_icon .cb {
    display: inline-block;
    font-size: 30px;
    font-size: 3.0rem;
    height: 54px;
    line-height: 54px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}


/****** Each Page Setting ********/

/* Other Page
------------------------------------------- */

/* Forgot Page */

#forgot_page .column {
    background: #F3F4F4;
    padding: 16px;
    margin-bottom: 16px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#forgot_page .column .form-group {
    padding-top: 8px;
}
#forgot_page .form-group.input_name input[type="text"] {
    float: left;
    width: 49%;
}
#forgot_page .column p {
    margin: 0;
}
#forgot_page .column .btn_area {
    padding-top: 8px;
}
#forgot_page .column .btn_area p {
    margin: 0;
}
#forgot_page .column h2 {
    margin: 0 0 8px;
}


/*	module
============================ */

.no-padding {
    padding: 0 !important;
}
.no-margin {
    margin: 0 !important;
}
.is-padding {
    padding-left: 16px !important;
    padding-right: 16px !important;
}
.no-border-bottom {
    border-bottom: 0 none !important;
}
button.no-style {
    border: 0 none;
    background: none;
    padding: 0; margin: 0;
    text-shadow: none;
    box-shadow: none;
}
.text_accent {
    font-weight: bold;
}

/*	color setting
============================ */

/* text */
.text-default {
    color: #525263;
}
a.text-default:hover {
    color: #9797a1;
}
.text-primary {
    color: #DE5D50;
}
a.text-primary:hover {
    color: #e57d73;
}
.text-success {
    color: #18A689;
}
a.text-success:hover {
    color: #0D8969;
}
.text-info {
    color: #31708f;
}
a.text-info:hover {
    color: #245269;
}
.text-warning {
    color: #9A947E;
}
a.text-warning:hover {
    color: #AEA998;
}
.text-danger {
    color: #DE5D50;
}
a.text-danger:hover {
    color: #CF3F34;
}

/* bg */

.bg-default {
    color: #fff;
    background-color: #000;
}
a.bg-default:hover {
    background-color: #000;
}
.bg-primary {
    color: #fff;
    background-color: #DE5D50;
}
a.bg-primary:hover {
    background-color: #e57d73;
}
.bg-primary-border {
    color: #DE5D50;
    border: 2px solid #DE5D50;
    background: #fff;
}
a.bg-primary-border:hover {
    border: 2px solid #DE5D50;
    background: #FDF6F6;
}
.bg-success {
    background-color: #dff0d8;
}
a.bg-success:hover {
    background-color: #c1e2b3;
}
.bg-success-border {
    color: #5CB1B1;
    border: 2px solid #5CB1B1;
    background: #fff;
}
a.bg-success-border:hover {
    border: 2px solid #5CB1B1;
    background: #EEF7F7;
}
.bg-info {
    background-color: #d9edf7;
}
a.bg-info:hover {
    background-color: #afd9ee;
}
.bg-warning {
    background-color: #fcf8e3;
}
a.bg-warning:hover {
    background-color: #f7ecb5;
}
.bg-danger {
    color: #fff;
    background-color: #F99;
}
a.bg-danger:hover {
    background-color: #FF8D8D;
}

/*---------------------------------------*/

.btn-primary {
    color: #fff;
    background-color: #DE5D50;
    border-color: #DE5D50;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #D85145;
    border-color: #D85145;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    background-color: #DE5D50;
    border-color: #DE5D50;
}
.btn-primary .badge {
    color: #fff;
    background-color: #DE5D50;
}
.btn-primary-border {
    color: #DE5D50;
    background-color: #fff;
    border-color: #DE5D50;
    border-width: 2px;
}
.btn-primary-border:hover,
.btn-primary-border:focus,
.btn-primary-border:active,
.btn-primary-border.active,
.open > .dropdown-toggle.btn-primary-border {
    color: #DE5D50;
    background-color: #FDF6F6;
    border-color: #DE5D50;
}
.btn-primary-border:active,
.btn-primary-border.active,
.open > .dropdown-toggle.btn-primary-border {
    background-image: none;
}
.btn-primary-border.disabled,
.btn-primary-border[disabled],
fieldset[disabled] .btn-primary-border,
.btn-primary-border.disabled:hover,
.btn-primary-border[disabled]:hover,
fieldset[disabled] .btn-primary-border:hover,
.btn-primary-border.disabled:focus,
.btn-primary-border[disabled]:focus,
fieldset[disabled] .btn-primary-border:focus,
.btn-primary-border.disabled:active,
.btn-primary-border[disabled]:active,
fieldset[disabled] .btn-primary-border:active,
.btn-primary-border.disabled.active,
.btn-primary-border[disabled].active,
fieldset[disabled] .btn-primary-border.active {
    background-color: #fff;
    border-color: #DE5D50;
}

.btn-success {
    color: #fff;
    background-color: #5CB1B1;
    border-color: #5CB1B1;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    color: #fff;
    background-color: #50A6A6;
    border-color: #50A6A6;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
    background-color: #5CB1B1;
    border-color: #5CB1B1;
}
.btn-success .badge {
    color: #5CB1B1;
    background-color: #fff;
}

.btn-success-border {
    color: #5CB1B1;
    background-color: #fff;
    border-color: #5CB1B1;
}
.btn-success-border:hover,
.btn-success-border:focus,
.btn-success-border:active,
.btn-success-border.active,
.open > .dropdown-toggle.btn-primary-border {
    color: #5CB1B1;
    background-color: #EEF7F7;
    border-color: #5CB1B1;
    border-width: 2px;
}
.btn-success-border:active,
.btn-success-border.active,
.open > .dropdown-toggle.btn-success-border {
    background-image: none;
}
.btn-success-border.disabled,
.btn-success-border[disabled],
fieldset[disabled] .btn-success-border,
.btn-success-border.disabled:hover,
.btn-success-border[disabled]:hover,
fieldset[disabled] .btn-success-border:hover,
.btn-success-border.disabled:focus,
.btn-success-border[disabled]:focus,
fieldset[disabled] .btn-success-border:focus,
.btn-success-border.disabled:active,
.btn-success-border[disabled]:active,
fieldset[disabled] .btn-success-border:active,
.btn-success-border.disabled.active,
.btn-success-border[disabled].active,
fieldset[disabled] .btn-success-border.active {
    background-color: #fff;
    border-color: #5CB1B1;
}

.btn-info {
    color: #fff;
    background-color: #525263;
    border-color: #525263;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    color: #fff;
    background-color: #474757;
    border-color: #474757;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
    background-color: #525263;
    border-color: #525263;
}
.btn-info .badge {
    color: #525263;
    background-color: #fff;
}
.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #E99133;
    border-color: #E99133;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}
.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff;
}
.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d9534f;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #CF3F34;
    border-color: #CF3F34;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn-danger .badge {
    color: #d9534f;
    background-color: #fff;
}
.btn-link {
    font-weight: normal;
    color: #DE5D50;
    cursor: pointer;
    border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
    color: #2a6496;
    text-decoration: underline;
    background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
    color: #777;
    text-decoration: none;
}

/* label */
.label-default {
    background-color: #777;
}
.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #5e5e5e;
}
.label-primary {
    background-color: #DE5D50;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #e57d73;
}
.label-success {
    background-color: #18A689;
}
.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #0D8969;
}
.label-info {
    background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
    background-color: #3DA8CF;
}
.label-warning {
    background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
    background-color: #E99133;
}
.label-danger {
    background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #CF3F34;
}

/* panel */
.panel-primary {
    border-color: transparent;
}
.panel-primary > .panel-heading {
    color: #fff;
    background-color:#DE5D50;
    border-color: transparent;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: transparent;
}
.panel-primary > .panel-heading .badge {
    color: #DE5D50;
    background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #DE5D50;
}
.panel-success {
    border-color: transparent;
}
.panel-success > .panel-heading {
    color: #18A689;
    background-color: #dff0d8;
    border-color: transparent;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: transparent;
}
.panel-success > .panel-heading .badge {
    color: #dff0d8;
    background-color: #18A689;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: transparent;
}
.panel-info {
    border-color: transparent;
}
.panel-info > .panel-heading {
    color: #fff;
    background-color: #42B3E5;
    border-color: transparent;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: transparent;
}
.panel-info > .panel-heading .badge {
    color: #fff;
    background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: transparent;
}
.panel-warning {
    border-color: transparent;
}
.panel-warning > .panel-heading {
    color: #fff;
    background-color: #fcf8e3;
    border-color: transparent;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: transparent;
}
.panel-warning > .panel-heading .badge {
    color: #fff;
    background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: transparent;
}
.panel-danger {
    border-color: #ebccd1;
}
.panel-danger > .panel-heading {
    color: #fff;
    background-color: #DE5D50;
    border-color: transparent;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: transparent;
}
.panel-danger > .panel-heading .badge {
    color: #fff;
    background-color: #DE5D50;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: transparent;
}

/* alert */

.alert-success {
    color:#fff;
    background-color:#18a689;
    border-color: transparent;
}
.alert-success hr {
    border-color: transparent;
}
.alert-success .alert-link {
    color:#fff
}
.alert-info {
    color:#fff;
    background-color:#42B3E5;
    border-color: transparent;
}
.alert-info hr {
    border-top-color:#a6e1ec
}
.alert-info .alert-link {
    color:#fff
}
.alert-warning {
    color:#fff;
    background-color:#f0ad4e;
    border-color: transparent;
}
.alert-warning hr {
    border-color: transparent;
}
.alert-warning .alert-link {
    color:#fff
}
.alert-danger {
    color:#fff;
    background-color:#DE5D50;
    border-color: transparent;
}
.alert-danger hr {
    border-color: transparent;
}
.alert-danger .alert-link {
    color:#fff
}


/******************************
	Media Query
*******************************/

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

    /* --------- common ---------- */
    /*

    .drawer-open #contents, .drawer-open #header, .drawer-open #footer, .drawer-open .pagetop {
        -webkit-transform: translateX(-260px);
        -moz-transform: translateX(-260px);
        -ms-transform: translateX(-260px);
        -o-transform: translateX(-260px);
        transform: translateX(-260px);
    }
    */

    .sp{display: block !important;}
    .pc{display: none !important;}
    span.sp{display: inline !important;}



    /****** Side Setting ********/

    .drawer {
        height: 0;
        visibility: hidden;
        -webkit-transition: visibility 0s 0.3s;
        -moz-transition: visibility 0s 0.3s;
        transition: visibility 0s 0.3s;
    }
    .drawer-open .drawer {
        height: 100%;
        visibility: visible;
        -webkit-transition: visibility 0s 0s;
        -moz-transition: visibility 0s 0s;
        transition: visibility 0s 0s;
    }

    /****** Effect Setting ********/

    /* Overlay */
    .overlay.is-visible {
        -webkit-transform: translateX(-260px);
        -moz-transform: translateX(-260px);
        -ms-transform: translateX(-260px);
        -o-transform: translateX(-260px);
        transform: translateX(-260px);
    }
    .overlay.is-visible.cart-is-visible {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    /* My page address */
    #delivery_address_list div.is-edit p.btn_edit {
        top: 30%;
    }

}

/* PC VIEW */
@media only screen and (min-width: 769px) {

    /* --------- common ---------- */

    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
    .row {
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 16px;
    }
    .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sp{display: none !important;}
    .pc{display: block !important;}
    span.pc{display: inline !important;}


    /* --------------------------------
        Parts
    -------------------------------- */

    /* btn */

    .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333}
    .btn-sm{padding:8px 10px;font-size:14px;line-height:1.5}
    .btn-xs{padding:5px 8px;font-size:12px;line-height:1.5}

    /* badge */

    .badge {
        font-size:12px;
        font-size:1.2rem;
    }

    /* tableish */

    .tableish {
        display: table;
        width: 100%;
    }
    .tableish .thead {
        display: table-header-group;
    }
    .tableish .tbody {
        display: table-row-group;
    }
    .tableish .tr {
        display: table-row;
    }
    .tableish .th,
    .tableish .td {
        display: table-cell;
        vertical-align: top;
    }


    /* pagination */

    .pagination {
        width: 100%;
    }


    /* error_box */
    .error_box {
        margin-bottom: 48px;
    }


    /****** Side Setting ********/

    .drawer {
        position: static;
        height: auto;
        width: auto;
        margin: 0 auto;
        overflow: visible;
        background: transparent;
        text-align: center;
    }
    .drawer:after {
        content: "";
        display: table;
        clear: both;
    }


    /****** Effect Setting ********/

    /* Overlay */
    .overlay {
        display: none;
    }

    /****** Each BlockParts Setting ********/

    /* Cart */
    .cart {
        height: 120px;
        top: 44px;
    }

    /* Search */

    /* ----- category_nav in side ---- */

    .side #searchform select,
    .side #searchform input {
        float: none;
    }

    /* Member area */

    .member_link {
        margin: 0;
    }
    .member_link a {
        border: 0 none;
    }

    /****** Each Page Setting ********/

    /* Forgot Page */

    #forgot_page .column {
        padding: 32px;
        margin-bottom: 16px;
    }
    #forgot_page .column .form-group {
        padding: 8px 0 8px 11%;
        width: 89%;
    }
    #forgot_page .column .btn_area {
        padding: 20px 0 0 21%;
        width: 79%;
    }
    #forgot_page .column .message {
        margin-bottom: 16px;
    }

    /* Error Page */

    .error_page .footer_logo_area {
        margin-top: 0;

    }
}
