@charset "UTF-8";

/* リセット */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* テキスト設定 */

body {
    font-family: sans-serif;
}

.mincho {
    font-family: "A-OTF A1 Mincho Std", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 'Noto Sans Japanese', serif;
}

.meiryo {
    font-family: "メイリオ", Meiryo, "小塚ゴシック", sans-serif;
}

.arial {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.kakugo {
    font-family: "FOT-UDKakugo_Large Pr6N";
}

.txtLightGray {
    color: #6b6b6b;
}

.txtBlack {
    color: #000;
}

.txtWhite {
    color: #fff;
}


/* リンク */

a {
    text-decoration: none;
    transition: .3s;
    color: #000;
}

a:hover {
    opacity: .7;
    transition: .3s;
    color: #000;
    text-decoration: none;
}

.noLine {
    text-decoration: none;
}

.externalLink::after {
    content: url('https://aokisadaharu.itembox.design/item/icon-external.png');
    position: relative;
    top: 4px;
    left: 5px;
}

.font8 {
    font-size: .5rem;
}

.font10 {
    font-size: .625rem;
}

.font12 {
    font-size: .75rem;
}

.font13 {
    font-size: .8125rem;
}

.font14 {
    font-size: .875rem;
}

.font15 {
    font-size: .9375rem;
}

.font16 {
    font-size: 1rem;
}

.font18 {
    font-size: 1.125rem;
}

.font20 {
    font-size: 1.25rem;
}

.font22 {
    font-size: 1.375rem;
}

.font23 {
    font-size: 1.438rem;
}

.font24 {
    font-size: 1.5rem;
}

.font28 {
    font-size: 1.75rem;
}

.font30 {
    font-size: 1.875rem;
}

.font32 {
    font-size: 2rem;
}

.font36 {
    font-size: 2.25rem;
}

.fontNormal {
    font-weight: 400;
}

.fontMed {
    font-weight: 600;
}

.fontBold {
    font-weight: 800;
}

.txtLeft {
    text-align: left;
}

.txtRight {
    text-align: right;
}

.txtCent {
    text-align: center;
}

.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .pc {
        display: none!important;
    }
    .sp {
        display: block;
    }
}


/* 背景設定 */

.bg-black {
    background-color: #000;
}

.bg-darkgray {
    background-color: #f1f1f1
}

.bg-darkergray {
    background-color: #959595;
}

.bg-lightgray {
    background-color: #eeeeee;
}

.bg-white {
    background-color: #ffffff;
}

.bg-graystripe {
    background: url('https://aokisadaharu.itembox.design/item/bg-gray-vertical.png');
}


/* 矢印 */

.arw-right::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    right: 15px;
    top: 33%;
}

.arw-right-grey::after {
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid #959595;
}

.arw-right-wht::after {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fff;
}


/*変更前
.arw-right::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    right: 15px;
    top: 29%;
}
.arw-right-wht::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 11px solid #fff;
}
*/


/* ディスプレイ設定 */

.block {
    display: block;
}

.iblock {
    display: inline-block;
}

.static {
    display: static;
}


/* flex */

.flex {
    display: flex;
}

.rowWrap {
    flex-flow: row wrap;
}

.justAround {
    justify-content: space-around;
}

.justBetween {
    justify-content: space-between;
}


/* フロート設定 */

.fleft {
    float: left;
}

.fright {
    float: right;
}

.clear {
    clear: both;
}

.clearleft {
    clear: left;
}

.clearright {
    clear: right;
}


/* 位置設定 */

.static {
    position: static;
}

.rel {
    position: relative;
}

.abs {
    position: absolute;
}

.sticky {
    position: sticky;
}

.fixedHdr {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
}


/* z-index */

.z1 {
    z-index: 1;
}

.z2 {
    z-index: 2;
}

.z3 {
    z-index: 3;
}


/* レイアウト設定 */


/*追加調整 */

body {
    min-width: 1300px;
}

@media screen and (max-width: 769px) {
    body {
        min-width: 100%;
    }
}

@media screen and (max-width: 916px) {
    body {
        min-width: 100%;
    }
}

.w940,
.w1100,
.w1200,
.w1400 {
    width: 95vw;
    margin: 0 auto;
}

.w940 {
    max-width: 940px;
}

