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

html {
    font-size: 62.5%;
}

body {
    background: #fff;
    color: #222;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .1rem;
    position: relative;
    overflow-x: hidden;
    margin: 0;
}

/*謎の上部画像対策*/
body > img {
    display: none;
}

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

p,
form {
    margin: 0;
}

a {
    color: #222;
    text-decoration: none;
    transition: 0.5s ease-out;
}

a:hover {
    color: #EA5404;
}

a img {
    transition: 0.5s ease-out;
}

a:hover img {
    opacity: .7;
}

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

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

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

svg {
    fill: currentcolor;
    vertical-align: middle;
}

svg + * {
    vertical-align: middle;
}

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

input,
textarea,
button,
select {
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: .1rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0;
    border: none;
    padding: 0;
    transition: 0.5s ease-out;
    cursor: pointer;
}

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

.is-hidden {
    display: none;
}

/*テキスト*/
.serif {
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
}

.section_heading {
    font-size: 2.2rem;
    padding-bottom: 2rem;
    margin-bottom: 3.2rem;
}

/*ボタン・リンク*/
.button_small {
    width: 100%;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.5rem;
    font-weight: 500;
    background: #EFECDC;
    display: block;
    position: relative;
    text-align: center;
    border-radius: 3rem;
}

.button_small:hover {
    color: #222;
    background: #DEDBC8;
}

.button_big {
    width: 25rem;
    height: 5.4rem;
    line-height: 5.4rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    background: #222;
    display: block;
    position: relative;
    text-align: center;
    border-radius: 3rem;
}

.button_big:hover {
    color: #fff;
    background: #98968B;
}

.button_small .en {
    font-size: 1.6rem;
}

.button_small svg,
.button_big svg {
    margin-right: 0.8rem;
}

.button_small span::after,
.button_big span::after {
    border-left: 1px solid;
    border-top: 1px solid;
    width: .5rem !important;
    height: .5rem !important;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto;
    position: absolute;
    transform: rotate(135deg);
}

.button_small + .button_small {
    margin-top: 1.4rem;
}

.link_arrow {
    position: relative;
    padding-left: 2rem;
}

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

/*ボーダー*/
.border_top,
.border_bottom {
    position: relative;
}

.border_top:before,
.border_bottom:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: url(https://file003.shop-pro.jp/PA01442/468/common/border.svg) repeat-x top center;
    background-size: auto 3px;
}

.border_top:before {
    top: 0;
}

.border_bottom:after {
    bottom: 0;
}

/* 共通部分
----------------------------------------------------*/

