/* Repeatable Patterns
----------------------------------------------------*/
* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}


body {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    letter-spacing: 0.03rem;
    color: #000;
    background: #fff;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* print setting */
@media print {
    html {
        font-size: 38%;
    }

    body {
        -webkit-print-color-adjust: exact;
    }
}

html.is-scroll-prevent {
    height: 100%;
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease-out;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: underline;
}

a img,
a svg {
    transition: 0.3s ease-out;
}

::-moz-selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}

img {
    width: 100%;
    height: auto;
    max-width: none !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 600;
}

p {
    margin: 0;
}

img {
    width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

svg {
    fill: currentcolor;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

input,
textarea,
button {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 400;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0;
    transition: 0.3s ease-out;
    cursor: pointer;
    color: #000;
    border: none;
}

.is-hidden {
    display: none;
}

.wrapper {
    max-width: 1366px;
    min-width: 1080px;
    padding-left: 4%;
    padding-right: 4%;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*テキスト*/
.section_heading {
    font-size: 3rem;
    margin: 0;
    padding-bottom: 4.4rem;
}

/*リンク*/
.link_button {
    width: 28rem;
    height: 6.8rem;
    font-size: 2rem;
    font-weight: 600;
    margin: auto;
    border: 1px solid;
    background: #fff;
    justify-content: center;
    align-items: center;
    position: relative;
}

.link_button:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.link_button::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto;
    border-top: solid 1px;
    border-right: solid 1px;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
}

.link_arrow {
    font-size: 1.6rem;
    padding: 0 2rem 1rem 0.5rem;
    border-bottom: 1px solid;
    position: relative;
    display: block;
    width: fit-content;
    margin-left: auto;
}

.link_arrow::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0.6rem;
    right: 0.8rem;
    margin: auto;
    border-top: solid 1px;
    border-right: solid 1px;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
}

.link_arrow:hover {
    color: #870015;
    text-decoration: none;
}

/* ----- ヘッダー ----- */

.header_inner {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
    align-items: center;
}

.main_logo {
    width: 24%;
    margin: 0;
}

.main_nav {
    width: 76%;
    justify-content: flex-end;
    align-items: center;
}

.main_nav_list {
    width: calc(100% - 16rem);
    padding-right: 5%;
    justify-content: flex-end;
    align-items: center;
}

.main_nav_item {
    font-size: 1.7rem;
    padding: 2rem 0;
}

.main_nav_item + .main_nav_item {
    margin-left: 4.8%;
}

/*マウスオーバーで表示するサブメニュー*/

.item_has_child {
    position: relative;
    cursor: pointer;
    padding-right: 1.2rem;
}

.item_has_child::after {
    border-left: 1px solid;
    border-top: 1px solid;
    width: 5px !important;
    height: 5px !important;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(225deg);
}

.header_child_list {
    position: absolute;
    top: 100%;
    left: 0;
    background: #F2F1ED;
    width: 20rem;
    z-index: 1;
}

.header_child_item {
    width: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
}

.header_child_item a {
    font-size: 1.5rem;
    line-height: 1.3;
    width: 100%;
    padding: .8rem 0;
    display: block;
    opacity: 0;
}

.item_has_child:hover .header_child_item {
    overflow: visible;
    display: inline-block;
    height: auto;
}

.item_has_child:hover .header_child_list {
    padding: 1.6rem 1.6rem;
}

.item_has_child:hover .header_child_item a {
    opacity: 1;
}

/**/

.header_cart_button {
    width: 16rem;
    height: 4.6rem;
    background: #870015;
    color: #fff;
    justify-content: center;
    align-items: center;
}

.header_cart_button:hover {
    background: #720012;
    color: #fff;
    text-decoration: none;
}

.header_cart_button img {
    width: 1.8rem;
    filter: invert(100%) sepia(14%) saturate(0%) hue-rotate(79deg) brightness(101%) contrast(101%);
}

.header_cart_button span {
    font-size: 1.7rem;
    padding-left: .5rem;
}

/* ----- パンくず ----- */

.breadcrumb_container {
    margin-bottom: 4rem;
    flex-direction: column;
}

.breadcrumb {
    font-size: 1.4rem;
    line-height: 1.2;
}

.breadcrumb_item {
    position: relative;
}

.breadcrumb_item + .breadcrumb_item {
    padding-left: 1.2rem;
    margin-left: 0.4rem;
}

.breadcrumb_item + .breadcrumb_item::before {
    content: '';
    width: 5px;
    height: 5px;
    border: 0;
    border-top: solid 1px;
    border-right: solid 1px;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.breadcrumb_item_s + .breadcrumb_item_s::before {
    content: '';
    width: 1px;
    height: 13px;
    border: 0;
    transform: rotate(30deg);
    position: absolute;
    left: 3px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #7e7c76;
}

.breadcrumb_item a {
    display: inline-block;
    word-wrap: break-word;
}

.breadcrumb_item a:hover {
    text-decoration: underline;
}

/* ----- フッター ----- */

.main_footer {
    background: #E2E0D7;
    padding: 8rem 0 6.4rem;
    margin-top: 10rem;
}

.footer_org{
    background: #F2F1ED;
    border-radius: 3rem;
    padding: 4% 6.8%;
}

.footer_org_header{
    text-align: center;
    margin-bottom: 4rem;
}

.footer_org_heading{
    width: 9.8rem;
    margin: 0 auto 2rem;
}

.footer_org_header_text{
    color: #870015;
    font-size: 1.6rem;
    line-height: 1.85;
    font-weight: 600;
}

.footer_org_main{
    width: 40%;
    margin-top: -.6rem;
}

.footer_org_name{
    font-size: 2rem;
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

.footer_org_name span{
    font-size: 1.3rem;
    margin-bottom: .5rem;
}

.footer_org_address{
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2.8rem;
}

.footer_org_address span{
    font-size: 1.4rem;
}

.footer_org_contact_link{
    align-items: center;
}

.footer_org_contact_link + .footer_org_contact_link{
    margin-left: 2.2rem;
}

.footer_org_contact_link span{
    font-size: 1.6rem;
    font-weight: 600;
}

.footer_org_contact_link img{
    filter: invert(97%);
    margin-right: .4rem;
}

.footer_org_contact_link .mail{
    width: 1.7rem;
}

.footer_org_contact_link .phone{
    width: 1.1rem;
}

.footer_org_hours{
    margin-top: 2.2rem;
    font-size: 1.3rem;
    line-height: 1.65;
}

.footer_org_nav{
    width: 60%;
    justify-content: space-between;
}

.org_nav_list{
    width: 45%;
}

.org_nav_item + .org_nav_item{
    border-top: #7E7C76 1px dotted;
}

.org_nav_item{
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 600;
    position: relative;
}

.org_nav_item:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 1rem;
    margin: auto;
    border-top: solid 1px #B4B1A4;
    border-right: solid 1px #B4B1A4;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
}

.org_nav_item a{
    display: block;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
}

.footer_sns {
    justify-content: center;
    align-items: center;
    padding-top: 7.2rem;
    padding-bottom: 7.2rem;
}

.footer_sns_text {
    font-size: 2.1rem;
    font-weight: 600;
    padding-right: 4%;
}

.footer_sns_link {
    align-items: center;
}

.footer_sns_link + .footer_sns_link {
    margin-left: 2.6%;
}

.footer_sns_link img {
    width: 3.5rem;
}

.footer_sns_link span {
    font-size: 2rem;
    font-weight: 600;
    padding-left: 1.2rem;
}

.footer_friends {
    justify-content: center;
    padding-bottom: 8.8rem;
}

.footer_friends_link {
    justify-content: center;
    align-items: center;
    background: #fff;
    margin: 0 1%;
    line-height: 1.3;
}

.footer_friends_link_logo:hover,
.footer_friends_link_text:hover {
    text-decoration: none;
}

.footer_friends_link_logo {
    width: 22%;
    flex-direction: row;
    padding: 1.6rem 0;
}

.footer_friends_link_logo img {
    width: 20%;
}

.footer_friends_link_logo span {
    font-size: 1.7rem;
    font-weight: 600;
    padding-left: 1rem;
}

.footer_friends_link_text {
    width: 22%;
    padding: 1.6rem 0;
}

.footer_friends_link_text span {
    font-size: 1.7rem;
    font-weight: 600;
    text-align: center;
}

.footer_friends_link_banner {
    margin-top: 3.2rem;
}

.footer_friends_link_banner img {
    width: auto;
    height: 7.4rem;
}

.footer_friends_link:last-child{
    width: 18%;
    margin-top: 3.2rem;
}

.footer_bottom {
    justify-content: space-between;
    align-items: center;
}

.footer_nav {
    width: 66%;
}

.footer_nav_item {
    font-size: 1.5rem;
}

.footer_nav_item + .footer_nav_item {
    margin-left: 4%;
}

.footer_copyright {
    font-size: 1.5rem;
}

/* メインコンテンツ
----------------------------------------------------*/

.main_wrapper {
    padding-top: 1rem;
    align-items: flex-start;
    justify-content: space-between;
}

.contents_container {
    width: 67%;
}

.page_heading {
    font-size: 2.8rem;
    padding-bottom: 6rem;
}

.page_not_found {
    text-align: center;
    padding: 10rem 0;
    font-size: 1.8rem;
}

/* ----- サイドナビ ----- */

.sidebar_nav {
    width: 26%;
    background: #F2F1ED;
    padding: 5rem 2.8% 6.4rem;
    margin-top: 6rem;
}

.sidebar_heading {
    font-size: 2.4rem;
    text-align: center;
    padding-bottom: 5.2rem;
}

.sidebar_secion + .sidebar_secion {
    margin-top: 6rem;
}

.sidebar_secion_heading {
    font-size: 2rem;
    margin: 0;
    padding-bottom: 2rem;
}

.search_form {
    margin: 0;
    background: #fff;
    position: relative;
    padding: 1.4rem .8rem;
}

.search_input {
    font-size: 1.5rem;
    padding: 0;
    width: calc(100% - 3rem);
}

.search_form::placeholder {
    color: #7E7C76;
}

.search_submit {
    width: 2.2rem;
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 0;
}

.sidebar_list {
    border-bottom: #7E7C76 1px dotted;
}

.sidebar_list_item {
    position: relative;
    border-top: #7E7C76 1px dotted;
}

.sidebar_list_item:before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 1rem;
    margin: auto;
    border-top: solid 1px #B4B1A4;
    border-right: solid 1px #B4B1A4;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
}

.sidebar_list_item a {
    font-size: 1.6rem;
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
    display: block;
}

/*配送関係カテゴリーは非表示*/
.sidebar_list_item:has(.category_list_link[href$="2933579"]),
.sidebar_list_item:has(.category_list_link[href$="2933580"]),
.sidebar_list_item:has(.category_list_link[href$="2933581"]),
.sidebar_list_item:has(.category_list_link[href$="2941767"]),
.sidebar_list_item:has(.category_list_link[href$="2941768"]) {
    display: none;
}

.category_list_link_satsuma,
.category_list_link_tokusan {
    width: 100%;
    height: 7.2rem;
    justify-content: center;
    align-items: center;
    border: 2px solid;
    font-size: 1.8rem;
    background: #fff;
    font-weight: 600;
}

.category_list_link_satsuma {
    color: #870015;
    margin-top: 4rem;
}

.category_list_link_satsuma img {
    width: 16%;
    margin-right: 2%;
}

.category_list_link_satsuma:hover {
    color: #720012;
    background: transparent;
    text-decoration: none;
}

.category_list_link_tokusan {
    color: #7E7C76;
    margin-top: 1.6rem;
}

.category_list_link_tokusan:hover {
    color: #7E7C76;
    background: transparent;
    text-decoration: none;
}

.sidebar_contact {
    background: #fff;
    padding: 3.2rem 10%;
    margin-top: 6rem;
}

.sidebar_contact_heading {
    text-align: center;
    font-size: 2rem;
    padding-bottom: 2.4rem;
}

.sidebar_contact_link {
    width: 100%;
    height: 4.8rem;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
    color: #fff;
    background: #7e7c76;
    font-weight: 600;
}

.sidebar_contact_link .mail {
    width: 1.7rem;
    margin-right: .7rem;
}

.sidebar_contact_link .phone {
    width: 1.1rem;
    margin-right: .4rem;
}

.sidebar_contact_link:hover {
    text-decoration: none;
    color: #fff;
    background: #615f5a
}

.sidebar_contact_link + .sidebar_contact_link {
    margin-top: 1.6rem;
}

.sidebar_contact_link span {
    padding-bottom: 0.2rem;
}

.sidebar_contact_hours {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 2rem;
}

/* ----- 商品一覧 ----- */

.list_page_head {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 4rem;
}

.list_page_number {
    font-size: 1.5rem;
}

.item_sort_list {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.item_sort_item {
    font-size: 1.5rem;
}

.item_sort_item + .item_sort_item {
    padding-left: 1.2rem;
}

.item_sort_link_current {
    opacity: .7;
}

.item_list {
    margin: 0 -2.4%;
}

.item_list_item {
    width: calc(100% / 4);
    padding: 0 2.4% 4.8rem;
}

.item_list_s {
    margin: 0 -3%;
}

.item_list_s .item_list_item {
    width: calc(100% / 3);
    padding: 0 3% 4rem;
}

.item_list_img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.item_list_img:hover {
    filter: grayscale(100%);
}

.item_list_text {
    padding-top: 1.6rem;
}

.item_list_icon {
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.7;
    padding: 0 0.6rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.item_list_icon_satsuma {
    background: #870015;
}

.item_list_icon_tokusan {
    background: #9A9997;
}

.item_list_name {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 600;
    padding-bottom: 1.4rem;
}

.item_list_price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #7E7C76;
}

/* ----- ページャー ----- */

.pager_container {
    padding-top: 4rem;
}

.pager_list {
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.pager_item {
    padding: 0 .7rem;
}

.pager_link {
    width: 4.4rem;
    height: 4.4rem;
    display: inline-block;
    text-align: center;
    line-height: 4.4rem;
    background: #F2F1ED;
}

.pager_link:hover {
    text-decoration: none;
    background: #000;
    color: #fff;
}

.is-current.pager_link {
    background: #000;
    color: #fff;
}

/* ----- 最近見た商品 ----- */

.history_container {
    padding-top: 15rem;
}

/* ----- 年齢確認 ----- */
.caution {
    color: #870015;
    font-size: 120%;
    margin-bottom: 6rem;
}

/* ----- 特定商取引法表示・お買い物ガイド ----- */

.guide_container img {
    width: auto;
    max-width: 100%;
}

.guide_container a {
    text-decoration: underline;
}

.guide_heading {
    font-size: 2.2rem;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 6rem;
}

.guide_section + .guide_section {
    padding-top: 100px;
}

.guide_section_tr {
    padding-bottom: 3.6rem;
    margin-bottom: 3.6rem;
    border-bottom: 1px dotted;
}

.guide_section_th {
    width: 30%;
    padding-right: 5%;
    font-size: 1.8rem;
    line-height: 2;
    font-weight: 600;
}

.guide_section_td {
    width: 70%;
    font-size: 1.6rem;
    line-height: 2;
}

.guide_list_list {
    margin-left: 2rem;
    list-style-type: disc;
}

.guide_subsection_heading {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 2.8rem 0 1.2rem;
}

.guide_shipping_table {
    width: 100%;
}

.guide_shipping_table,
.guide_shipping_table tr,
.guide_shipping_table th,
.guide_shipping_table td {
    border: 2px solid #fff;
    border-collapse: collapse;
    padding: 0.5rem 1rem;
}

.guide_shipping_table th {
    min-width: 8rem;
}

.guide_shipping_table th,
.guide_shipping_table td:not(:last-child) {
    background-color: rgba(242, 241, 237, 1);
    ;
}

.guide_shipping_table tr td:last-child {
    background-color: rgba(242, 241, 237, 0.5);
    min-width: 10rem;
    text-align: right;
}

.imp {
    color: #870015;
}


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

PCのみ

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

@media print,
screen and (min-width: 768px) {
    .display_sp {
        display: none !important;
    }
}

@media screen and (max-width: 1149px) and (min-width: 768px) {
    html {
        font-size: 58%;
    }
}

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

スマートフォンのみ

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

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

    .display_pc {
        display: none !important;
    }

    .wrapper {
        min-width: 0;
        padding-left: 2.2rem;
        padding-right: 2.2rem;
    }

    /*テキスト*/
    .section_heading {
        font-size: 2.4rem;
        padding-bottom: 3.2rem;
    }

    /*リンク*/
    .link_button {
        width: 22rem;
        height: 5.2rem;
        font-size: 1.7rem;
    }

    .link_button::after {
        right: 1.6rem;
        width: 6px;
        height: 6px;
    }

    .link_arrow {
        font-size: 1.5rem;
        padding: 0 1.6rem .8rem 0.3rem;
    }

    .link_arrow::after {
        bottom: 0.4rem;
        right: 0.6rem;
    }

    /* ----- ヘッダー ----- */

    .header_inner {
        padding-top: 1.7rem;
        padding-bottom: 1.7rem;
    }

    .main_logo {
        width: 20rem;
    }

    .main_nav {
        width: calc(100% - 20rem);
        padding-right: 4.4rem;
    }

    .header_cart_button {
        width: 2.7rem;
        height: 2.1rem;
        background: none;
    }

    .header_cart_button img {
        width: 2.7rem;
        filter: invert(8%) sepia(83%) saturate(4648%) hue-rotate(341deg) brightness(98%) contrast(110%);
    }

    /* ドロワーメニュー
----------------------------------------------------*/
    .drawer_hamburger {
        position: fixed;
        top: 3.2rem;
        right: 2.2rem;
        width: 2.5rem;
        height: 2rem;
        z-index: 999;
        padding: 0;
    }

    .drawer_hamburger_icon,
    .drawer_hamburger_icon:after,
    .drawer_hamburger_icon:before {
        transition: all .3s cubic-bezier(.19, 1, .22, 1);
    }

    .drawer_hamburger_icon {
        position: relative;
        display: block;
        width: 100% !important;
        height: 2px;
        margin-top: 0 !important;
        background-color: #870015;
    }

    .drawer_hamburger_icon:after,
    .drawer_hamburger_icon:before {
        position: absolute;
        content: " ";
        height: 2px;
        width: 100% !important;
        background-color: #870015;
        left: 0;
        right: 0;
        margin: auto;
    }

    .drawer_hamburger_icon:before {
        top: -.8rem !important;
    }

    .drawer_hamburger_icon:after {
        top: .8rem !important;
    }

    .is-opened .drawer_hamburger_icon {
        background-color: transparent;
    }

    .is-opened .drawer_hamburger_icon:before,
    .is-opened .drawer_hamburger_icon:after {
        width: 110% !important;
        top: 0 !important;
    }

    .is-opened .drawer_hamburger_icon:before {
        transform: rotate(45deg);
    }

    .is-opened .drawer_hamburger_icon:after {
        transform: rotate(-45deg);
    }

    .drawer_container {
        background: #F2F1ED;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        overflow-y: scroll;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: 100%;
        transition: right .3s ease-in-out;
        -webkit-overflow-scrolling: touch;
    }

    .is-opened .drawer_container {
        right: 0;
        transition: right .3s ease-in-out;
    }

    .drawer_inner {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .drawer_logo {
        display: block;
        width: 44%;
        margin: 0 auto 4rem;
    }

    .drawer_nav_list .hs_btn {
        position: relative;
        cursor: pointer;
        padding-right: 16px;
    }

    .drawer_nav_list .hs_btn::before,
    .drawer_nav_list .hs_btn::after {
        display: block;
        content: '';
        background-color: #7E7C76;
        position: absolute;
        width: 1.2rem;
        height: 1px;
        top: 0;
        bottom: 0;
        right: .8rem;
        margin: auto;
        transition: 0.3s ease-out;
        opacity: 1;
    }

    .drawer_nav_list .hs_btn::after {
        transform: rotate(90deg);
    }

    .drawer_nav_list .hs_btn.open::after {
        opacity: 0;
    }

    .drawer_nav_list .hs_content {
        display: none;
    }

    .drawer_nav_list {
        width: 100%;
    }

    .drawer_nav_item {
        border-bottom: #7E7C76 1px dotted;
    }

    .drawer_nav_link {
        font-size: 1.8rem;
        font-weight: 600;
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
        display: block;
    }

    .drawer_nav_item a {
        position: relative;
    }

    .drawer_nav_item a::before {
        position: absolute;
        content: "";
        top: 0;
        bottom: 0;
        right: 1.2rem;
        margin: auto;
        border-top: solid 1px #7E7C76;
        border-right: solid 1px #7E7C76;
        width: 0.7rem;
        height: 0.7rem;
        transform: rotate(45deg);
    }

    .drawer_child_item {
        border-top: #7E7C76 1px dotted;
    }

    .drawer_child_link {
        font-size: 1.6rem;
        padding-top: 1.8rem;
        padding-bottom: 1.8rem;
        padding-left: 2rem;
        display: block;
    }

    /* ----- パンくず ----- */

    .breadcrumb_container {
        margin-bottom: 2.8rem;
    }

    .breadcrumb {
        font-size: 1.2rem;
    }

    .breadcrumb_item + .breadcrumb_item {
        padding-left: 1rem;
        margin-left: 0.2rem;
    }

    .breadcrumb_item_s + .breadcrumb_item_s::before {
        height: 11px;
        left: 3px;
    }

    /* ----- フッター ----- */

    .main_footer {
        padding: 6rem 0 4rem;
        margin-top: 6rem;
    }

    .footer_org{
        border-radius: 2rem;
        padding: 2.8rem 2.4rem;
    }

    .footer_org_header{
        margin-bottom: 3.2rem;
    }

    .footer_org_heading{
        width: 8rem;
        margin: 0 auto 1.8rem;
    }

    .footer_org_header_text{
        font-size: 1.3rem;
        line-height: 1.7;
    }

    .footer_org_main{
        width: 100%;
        margin-top: 0;
        text-align: center;
    }

    .footer_org_name{
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }

    .footer_org_name span{
        font-size: 1.3rem;
        margin-bottom: 0;
    }

    .footer_org_address{
        font-size: 1.3rem;
        line-height: 1.7;
        margin-bottom: 2.8rem;
    }

    .footer_org_address span{
        font-size: 1.3rem;
    }

    .footer_org_contact{
        justify-content: center;
    }

    .footer_org_contact_link + .footer_org_contact_link{
        margin-left: 1.8rem;
    }

    .footer_org_hours{
        margin-top: 2rem;
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .footer_org_nav{
        width: 100%;
        margin-top: 4rem;
    }

    .org_nav_list{
        width: 100%;
    }

    .org_nav_list + .org_nav_list{
        border-top: #7E7C76 1px dotted;
    }

    .org_nav_item{
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .org_nav_item a{
        display: block;
        padding-top: 1.4rem;
        padding-bottom: 1.4rem;
    }

    .footer_sns {
        padding-bottom: 6rem;
    }

    .footer_sns_text {
        font-size: 1.7rem;
        padding-right: 0;
        padding-bottom: 2.8rem;
        width: 100%;
        text-align: center;
    }

    .footer_sns_link + .footer_sns_link {
        margin-left: 6%;
    }

    .footer_sns_link img {
        width: 2.8rem;
    }

    .footer_sns_link span {
        font-size: 1.8rem;
        padding-left: 1rem;
    }

    .footer_friends {
        padding-bottom: 6rem;
        margin: -2% -2%;
    }

    .footer_friends_link {
        margin: 2% 2%;
    }

    .footer_friends_link_logo {
        width: 46%;
        padding: 1.2rem 0;
    }

    .footer_friends_link_logo img {
        width: 26%;
    }

    .footer_friends_link_logo span {
        font-size: 1.2rem;
        padding-left: 0.7rem;
    }

    .footer_friends_link_text {
        width: 46%;
        padding: 1.2rem 0;
    }

    .footer_friends_link_banner{
        width: 46%;
    }

    .footer_friends_link_text span {
        font-size: 1.2rem;
    }

    .footer_friends_link_banner+.footer_friends_link_banner {
        width: 100%;
        margin-top: 2%;
    }

    .footer_friends_link_banner img {
        width: 100%;
        height: auto;
    }

    .footer_nav {
        width: 100%;
    }

    .footer_nav_item {
        font-size: 1.3rem;
        margin-right: 2rem;
        margin-bottom: 1.2rem;
    }

    .footer_nav_item + .footer_nav_item {
        margin-left: 0;
    }

    .footer_copyright {
        font-size: 1.3rem;
        width: 100%;
        text-align: right;
        margin-top: 2rem;
    }

    /* メインコンテンツ
----------------------------------------------------*/

    .main_wrapper {
        padding-top: 0;
    }

    .contents_container {
        width: 100%;
    }

    .page_heading {
        font-size: 2.6rem;
        padding-bottom: 4rem;
    }

    .page_not_found {
        padding: 8rem 0;
        font-size: 1.6rem;
    }

    /* ----- サイドナビ ----- */

    #sp_sidebar {
        padding: 4rem 2rem;
        margin: 6rem 2.2rem 0;
        background: #F2F1ED;
    }

    .sidebar_heading {
        font-size: 2rem;
        padding-bottom: 3.2rem;
    }

    .sidebar_secion + .sidebar_secion {
        margin-top: 4.8rem;
    }

    .sidebar_secion_heading {
        font-size: 1.9rem;
        padding-bottom: 1.8rem;
    }

    .search_form {
        padding: 1.2rem .8rem;
    }

    .search_input {
        font-size: 1.6rem;
        width: calc(100% - 2rem);
    }

    .search_submit {
        width: 2rem;
    }

    .sidebar_list_item a {
        font-size: 1.5rem;
    }

    .category_list_link_satsuma,
    .category_list_link_tokusan {
        height: 6.4rem;
        font-size: 1.7rem;
    }

    .category_list_link_satsuma {
        margin-top: 2.8rem;
    }

    .category_list_link_satsuma img {
        width: 16%;
        margin-right: 2%;
    }

    .category_list_link_tokusan {
        color: #7E7C76;
        margin-top: 1.2rem;
    }

    .sidebar_contact {
        padding: 3.2rem 3.2rem;
        margin-top: 4.8rem;
    }

    .sidebar_contact_heading {
        font-size: 1.8rem;
        padding-bottom: 2rem;
    }

    .sidebar_contact_link + .sidebar_contact_link {
        margin-top: 1.2rem;
    }

    /* ----- 商品一覧 ----- */

    .list_page_head {
        padding-bottom: 3.2rem;
    }

    .list_page_number {
        font-size: 1.4rem;
    }

    .item_sort_heading {
        font-size: 1.3rem;
    }

    .item_sort_item {
        font-size: 1.4rem;
    }

    .item_sort_item + .item_sort_item {
        padding-left: 1rem;
    }

    .item_list {
        margin: 0 -3%;
    }

    .item_list_item {
        width: calc(100% / 2);
        padding: 0 3% 3.2rem;
    }

    .item_list_s {
        margin: 0 -3%;
    }

    .item_list_s .item_list_item {
        width: calc(100% / 2);
        padding: 0 3% 3.2rem;
    }

    .item_list_text {
        padding-top: 1.2rem;
    }

    .item_list_icon {
        font-size: 1.3rem;
        color: #fff;
        line-height: 1.6;
        padding: 0 0.4rem;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .item_list_name {
        font-size: 1.6rem;
        padding-bottom: 1.4rem;
    }

    .item_list_price {
        font-size: 1.3rem;
    }

    /* ----- ページャー ----- */

    .pager_container {
        padding-top: 2.8rem;
    }

    .pager_list {
        font-size: 1.6rem;
    }

    .pager_item {
        padding: 0 .5rem;
    }

    .pager_link {
        width: 3.4rem;
        height: 3.4rem;
        line-height: 3.2rem;
    }

    /* ----- 最近見た商品 ----- */

    .history_container {
        padding-top: 8rem;
    }

    /* ----- 年齢確認 ----- */
    .caution {
        margin-bottom: 4rem;
    }

    /* ----- 特定商取引法表示・お買い物ガイド ----- */
    .guide_heading {
        font-size: 2rem;
        margin-bottom: 2.8rem;
        border-left: .6rem solid #F2F1ED;
        padding-left: 1rem;
    }

    .guide_section + .guide_section {
        padding-top: 6rem;
    }

    .guide_section_tr {
        padding-bottom: 2.4rem;
        margin-bottom: 2.4rem;
    }

    .guide_section_th {
        width: 100%;
        padding-right: 0;
        margin-bottom: 1.2rem;
        font-size: 1.8rem;
    }

    .guide_section_td {
        width: 100%;
        font-size: 1.6rem;
    }

    .guide_shipping_table td:not(:last-child) {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .guide_shipping_table tr td:last-child {
        min-width: 8.8rem;
    }

}

@media print,
screen and (max-width: 320px) {
    html {
        font-size: 58%;
    }
}