.w1100 {
    max-width: 1100px;
}

.w1200 {
    max-width: 1200px;
}

.w1400 {
    max-width: 1400px;
}

.superCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.valignTop {
    vertical-align: top;
}

.w100 {
    width: 100%;
}


/*マージン */

.m0a {
    margin: 0 auto;
}

.mr25 {
    margin-right: 25px;
}

.mr35 {
    margin-right: 35px;
}

.sp95 {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp95 {
        display: block;
        margin: 10vh auto;
        width: 95vw;
    }
}


/* 様々な設定 */

.scrollY {
    overflow-y: scroll;
}

.scrollX {
    overflow-x: scroll;
}

.overflowHidden {
    overflow: hidden;
}


/* 各H1の擬似要素　画像 */

section h1::after {
    display: block;
    margin: 10px auto;
}


/* Custom Styling */


/* パーツ */

.gray-link {
    background-color: #959595;
    border-radius: 10px;
    box-sizing: border-box;
    margin: 10px auto;
    position: relative;
}

.gray-link a {
    display: block;
    height: 100%;
    width: 100%;
    /* 調整追記 */
    color: #fff;
}

.page-link {
    background-color: #C9C4C4;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 18px;
    text-align: center;
    height: 80px;
    width: 300px;
    position: relative;
    line-height: 80px;
    margin-bottom: 20px;
}

.page-link.twoLine {
    line-height: 1.6;
    padding-top: 10px;
}

.page-link::after {
    content: '';
    height: 0px;
    width: 0px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid #fff;
    position: absolute;
    right: 15px;
    top: 30px;
}

.page-link a {
    color: #fff;
    display: block;
}

.flex-dummy {
    flex: 1 0 1px;
}

@media screen and (max-width: 916px) {
    .flex-dummy {
        flex: 0 1 300px;
    }
}

@media screen and (max-width: 768px) {
    .page-link {
        background-color: #C9C4C4;
        border-radius: 10px;
        box-sizing: border-box;
        font-size: 14px;
        text-align: left;
        height: 60px;
        width: 48%;
        position: relative;
        line-height: 60px;
        margin-bottom: 10px;
        padding: 0 8px;
    }
    .page-link::after {
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 7px solid #fff;
        right: 8px;
        top: 24px;
    }
    .flex-dummy {
        flex: 0 1 48%;
    }
}


/* パーツ 終わり */


/* header */

header {
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    display: flex;
    justify-content: space-between;
    padding: 15px 0 70px;
    z-index: 3;
}

header .logo {
    display: block;
    max-width: 440px;
    padding: 15px 0;
    width: 50vw;
}

.header-left {
    margin-left: 20px;
}

.header-right {
    flex: 0 1 auto;
    right: 25px;
    position: absolute;
    width: 705px;
    min-width: 705px;
    /* z-index: 10; */
}

@media screen and (max-width: 1050px) {
    .site-nav,
    .shop-nav {
        display: none;
    }
    .header-right {
        flex: 0 1 540px;
    }
}

@media screen and (max-width: 1500px) {
    header {
        padding: 15px 0 38px
    }
    .menu-btn {
        display: inline-block;
        padding-top: 2px;
    }
    header .logo {
        padding: 0;
    }
    header .logo img {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 15px 0;
    }
}

@media screen and (max-width: 600px) {
    header .logo {
        max-width: 40vw;
    }
}

.site-nav {
    min-width: 700px;
    position: absolute;
    z-index: 10;
}

.site-nav li {
    margin-right: 20px;
    margin-bottom: 10px;
}

.site-nav li::after {
    content: "";
    display: block;
    margin: 5px auto 0;
    width: 0;
    height: 0;
    border-top: 5px solid #9fa0a0;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
}

.shop-nav {
    float: right;
    margin-bottom: 10px;
}

.shop-nav li {
    padding: 0 10px;
    border-left: 1px solid #9fa0a0;
    vertical-align: middle;
}

.shop-nav li:last-child {
    border-left: none;
    padding: 0 0 0 20px;
}

header .tel-link::before {
    content: url('https://aokisadaharu.itembox.design/item/icon-tel.png');
    position: absolute;
    left: -20px;
}

.account-nav {
    clear: both;
    text-align: right;
}