.wrapper {
    width: 88%;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.all_container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.side_container {
    width: 22%;
}

.main_container {
    width: 72%;
    max-width: 800px;
}

.page_heading {
    font-size: 2.6rem;
    line-height: 1.5;
    padding-bottom: 4.8rem;
}

.page_not_found {
    font-size: 1.6rem;
    line-height: 2;
    text-align: center;
    padding: 6rem 0;
}

.accordion_list {
    display: none;
}

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

.main_logo_container {
    margin: 4rem 0 4rem;
    text-align: center;
}

.main_logo_link {
    display: block;
}

.main_logo_img {
    width: 80%;
    max-width: 192px;
}

.side_heading {
    font-size: 1.8rem;
    line-height: 1.3;
    letter-spacing: .2rem;
    padding-bottom: 1.8rem;
}

.side_contact_container,
.side_search_container {
    text-align: center;
    padding: 3rem 0 3.2rem;
}

.side_contact_container .contact_tel_container {
    padding-bottom: 2rem;
}

.contact_tel_number {
    font-size: 2.2rem;
    font-weight: 500;
    padding-bottom: 1rem;
}

.contact_tel_number span {
    padding-left: 1rem;
}

.contact_tel_time {
    color: #98968B;
    font-size: 1.2rem;
    line-height: 1.4;
}

/*検索*/
.search_input {
    width: calc(96% - 20px);
    font-size: 1.4rem;
    border-radius: 2rem;
    background-color: rgba(230, 229, 225, 0.4) !important;
    height: 3.6rem;
    line-height: 3.6rem;
    margin-right: 3%;
    padding: 0 6%;
}

.search_input::placeholder {
    color: #999;
}

.search_submit {
    color: #222;
    margin: 0;
}

.search_submit svg {
    width: 20px;
    height: 20px;
}

/*バナー*/
.side_banner_container {
    padding-top: 3.2rem;
}

.side_banner {
    display: block;
}

.side_banner + .side_banner {
    padding-top: 2rem;
}

/*カテゴリー*/
.side_nav_list {
    padding-top: 6rem;
}

.side_cat_item::after {
    opacity: .2;
}

.side_cat_link {
    font-size: 1.6rem;
    line-height: 1.2;
    padding: 1.6rem 0;
    display: block;
}

/*カレンダー*/
.side_calendar_container {
    padding: 6rem 0 0;
}

.side_calendar_container .side_heading,
.side_sns_container .side_heading {
    text-align: center;
    margin-bottom: 2.4rem;
}

.tbl_calendar {
    border: none !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    font-size: 1.3rem;
    width: 100%;
    margin-bottom: 2rem;
}

.tbl_calendar caption {
    font-weight: 500;
    font-size: 1.4rem;
    padding-bottom: .8rem;
}

.tbl_calendar th,
.tbl_calendar td {
    padding: .5rem !important;
    text-align: center !important;
    border-bottom: 1px solid #222 !important;
}

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

.calendar_memo a {
    text-decoration: underline;
}

/*SNS*/
.side_sns_container {
    padding-top: 6rem;
    text-align: center;
}

/* ----- メインヘッダー ----- */

.pc_main_header {
    margin-top: 5.2rem;
    margin-bottom: 4.8rem;
}

.header_nav_container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_nav_item + .header_nav_item {
    padding-left: 3.2rem;
}

.header_nav_link {
    font-size: 1.7rem;
    letter-spacing: .1rem;
    padding: 1.6rem 0;
}

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

.header_nav_item_has_children {
    position: relative;
    cursor: pointer;
}

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

.header_sub_nav_list {
    position: absolute;
    top: 3rem;
    left: 2.8rem;
    background: #EFECDC;
    width: 18rem;
    z-index: 1;
}

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

.header_sub_nav_link {
    font-size: 1.5rem;
    width: 100%;
    letter-spacing: .1rem;
    padding: 1.2rem 1.6rem;
    display: block;
    opacity: 0;
}

.header_sub_nav_link:hover {
    opacity: .8;
}

.header_nav_item_has_children:hover .header_sub_nav_list {
    padding: 1rem 0;
}

.header_nav_item_has_children:hover .header_sub_nav_item {
    overflow: visible;
    display: inline-block;
    transition: 0.3s ease;
    height: auto;
}

.header_nav_item_has_children:hover .header_sub_nav_link {
    opacity: 1;
}


/*カート*/

.pc_cart_button_container {
    position: relative;
}

.pc_cart_button {
    color: #fff;
    background: #222;
    border-radius: 2rem;
    width: 16rem;
    height: 3.6rem;
    line-height: 3.6rem;
    font-size: 1.5rem;
    text-align: center;
    display: block;
}

.pc_cart_button svg {
    margin-right: .8rem;
}

.pc_cart_button:hover {
    background: #98968B;
    color: #fff;
}

.cart_button_count {
    position: absolute;
    top: -.8rem;
    right: -.8rem;
    background: #ea5404;
    color: #fff;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    line-height: 2.2rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
}


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

.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.6rem;
}

.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 + .item_sort_item::before {
    content: "/";
    padding-left: 1.1rem;
    padding-right: .7rem;
    display: inline-block;
    color: #E2E1DD;
    font-size: 1.3rem;
}

.item_sort_item {
    font-size: 1.3rem;
}

.item_sort_item a {
    text-decoration: underline;
}

.item_sort_link_current {
    font-weight: 500;
}

.item_list_img_container {
    position: relative;
    margin: 0;
    border: 1px solid #E6E5E1;
}

.item_list_img_container:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.item_list_img_container .item_list_img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}

.item_list_link {
    display: block;
    padding-bottom: 1.6rem;
}

.item_list_name {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-bottom: 1.4rem;
    display: block;
}

.item_list_price {
    font-size: 1.4rem;
    color: #98968B;
}

.item_list_three_column .item_list {
    margin: 0 -2%;
}

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

.item_list_four_column .item_list {
    margin: 0 -1.6%;
}

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


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