.top-search input[type="search"] {
    background: 95% no-repeat url('https://aokisadaharu.itembox.design/item/icon-search.png'), #eeeeee;
    border: none;
    border-radius: 4px;
    height: 50px;
    max-width: 200px;
    padding: 5px;
}

.top-search input[type="search"]:focus {
    outline: none;
}

.account-nav li {
    border: 1px solid #c9c4c4;
    border-radius: 5px;
    text-align: center;
}

.account-nav a {
    font-size: 10px;
    padding: 4px;
}

.account-nav .register-btn,
.account-nav .cart-btn,
.account-nav .menu-btn {
    height: 50px;
    width: 60px;
}

@media screen and (max-width: 769px) {
    .account-nav>div {
        transform: scale(.9);
    }
}

@media screen and (max-width: 768px) {
    /* ----------------------------------------------------------------

　　open_menu

----------------------------------------------------------------- */
    .open-menu {
        position: relative;
    }
    .open-menu-btn-wrap {
        display: block;
        position: absolute;
        width: 44px;
        height: 44px;
        right: 10%;
        cursor: pointer;
        top: 14px;
    }
    .open-menu-btn {
        display: block;
        border: none;
        width: 30px;
        position: relative;
        font-size: 2em;
        z-index: 999;
    }
    .open-menu-btn .toggle {
        display: block;
        width: 100%;
        height: 3px;
        position: absolute;
        left: 7px;
        transition: all .4s ease;
        border-radius: 5px;
        background-color: #000;
    }
    .open-menu-btn .toggle:nth-child(1) {
        top: 7px;
    }
    .open-menu-btn .toggle:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    .open-menu-btn .toggle:nth-child(3) {
        bottom: 7px;
    }
    .open-menu-btn-wrap .menu_text {
        display: block;
        margin: 18px 0 0;
        font-size: 9px;
        background-color: inherit;
        width: 100%;
        font-weight: bold;
    }
    .open .open-menu-btn .toggle {
        background-color: #000;
    }
    .open .open-menu-btn .toggle:nth-child(1) {
        top: 0;
        left: 7px;
        transform: rotate(45deg) translateY(-2px);
    }
    .open .open-menu-btn .toggle:nth-child(2) {
        opacity: 0;
    }
    .open .open-menu-btn .toggle:nth-child(3) {
        bottom: 68%;
        left: 7px;
        transform: rotate(-45deg) translateY(1px);
        width: 100%;
    }
    .open-menu-bg {
        width: 100%;
        height: 100%;
        position: fixed;
        background: #FFF;
        top: 80px;
        left: 0;
        z-index: 996;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
    }
    .open .open-menu-bg,
    .open .open-menu-wrap {
        pointer-events: auto;
        opacity: 1;
        transition: opacity .4s ease;
    }
    .open-menu-wrap {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 996;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0s ease;
        overflow-y: scroll;
        text-align: left;
        color: #000;
        text-align: center;
        font-size: 2rem;
        background: #eeeeee;
    }
    .open-menu-wrap h2 {
        padding: 5px 0;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        margin-bottom: 40px;
    }
    .open-menu-wrap ul {
        margin-bottom: 40px;
    }
    .open-menu-wrap ul li {
        margin-bottom: 20px;
    }
    /*------accordion-----*/
    .nv_accordion .accordion_area {
        max-width: 100%;
    }
    .nv_accordion .accordion_area .accordion_header {
        font-weight: bold;
        padding: 5%;
        position: relative;
        z-index: 99;
        cursor: pointer;
        transition-duration: 0.2s;
        border-top: 1px dotted #FFF;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #FFF;
        background: #959595;
        font-size: 1rem;
    }
    .nv_accordion .accordion_area .accordion_header .arrow02 {
        position: absolute;
        content: '';
        top: 20px;
        right: 15px;
        height: 0;
        width: 0;
        border-style: solid;
        border-width: 6px 4px 0 4px;
        border-color: #FFF transparent transparent transparent;
        z-index: 2;
        background-color: #959595;
    }
    .nv_accordion .accordion_area .accordion_header.open .arrow02 {
        position: absolute;
        content: '';
        top: 20px;
        right: 15px;
        height: 0;
        width: 0;
        border-style: solid;
        border-width: 0 4px 6px 4px;
        border-color: transparent transparent #fff transparent;
        z-index: 2;
    }
    .nv_accordion .accordion_area .accordion_inner {
        display: none;
        padding: 30px 30px;
        box-sizing: border-box;
        background: #eeeeee;
    }
    .nv_accordion .accordion_area .accordion_inner .accordion_glnv {
        margin-bottom: 20px;
    }
    .nv_accordion .accordion_area .accordion_inner .accordion_glnv>li {
        margin-bottom: 10px;
        border: none;
    }
    .accordion_glnv .main a {
        color: #000;
        display: flex;
        align-items: center;
        justify-content: start;
        opacity: 1;
        font-size: 1rem;
    }
    .accordion_glnv .main a::before {
        content: '';
        height: 0;
        width: 0;
        display: block;
        margin-right: 10px;
        border-style: solid;
        border-width: 4px 0 4px 6px;
        border-color: transparent transparent transparent #000;
    }
    .accordion_glnv .main {
        font-weight: bold;
        text-decoration: none;
    }
    .accordion_glnv .sub a {
        font-size: 1rem;
        text-align: left;
    }
    .accordion_glnv .sub a::before {
        content: '-\00a0';
        display: inline-block;
        color: #000;
    }
    .account-nav .accordion_glnv li {
        text-align: left;
    }
}

.account-nav .register-btn a::before {
    content: url('https://aokisadaharu.itembox.design/item/icon-register.png');
    position: relative;
    display: block;
    margin: 0 auto;
}

.account-nav .cart-btn a::before {
    content: url('https://aokisadaharu.itembox.design/item/icon-cart.png');
    height: 30px;
    position: relative;
    right: 2px;
    display: block;
    margin: 0 auto;
}


/*fs調整 カートに数字*/

.l-headerAccountList--cart {
    position: relative;
}

.l-headerAccountList--cart .fs-client-cart-count {
    position: absolute;
    top: -5px;
    right: 0;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background: #E52D07;
    color: #FFF;
    font-size: 10px;
    font-size: .71429rem;
    font-weight: bold;
    line-height: 20px;
    text-align: center;
}


/*fs調整 ul → ol */

.breadcrumb ol {
    padding: 10px 0 10px 50px;
}

.breadcrumb .fs-c-breadcrumb__list--subgroup {
    padding: 0 0 10px 50px;
}

.breadcrumb li {
    display: inline-block;
    /*fs調整*/
    font-size: 0.8rem;
}


/*fs調整非表示
.breadcrumb li:not(:last-child)::after {
    content: '＞';
    display: inline-block;
    margin: 0 0 0 5px;
}*/

@media screen and (max-width: 769px) {
    .breadcrumb ol {
        padding: 10px 0 10px 20px;
    }
    .breadcrumb ul {
        padding: 10px 0 10px 10px;
    }
}


/* 下のスライダー */

.bestseller-slide a,
.related-slide a {
    color: #000;
    padding: 3px;
}

.number {
    font-family: "Century Gothic";
    left: 42%;
    top: 4%;
}

.bestseller-title,
.related-title {
    padding-bottom: 10px
}

.bestseller-txt,
.related-txt {
    bottom: 20px;
    left: 10px;
}

@media screen and (max-width: 600px) {
    .bestseller-slide,
    .related-slide {
        flex: 0 1 49%;
    }
    .bestseller-slide img,
    .related-slide img {
        width: 100%;
    }
    .bestseller-title,
    .related-title {
        padding-bottom: 5px
    }
}


/* メールマガジン */

#mailmag {
    background: left / 50% no-repeat url('https://aokisadaharu.itembox.design/item/ph-cherrypie.jpg'), #eeeeee;
    border: 1px solid #9fa0a0;
    border-radius: 15px;
    margin: 80px auto 120px;
    max-width: 725px;
    width: 95vw;
}

.mailmag-after {
    overflow: hidden;
}

#mailmag::after {
    content: url('https://aokisadaharu.itembox.design/item/ph-gat-mrusks.png');
    position: absolute;
    bottom: -250px;
    right: -312px;
}

#mailmag h3::before {
    content: url('https://aokisadaharu.itembox.design/item/txt-newsletter.png');
    display: block;
}

.mailmag-txt {
    text-align: center;
    margin: 35px 70px 35px auto;
    max-width: 240px;
    width: 33%;
}