.pager_container {
    padding-top: 3rem;
}

.pager_list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2rem;
}

.pager_item {
    padding: 0 .8rem;
}

.pager_prev_next {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pager_link_number {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background: #fff;
    display: block;
    text-align: center;
    line-height: 3.4rem;
}


.is-current.pager_link {
    background: #EFECDC;
}

.is-prev.pager_link,
.is-next.pager_link {
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 1px #2f2f2f;
    border-right: solid 1px #2f2f2f;
    padding: 6px;
    display: block;
    margin: 0 6px;
    transition: 0.5s ease-out;
}

.is-prev.pager_link {
    transform: rotate(-135deg);
}

.is-next.pager_link {
    transform: rotate(45deg);
}

.pager_prev_next.is-disabled {
    opacity: .6;
}

a.pager_prev_next:hover .pager_link {
    border-top: solid 1px #EA5404;
    border-right: solid 1px #EA5404;
}

/* ----- お気に入り、最近見た商品 ----- */

.favorite_container,
.history_container {
    padding-top: 8rem;
}

.favorite_container + .history_container {
    padding-top: 4rem;
}

/* ----- メインフッター ----- */

.main_footer {
    background: #EFECDC;
    padding: 6rem 0 4.8rem;
    margin-top: 8rem;
}

/*コンタクト*/
.footer_contact_container {
    padding: 5.2rem 0 4.8rem;
    text-align: center;
    position: relative;
}

.footer_contact_heading_container {
    position: absolute;
    top: -1.2rem;
    left: 0;
    right: 0;
}

.footer_contact_heading {
    font-size: 2.8rem;
    letter-spacing: .2rem;
    background: #efecdc;
    display: inline-block;
    padding: 0 2rem;
}

.footer_contact_text {
    font-size: 1.6rem;
    line-height: 1.7;
    padding-bottom: 3.6rem;
}

.footer_contact_main {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer_contact_container .contact_tel_number {
    font-size: 3rem;
}

.footer_contact_container .contact_mail_button {
    margin-left: 7rem;
}

/*ナビ*/
.footer_nav_container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5.2rem 0;
}

.footer_nav_inner {
    width: 23%;
}

.footer_nav_item + .footer_nav_item {
    padding-top: 2.4rem;
}

.footer_nav_link {
    font-size: 1.6rem;
}

.footer_sub_nav_item {
    width: 100%
}

.footer_sub_nav_link {
    font-size: 1.4rem;
}

.footer_sns_container {
    text-align: center;
}

.footer_sns_container::before,
.footer_sns_container::after {
    display: none;
}

.footer_sns_heading {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    padding-bottom: 2.4rem;
}

.footer_sns_button {
    border: 1px solid #222;
    max-width: 22rem;
    margin: 0 auto;
}


/*仲間*/
.footer_link_list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer_link_heading {
    font-size: 2rem;
    letter-spacing: 0.2rem;
    padding-bottom: 3.2rem;
}

.footer_link_heading span {
    font-size: 1.4rem;
    padding-left: 1.2rem;
}

.footer_link_list a {
    width: 23%;
}

/*コピーライト*/
.copyright {
    font-size: 1.3rem;
    text-align: right;
    padding-top: 5.2rem;
}

/* ----- トップへ戻るボタン ----- */

.link_to_top {
    display: none;
    position: fixed;
    right: 3.2rem;
    bottom: 0;
}

.link_to_top span {
    width: 4.8rem;
    height: 6rem;
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
    background: #98968B;
    transition: ease 0.5s;
    cursor: pointer;
    opacity: .9;
    position: relative;
}

.link_to_top span:hover {
    background: #EA5404;
}

.link_to_top span::after {
    content: '';
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    right: 0;
    top: 1.6rem;
    margin: auto;
}

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

.breadcrumb_container {
    padding-bottom: 5.2rem;
    color: #98968B;
}

.breadcrumb_list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.breadcrumb_item {
    font-size: 1.3rem;
    line-height: 1.4;
}

.breadcrumb_item:not(:last-child)::after {
    padding-left: .7rem;
    padding-right: 1.1rem;
    content: '>';
}

.breadcrumb_item a {
    color: #98968B;
    text-decoration: underline;
}

.breadcrumb_item a:hover {
    color: #ea5404;
}

/* ----- フリーページ ----- */

.freepage_container {
    font-size: 1.6rem;
    line-height: 2;
}

.freepage_container p + p {
    margin-top: 2.8rem;
}

.freepage_container a {
    text-decoration: underline;
}

/*無垢食堂について*/
.about_slider,
.tenpo_slider {
    padding-bottom: 4rem;
}

/*実店舗のご案内*/
.list_icon {
    margin-left: 2rem;
    list-style-type: disc;
}

.tenpo_info {
    margin: 0;
}

.tenpo_info dt {
    width: 20%;
    font-weight: 500;
}

.tenpo_info dd {
    width: 80%;
    padding-bottom: 2.8rem;
    margin: 0;
}

/*よくある質問*/

.faq_section + .faq_section {
    padding-top: 3.2rem;
}

.faq_heading {
    font-size: 2.2rem;
    padding-bottom: 1.6rem;
}

.faq_section dl {
    margin: 0;
}

.faq_section dt {
    cursor: pointer;
    padding-bottom: 1.2rem;
}

.faq_section dt p {
    text-decoration: underline;
}

.faq_section dd {
    margin: 0;
    padding-bottom: 4rem;
}

.faq_icon {
    width: 2.8rem;
    font-weight: 500;
}

.faq_icon + p {
    width: calc(100% - 2.8rem);
}


/*ギフトラッピング*/

.gift_main_img {
    padding-bottom: 4rem;
}

.gift_sub_container {
    padding-top: 6rem;
}

.gift_sub_heading {
    font-size: 2.2rem;
    padding-bottom: 3.2rem;
}

.gift_sub_intro_text {
    padding-bottom: 3.2rem;
}

.gift_sub_sub_heading {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
    border-left: #EFECDC 8px solid;
    padding-left: 1.2rem;
    margin-bottom: 1.6rem;
}

.gift_sub_container .flex {
    margin: 0 -2%;
}

.gift_sub_inner {
    width: calc(100% / 2);
    padding: 0 2%;
}

.gift_sub_inner img {
    padding-bottom: 1.6rem;
}

.gift_price {
    font-weight: 500;
    padding-bottom: .8rem;
}

.gift_sub_text {
    font-size: 1.5rem;
}

/* ----- お酒ページ ----- */
#logo_i img,
#main_i img {
    width: auto;
    max-width: 100%;
}

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