.mailmag-txt p {
    line-height: 1.6;
    margin: 25px 0 10px;
    text-align: left;
}

.mailmag-txt a {
    border: 1px solid #9fa0a0;
    border-radius: 10px;
    box-sizing: border-box;
    display: inline-block;
    padding: 14px 20px 14px 0px;
    width: 225px;
    z-index: 99;
}

@media screen and (max-width: 769px) {}


/* 連絡情報 */

#contact {
    min-width: 1100px;
}

.contact-box {
    border: 1px solid #c9c4c4;
    box-sizing: border-box;
    flex: 0 1 546px;
    min-height: 138px;
    padding: 25px 0;
    margin-top: 7px;
}

.contact-box p {
    line-height: 1.6;
}

.contact-box .gray-link {
    height: 50px;
    width: 285px;
}

.contact-box.faq .gray-link {
    height: 25px;
    width: 200px;
}

.contact-box.phone .gray-link {
    padding-top: 9px;
    padding-left: 15px;
}

.contact-box.phone,
.contact-box.faq{
    padding: 25px 0 10px 0;
}

.contact-box.phone .gray-link::before {
    content: url(https://aokisadaharu.itembox.design/item/icon-tel-white.png);
    position: absolute;
    top: 8px;
    left: 17px;
}

.contact-box.mail a {
    padding: 15px 0 0 5px;
}

.contact-box.mail .gray-link::before {
    content: url(https://aokisadaharu.itembox.design/item/icon-mail-large.png);
    position: absolute;
    top: 10px;
    left: 10px;
}

.contact-box.faq .gray-link::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 12px;
    display: inline-block;/*忘れずに！*/
    width: 17px;
    background-size: contain;
    height: 16px;
    background-image: url(https://aokisadaharu.itembox.design/item/icon-faq.png);
}

.contact-box.faq a {
    padding-top: 6px;
    font-size: 14px;
}

@media screen and (max-width: 916px) {
    #contact {
        min-width: 100%;
    }
    .contact-box {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }
    .mailmag-after {
        display: none;
    }
}


/* ポリシー */

#policy {
    border-top: 1px solid #c9c4c4;
    margin-top: 40px;
    padding: 40px 0 25px;
}

#policy .center {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
}

#policy .flex>div {
    flex: 0 1 25%;
    max-width: 240px;
    min-width: 200px;
    line-height: 1.6;
    display: flex;
    justify-content: space-between;
    flex-flow: column;
}

#policy .flex>div p {
    text-align: left;
    font-size: 15px;
}

#policy .flex>div h5 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
}

#shipping table {
    text-align: center;
    margin: 10px auto;
    width: 100%;
}

#shipping caption {
    margin-bottom: 5px;
}

#shipping tbody * {
    border: 1px solid #000;
}

#policy th {
    background-color: #dddddd;
}

#policy td {
    background-color: #ffffff;
}

#policy .gray-link {
    max-width: 190px;
    width: 90%;
    margin: 10px auto 0;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
}

#policy .gray-link a {
    position: relative;
    right: 10px;
    font-size: 16px;
}

#policy .policy-txt {
    word-break: break-all;
}

@media screen and (max-width: 769px) {
    #policy {
        padding: 0;
    }
    #policy .flex>div {
        flex: inherit;
        display: block;
        max-width: 90%;
        margin: 0 auto 10px;
        padding-bottom: 10px;
        border-bottom: 1px dotted #c9c4c4;
    }
    #policy .gray-link {
        font-size: 10px;
        margin-bottom: 2vh
    }
    #policy .flex>div h5 {
        margin-bottom: 15px;
    }
    #policy .policy-txt {
        padding: 2vh 1vw;
    }
    #policy .policy-txt p,
    #policy .policy-txt span {
        padding: 10px;
    }
}


/* footer */

footer {
    border-top: 1px solid #c9c4c4;
}

.footer-mid-contents {
    max-width: 835px;
    padding: 30px 0;
    font-family: "FOT-UDKakugo_Large Pr6N";
}

.site-links li {
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
}

.site-links .white-arw::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    left: -10px;
    top: 5px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #ffffff;
}

.site-links li a {
    font-family: "FOT-UDKakugo_Large Pr6N";
    /* 調整追記 */
    color: #fff;
}

.category-links p:first-child {
    margin: 0 0 15px -25px;
}

.footer-btm {
    background: #000;
    height: auto;
    overflow: hidden;
    padding: 30px 0 0 30px;
    text-align: center;
}

.footer-btm .logo {
    vertical-align: top;
    float: left;
    padding: 0 30px 30px 0;
}

.footer-btm .li-link {
    display: inline-block;
    vertical-align: top;
    padding: 0 30px 30px 0;
    font-size: .75rem;
}

.footer-btm .li-link li {
    float: left;
    margin-right: 30px;
}

.footer-btm .li-link li a {
    display: block;
    color: #fff;
    padding: 2px 10px;
    opacity: .8;
}

.footer-btm .li-link li a::before {
    content: "";
    border: 5px solid transparent;
    border-left: 5px solid #fff;
    height: 0;
    width: 0;
    padding: 0;
    display: inline-block;
}

.footer-btm .li-link li a:hover {
    opacity: 1;
}

.footer-btm .li-social {
    color: #fff;
    font-family: "futura-pt", sans-serif;
    font-size: .75rem;
    display: inline-block;
    margin: -15px 15px auto auto;
}

.footer-btm .li-social a {
    display: inline-block;
    vertical-align: middle;
}

.footer-btm .li-social a img {
    padding: 10px;
}

.copy {
    color: #777;
    font-size: .75rem;
    text-align: center;
    clear: both;
    display: block;
    margin-top: 10px;
}

@media screen and (max-width: 999px) {
    .footer-btm {
        padding: 20px 0 0 0;
        text-align: center;
    }
    .footer-btm .logo {
        display: block;
        margin: 0 auto;
        float: none;
        padding: 0;
        max-width: 60vw;
    }
    .footer-btm .li-link {
        text-align: center;
        padding: 20px 0;
        width: 90%;
    }
    .footer-btm .li-link li {
        float: none;
        margin: 0 auto;
        padding: 15px 0;
        border-top: 1px dotted #575757;
    }
    .footer-btm .li-social {
        display: block;
    }
    .copy {
        font-size: .5rem;
    }
}

.system_footer {
    margin-top: 150px;
}

@media screen and (max-width: 769px) {
    .system_footer {
        margin-top: 80px;
    }
}


/*---------------------- 電話番号追加 ----------------------*/

header {
    min-width: 100%;
}

.header-right .shop-nav li:nth-of-type(4) {
    border: none;
}

.header-right .shop-nav .tel_text {
    font-size: 11px;
}

.header-right .shop-nav .telarea {
    padding-left: 20px;
}

header .tel-link::before {
    top: 17px;
    left: -25px!important;
}

.footertelset {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 15px 0 0;
}

.phone .footertelset,
.faq .footertelset{
     margin: 5px 0 0;
}

.phone .font15,
.faq .font15{
     font-size: 13px;
}


.footertelset .tel_text {
    font-size: 12px;
}

.footertelset .telno {
    margin: 0;
    font-size: 18px;
}

.mail .gray-link {
    margin: 10px auto;
}

.mail .footertelset {
    margin: 0;
}


/*---------------------------------------- 最終common追加 ----------------------------------------*/