PCのみ

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

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

@media screen and (max-width: 1099px) and (min-width: 1030px) {
    html {
        font-size: 59%;
    }
}

@media screen and (max-width: 1029px) and (min-width: 900px) {
    html {
        font-size: 56%;
    }

    .wrapper {
        width: 94%;
    }

    .header_nav_item + .header_nav_item {
        padding-left: 2.6rem;
    }
}

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

    .wrapper {
        width: 96%;
    }

    .header_nav_item + .header_nav_item {
        padding-left: 1.6rem;
    }
}


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

スマートフォンのみ

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

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


    .display_pc {
        display: none !important;
    }

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

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

    .link_arrow {
        padding-left: 1.6rem;
    }

    /* 共通部分
----------------------------------------------------*/

    .wrapper {
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .main_container {
        width: 100%;
        padding-top: 11rem;
    }

    .page_heading {
        font-size: 2.4rem;
        padding-bottom: 3.2rem;
    }

    /* ----- メインヘッダー ----- */

    .sp_main_header {
        padding-top: .8rem;
        padding-bottom: 1rem;
        z-index: 100;
        position: fixed;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.9);
    }

    .is-min .sp_main_header {
        padding-top: .6rem;
        padding-bottom: .6rem;
    }

    .main_logo_container {
        margin: 0;
    }

    .main_logo_img {
        width: 7.2rem;
        height: 9.2rem;
    }

    .is-min .main_logo_img {
        width: 4.5rem;
        height: 5.6rem;
    }

    .sp_cart_button_container {
        position: relative;
        margin-right: 5.4rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-bottom: .6rem;
    }

    .sp_cart_button {
        font-size: 1.1rem;
        letter-spacing: .05rem;
    }

    .sp_cart_button svg {
        margin-right: .4rem;
    }

    .cart_button_count {
        position: relative;
        top: 0;
        right: 0;
        margin-left: 0.2rem;
        display: block;
        width: 1.6rem;
        height: 1.6rem;
        line-height: 1.5rem;
        text-align: center;
        font-size: 1rem;
    }

    #drawer_button {
        position: fixed;
        top: 3rem;
        right: 1rem;
        z-index: 1000;
        width: 4.6rem;
        height: 4.6rem;
        border-radius: 50%;
        padding: 0 1.2rem;
        background: #efecdc;
    }

    .is-min #drawer_button {
        top: 1rem;
    }

    .is-opened#drawer_button {
        background: none;
    }

    .drawer_button_icon {
        position: relative;
        display: block;
        height: 2px;
        width: 100%;
        background: #222;
        transition: ease .5s;
    }

    .drawer_button_icon:nth-child(1) {
        top: -.4rem;
    }

    .drawer_button_icon:nth-child(2) {
        top: .4rem;
    }

    /*OPEN時の動き*/
    .is-opened#drawer_button .drawer_button_icon:nth-child(1) {
        top: .1rem;
        transform: rotate(25deg);
    }

    .is-opened#drawer_button .drawer_button_icon:nth-child(2) {
        top: -.1rem;
        transform: rotate(-25deg);
    }

    .drawer_nav {
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        opacity: 0;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        transition: 0.5s ease;
        background: #EFECDC;
    }

    @supports (-webkit-touch-callout: none) {
        .drawer_nav {
            /* Safari用のハック */
            height: -webkit-fill-available;
        }
    }

    .is-opened#drawer_button ~ .drawer_nav {
        z-index: 999;
        opacity: 1;
    }

    .drawer_nav_inner {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .side_nav_list {
        padding-top: 2rem;
    }

    .side_heading {
        position: relative;
    }

    .side_heading span::after {
        content: '';
        border-left: 1px solid;
        border-top: 1px solid;
        width: 5px !important;
        height: 5px !important;
        content: "";
        display: block;
        margin: auto;
        position: absolute;
        transform: rotate(135deg);
        top: 0;
        bottom: 2rem;
        right: 1rem;
        transition: 0.3s ease-out;
    }

    .is-opened.side_heading span::after {
        transform: rotate(225deg);
    }

    .side_cat_link {
        font-size: 1.5rem
    }

    /*検索*/
    .search_input {
        width: calc(95% - 20px);
        background-color: #fff !important;
        height: 4rem;
        line-height: 4rem;
        margin-right: 2%;
    }

    /*バナー*/
    .side_banner_container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .side_banner + .side_banner {
        padding-top: .8rem;
    }


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

    .list_page_head {
        padding-bottom: 2.8rem;
    }

    .list_page_number {
        font-size: 1.5rem;
    }

    .item_sort_item + .item_sort_item::before {
        padding-left: .8rem;
        padding-right: .2rem;
        font-size: 1.1rem;
    }

    .item_sort_item {
        font-size: 1.2rem;
    }

    .item_list_link {
        padding-bottom: 1.2rem;
    }

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

    .item_list_price {
        font-size: 1.2rem;
    }

    .item_list_three_column .item_list,
    .item_list_four_column .item_list {
        margin: 0 -2.5%;
    }

    .item_list_three_column .item_list_item,
    .item_list_four_column .item_list_item {
        width: calc(100% / 2);
        padding: 0 2.5% 2.8rem;
    }


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

    .pager_container {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .pager_list {
        font-size: 1.8rem;
    }

    .pager_item {
        padding: 0 1.6rem;
    }

    .is-prev.pager_link,
    .is-next.pager_link {
        width: 1.4rem;
        height: 1.4rem;
        margin: 0;
    }


    /* ----- お気に入り、最近見た商品 ----- */

    .favorite_container,
    .history_container {
        padding-top: 4rem;
    }

    .favorite_container + .history_container {
        padding-top: 2rem;
    }

    /* ----- メインフッター ----- */

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

    /*コンタクト*/
    .footer_contact_container {
        padding: 3.6rem 0 3.8rem;
    }

    .footer_contact_heading {
        font-size: 2.2rem;
        padding: 0 1.4rem;
    }

    .footer_contact_text {
        font-size: 1.3rem;
        padding-bottom: 2.4rem;
    }

    .footer_contact_container .contact_tel_number {
        font-size: 2.8rem;
    }

    .footer_contact_container .contact_mail_button {
        margin-left: 0;
        margin-top: 2.4rem;
    }


    /*カレンダー*/
    .footer_calendar_container {
        padding: 3rem 0 3.6rem;
    }

    .footer_calendar_heading {
        text-align: center;
        font-size: 1.8rem;
        line-height: 1.4;
        letter-spacing: 0.2rem;
        padding-bottom: 2.4rem;
    }

    .tbl_calendar {
        width: 80%;
        margin: 0 auto 2rem;
    }


    /*ナビ*/
    .footer_nav_container {
        padding: 4rem 0 3.2rem;
    }

    .footer_nav_inner {
        width: 100%;
    }

    .footer_nav_item + .footer_nav_item,
    .footer_nav_list + .footer_nav_list {
        padding-top: 2rem;
    }

    .footer_nav_link {
        font-size: 1.5rem;
    }

    .footer_sub_nav_list {
        padding-top: 3rem;
    }

    .footer_sub_nav_item {
        width: 50%;
        padding-bottom: 1.6rem;
    }

    .footer_sub_nav_link {
        font-size: 1.3rem;
    }

    .footer_sns_container {
        margin-top: 2.4rem;
        padding-top: 3.2rem;
        padding-bottom: 3.6rem;
    }

    .footer_sns_container::before,
    .footer_sns_container::after {
        display: block;
    }

    /*仲間*/
    .footer_link_heading {
        font-size: 1.8rem;
        padding-bottom: 2rem;
    }

    .footer_link_heading span {
        font-size: 1.3rem;
        padding-left: .8rem;
    }

    .footer_link_list a {
        width: 49%;
        padding-top: 2%;
    }

    /*コピーライト*/
    .copyright {
        font-size: 1.2rem;
        padding-top: 4rem;
        text-align: center;
    }


    /* ----- トップへ戻るボタン ----- */

    .link_to_top {
        right: 2rem;
        bottom: 0;
    }

    .link_to_top span {
        width: 3.6rem;
        height: 4.8rem;
    }

    .link_to_top span::after {
        width: 1.2rem;
        height: 1.2rem;
    }

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

    .breadcrumb_container {
        padding-top: 1rem;
        padding-bottom: 3.2rem;
    }

    .breadcrumb_item {
        font-size: 1.2rem;
    }

    .breadcrumb_item:not(:last-child)::after {
        padding-left: .5rem;
        padding-right: .9rem;
    }

    /* ----- フリーページ ----- */

    .freepage_container {
        font-size: 1.5rem;
        padding-bottom: 4rem;
    }

    /*無垢食堂について*/
    .about_slider,
    .tenpo_slider {
        padding-bottom: 2.8rem;
    }

    /*実店舗のご案内*/
    .list_icon {
        margin-left: 2rem;
        list-style-type: disc;
    }

    .tenpo_info dt {
        width: 100%;
    }

    .tenpo_info dd {
        width: 100%;
    }

    /*よくある質問*/

    .faq_section + .faq_section {
        padding-top: 2rem;
    }

    .faq_heading {
        font-size: 2rem;
        padding-bottom: .8rem;
    }

    .faq_section dt {
        padding-bottom: .8rem;
    }


    /*ギフトラッピング*/

    .gift_main_img {
        padding-bottom: 2.8rem;
    }

    .gift_sub_container {
        padding-top: 4rem;
    }

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

    .gift_sub_intro_text {
        padding-bottom: 2.8rem;
    }

    .gift_sub_sub_heading {
        font-size: 1.7rem;
    }

    .gift_sub_container .flex {
        margin: 0;
    }

    .gift_sub_inner {
        width: 100%;
        padding: 0;
    }

    .gift_sub_inner + .gift_sub_inner {
        padding-top: 2.8rem;
    }

    .gift_sub_inner img {
        padding-bottom: 1.2rem;
    }

    .gift_sub_text {
        font-size: 1.4rem;
    }
    
    /* ----- 年齢確認 ----- */
    #main_i{
        margin: 0 2rem !important;
        padding: 6rem 3.2rem !important;
    }
}

@media screen and (max-width: 349px) {
    html {
        font-size: 57%;
    }
}