@media screen and (max-width: 1500px) {
    #nav-drawer {
        position: relative;
    }
    /*チェックボックス等は非表示に*/
    .nav-unshown {
        display: none;
    }
    #nav-open {
        display: inline-block;
        width: 60px;
        height: 50px;
        vertical-align: middle;
        padding-top: 6px;
    }
    #nav-open span.top,
    #nav-open span.middle,
    #nav-open span.bottom {
        position: absolute;
        height: 3px;
        width: 32px;
        border-radius: 3px;
        background-color: #555;
        display: block;
        content: '';
        cursor: pointer;
        left: 13px;
        transition: background-color .5s ease-in, transform .5s ease-in, width .5s ease-in;
    }
    #nav-open span.middle {
        top: 14px
    }
    #nav-open span.bottom {
        top: 22px
    }
    #nav-open .menu_text {
        font-size: 10px;
        position: absolute;
        top: 32px;
        padding: 0;
        left: 9px;
    }
    #nav-close {
        display: inline-block;
        width: 60px;
        height: 50px;
        vertical-align: middle;
    }
    #nav-input:checked~#nav-open span.bottom {
        -webkit-transform: translateY(-15px) rotateZ(-45deg);
        -moz-transform: translateY(-15px) rotateZ(-45deg);
        -ms-transform: translateY(-15px) rotateZ(-45deg);
        -o-transform: translateY(-15px) rotateZ(-45deg);
        transform: translateY(-15px) rotateZ(-45deg);
        position: absolute;
        top: 30px;
    }
    #nav-input:checked~#nav-open span.top {
        -webkit-transform: translateY(0px) rotateZ(45deg);
        -moz-transform: translateY(0px) rotateZ(45deg);
        -ms-transform: translateY(0px) rotateZ(45deg);
        -o-transform: translateY(0px) rotateZ(45deg);
        transform: translateY(0px) rotateZ(45deg);
        position: absolute;
        top: 15px;
    }
    #nav-input:checked~#nav-open span.middle {
        width: 0;
    }
    /*閉じる用の薄黒カバー*/
    #nav-close {
        display: none;
        /*はじめは隠しておく*/
        position: fixed;
        z-index: 4;
        top: 80px;
        /*全体に広がるように*/
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        transition: .3s ease-in-out;
    }
    /*中身*/
    #nav-content {
        overflow: auto;
        position: fixed;
        top: 80px;
        right: 0;
        z-index: 5;
        /*最前面に*/
        width: 90%;
        /*右側に隙間を作る（閉じるカバーを表示）*/
        max-width: 300px;
        /*最大幅（調整してください）*/
        height: 100%;
        background: #FFF;
        /*背景色*/
        transition: .3s ease-in-out;
        /*滑らかに表示*/
        -webkit-transform: translateX(205%);
        transform: translateX(205%);
        /*左に隠しておく*/
    }
    /*チェックが入ったらもろもろ表示*/
    #nav-input:checked~#nav-close {
        display: block;
        /*カバーを表示*/
        opacity: .5;
    }
    #nav-input:checked~#nav-content {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        /*中身を表示（右へスライド）*/
        box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
    }
    #nav-content .subnv {
        padding: 20px;
    }
    #nav-content .subnv>li {
        margin-bottom: 15px;
        border: none;
    }
    #nav-content .subnv li a {
        color: #000;
        display: flex;
        align-items: center;
        justify-content: start;
        opacity: 1;
        font-size: 0.9rem;
    }
    #nav-content .subnv li a::before {
        content: '';
        height: 0;
        width: 0;
        display: block;
        margin-right: 10px;
        border-style: solid;
        border-width: 4px 0 4px 6px;
        border-color: transparent transparent transparent #000;
    }
    #nav-content form {
        border: 1px solid #c9c4c4;
        border-radius: 5px;
        margin: 20px auto;
        width: 70%;
    }
    #nav-content input[type="search"] {
        background: 95% no-repeat url(https://aokisadaharu.itembox.design/item/icon-search.png), #eeeeee;
        border: none;
        height: 43px;
        max-width: 235px;
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    .account-nav .btn_nv a {
        font-weight: bold;
        padding: 5%;
        position: relative;
        z-index: 99;
        cursor: pointer;
        transition-duration: 0.2s;
        border-top: 1px solid #707070;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #000;
        font-size: 1.2rem;
        font-family: "A-OTF A1 Mincho Std", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", 'Noto Sans Japanese', serif;
    }
    .account-nav .btn_nv:first-of-type a,
    .account-nav .btn_nv:last-of-type a {
        border-bottom: 1px solid #707070;
    }
    .account-nav .btn_nv:last-of-type a {
        margin-bottom: 120px;
    }
    .account-nav .btn_nv a .arrow03 {
        position: absolute;
        content: '';
        top: 20px;
        right: 15px;
        height: 0;
        width: 0;
        border-style: solid;
        border-width: 4px 0 4px 6px;
        border-color: transparent transparent transparent #000;
        z-index: 2;
        background-color: #FFF;
    }
    .header-left {
        display: flex;
        align-items: center;
    }
    .site-nav.pc,
    .shop-nav,
    .top-search.pc {
        display: none!important;
    }
}

@media screen and (min-width: 1500px) {
    .header-left {
        display: block;
        align-items: stretch;
        min-width: 1089px;
        position: relative;
    }
    .site-nav {
        position: absolute;
    }
}