/* font family
font-family: "Poppins", sans-serif;
font-family: "Zen Kaku Gothic New", sans-serif;
**************/

:root {
    --main-theme-color: #E77461;
    --main-text-color: #2B1C0D;
    --ft-poppin: "Poppins", sans-serif;
    --mian-column: 1436px;
    --sub-column: 1300px;
    --sub-column2: 1200px;
    --sub-column3: 1100px;
    --s-column: 860px;
}
@media screen and (max-width: 768px) {
    :root {
        --mian-column: calc(100% - 20px);
        --sub-column: calc(100% - 40px);
        --sub-column2: calc(100% - 50px);
        --sub-column3: calc(100% - 60px);
    }
}

* {
    box-sizing: border-box;
    color: var(--main-text-color);
    font-family: "Zen Kaku Gothic New", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.fixed {
    overflow: hidden;
}
a {
    text-decoration: none;
}
a:hover,
a:hover img {
    opacity: .8;
}
@media (any-hover: hover) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
.pc-inline {
    display: inline;
}
.sp-inline {
    display: none;
}
.pc2-inline {
    display: inline;
}
.sp2-inline {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block;
    }
    .pc-inline {
        display: none;
    }
    .sp-inline {
        display: inline;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none !important;
    }
    .sp2 {
        display: block;
    }
    .pc2-inline {
        display: none;
    }
    .sp2-inline {
        display: inline;
    }
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: clip;
    padding: 0;
}
.search {
    background: #fff;
}
.main {
    min-height: 75vh;
    width: 100%;
}
.main-inner {
    padding: 0 0 80px;
}
@media screen and (max-width: 768px) {
    .main-inner {
        padding: 0;
    }
}
.header {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, .08));
    height: 80px;
    margin: auto;
    padding: 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 10px 0;
    width: 95%;
    max-width: var(--mian-column);
}
.header-left {
    width: 200px;
}
.header-right {
    width: calc(100% - 200px);
}
.logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.logo img {
    width: 180px;
}
.nav-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header .flex-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header .flex-end li:not(:last-child) {
    margin: 0 20px 0 0;
}
.nav-linklist li a {
    font-size: 15px;
    font-weight: bold;
}
.nav-linklist li.contact a {
    background: #E77461;
    background: linear-gradient(180deg, rgba(231, 116, 97, 1) 0%, rgba(231, 116, 97, 1) 80%, rgba(213, 108, 91, 1) 100%);
    border-radius: 50px;
    color: #fff;
    display: block;
    padding: 6px 25px;
    text-align: center;
}

.service-link {
    border-left: 1px solid #ccc;
    display: none !important;
    padding-left: 25px;
}
.service-link li a {
    display: block;
    position: relative;
    text-align: center;
}
.service-link li a::before {
    display: block;
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 900;
}
.service-link li.register-link a::before {
    content: "\f234";
}
.service-link li.login-link a::before {
    content: "\f007";
}
.service-link li.cart-link a::before {
    content: "\f07a";
}
.service-link li.search-link a::before {
    content: "\f002";
}
.service-link li a span {
    font-size: 12px;
    font-weight: bold;
}
.service-link li a span.card-num {
    background: var(--main-theme-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 20%;
    width: 16px;
}

.header .sp-link {
    display: none;
    opacity: 0;
}
@media screen and (max-width: 1440px) {
    .header .flex-end li:not(:last-child) {
        margin: 0 16px 0 0;
    }
}
@media screen and (max-width: 1330px) {
    .header {
        height: 50px;
    }
    .header-inner {
        padding: 5px 0;
    }
    .header-left {
        max-width: max-content;
    }
    .logo img {
        width: 176px;
    }
    .header-right {
        max-width: max-content;
    }
    .nav {
        background: #fff;
        height: calc(100vh - 60px);
        overflow-y: auto;
        padding: 0 0 50px;
        position: fixed;
        top: -100vh;
        left: 0;
        transition-duration: .3s;
        width: 100%;
    }
    .nav.open {
        top: 50px;
    }
    .nav-inner {
        margin: 0 auto;
        padding: 25px 0;
        width: 100%;
    }
    .nav-inner,
    .header .flex-end {
        flex-direction: column-reverse;
    }
    .nav-linklist.flex-end {
        flex-direction: column;
        margin: 30px 0 0;
        width: 100%;
    }
    .nav-linklist.flex-end li {
        border-bottom: 1px solid #ccc;
        text-align: left;
        width: 100%;
        max-width: var(--sub-column3);
    }
    .header .nav-linklist.flex-end li:not(:last-child) {
        margin: 0;
    }
    .nav-linklist.flex-end li a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 15px;
        position: relative;
    }
    .nav-linklist.flex-end li a::before {
        content: "ー";
        font-size: 16px;
        font-weight: 600;
        margin-right: 5px;
    }
    .nav-linklist.flex-end li a::after {
        background: url(../images/icon-btn.svg) no-repeat;
        background-position: center;
        background-size: contain;
        content: "";
        display: block;
        height: 24px;
        margin: auto;
        position: absolute;
        right: 10px;
        top: 0;
        bottom: 0;
        width: 24px;
    }
    .nav-linklist.flex-end li.contact.sp {
        border: 3px solid #F0F0F0;
        border-radius: 12px;
        display: block;
        margin: 30px auto 0;
        max-width: 335px;
    }
    .nav-linklist.flex-end li.contact.pc {
        display: none;
    }
    .nav-linklist li.contact .tel-link a {
        background: none;
        color: var(--main-theme-color);
        padding: 0;
    }
    .nav-linklist li.contact .contact-card .mail-link a {
        justify-content: center;
        text-align: center;
    }
    .nav-linklist.flex-end li.contact.sp a::before,
    .nav-linklist.flex-end li.contact.sp a::after {
        display: none;
    }
    .nav-linklist.flex-end li.contact.sp .contact-card {
        margin: 0;
    }
    .header .service-link {
        border-left: 0;
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .header .nav-linklist + .service-link {
        max-width: var(--sub-column3);
    }
    .header .nav .service-link li {
        position: relative;
        text-align: center;
        width: 25%;
    }
    .header .nav .service-link li {
        border-right: 1px solid #ccc;
        margin: 0;
    }
    .header .nav .service-link li:first-child {
        border-left: 1px solid #ccc;
    }
    .header .nav .service-link li.login-link,
    .header .nav .service-link li.cart-link {
        display: none;
    }
    .header .sp-link {
        flex-direction: row;
        justify-content: flex-end;
    }
    .service-link li a span.card-num {
        right: -30%;
        bottom: 10%;
        top: inherit;
    }
    .nav .service-link li a span.card-num {
        margin: auto;
        right: -30%;
        left: 0;
        bottom: 39%;
        top: inherit;
    }
    .header-bg {
        background: rgba(0, 0, 0, 0.8);
        height: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
    }
    .menu {
        background: #F2EEE7;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        margin-right: 20px;
        position: relative;
        text-align: center;
        width: 40px;
        z-index: 10001;
    }
    .menu span {
        display: block;
    }
    .menu-trigger {
        position: relative;
        width: 16px;
        height: 12px;
        cursor: pointer;
        z-index: 3;
    }
    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #000;
        border-radius: 4px;
    }
    .menu-trigger, .menu-trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 6px;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: -2px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        top: -12px;
    }
    .menu-trigger.active span:nth-of-type(3) {
        bottom: -12px;
    }
    .menu-trigger span:nth-of-type(1) {
        animation: menu__bar01 .75s forwards;
    }
    @keyframes menu__bar01 {
        0% {
            transform: translateY(17px) rotate(45deg);
        }
        50% {
            transform: translateY(17px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .menu-trigger span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .menu-trigger span:nth-of-type(3) {
        animation: menu__bar03 .75s forwards;
    }
    @keyframes menu__bar03 {
        0% {
            transform: translateY(-17px) rotate(-45deg);
        }
        50% {
            transform: translateY(-17px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .menu-trigger.active span:nth-of-type(1) {
        animation: active-menu__bar01 .75s forwards;
    }
    @keyframes active-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(17px) rotate(0);
        }
        100% {
            transform: translateY(17px) rotate(45deg);
        }
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
        animation: active-menu__bar03 .75s forwards;
    }
    @keyframes active-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-17px) rotate(0);
        }
        100% {
            transform: translateY(-17px) rotate(-45deg);
        }
    }
    .header-nav__iconlink ul li.search {
        display: list-item;
    }
    .toggle-form {
        background: #fff;
        box-sizing: border-box;
        display: none;
        padding: 8px;
        position: fixed;
        top: 106px;
        left: 0;
        width: 100%;
        z-index: 9999;
    }
    .header-nav__inner .header-nav__linklist {
        display: block;
        margin: 0 0 15px;
    }
    .header-nav__inner .header-nav__linklist ul {
        margin: 0;
        padding: 0;
    }
    .header-nav__inner .header-nav__linklist ul li {
        list-style: none;
    }
    .header-nav__inner .header-nav__linklist ul li:not(:last-child) {
        margin: 0 0 10px;
    }
    .header-nav__inner .header-nav__linklist ul li a {
        box-sizing: border-box;
        display: flex;
        align-items: center;
        font-size: 14px;
        padding: 5px 15px;
        text-decoration: none;
    }
    .header-nav__inner .header-nav__linklist ul li a i {
        font-size: 20px;
        margin-right: 10px;
    }
    .header-nav__account {
        background: #dddddd;
        box-sizing: border-box;
        display: block;
        margin: 0 auto 20px;
        padding: 10px;
        width: calc(100% - 30px);
    }
    .header-nav__account ul {
        margin: 0;
        padding: 0;
    }
    .header-nav__account ul li {
        list-style: none;
    }
    .header-nav__account ul li:not(:last-child) {
        margin: 0 0 10px;
    }
    .header-nav__account ul li a {
        box-sizing: border-box;
        display: block;
        font-size: 14px;
        padding: 10px;
        text-decoration: none;
        text-align: center;
    }
    .header-nav__account ul li.login a {
        background: #000;
        color: #fff;
    }
    .header-nav__account ul li.register a {
        background: #fff;
        border: 1px solid #000;
    }
}
@media screen and (max-width: 768px) {
    .nav-linklist.flex-end li.contact.sp {
        max-width: var(--sub-column);
    }
}

.footer img {
    max-width: 100%;
}
.footer {
    background: #F0F0F0;
    display: block;
    padding: 60px 0 0;
    position: relative;
    width: 100%;
}
.footer-inner {
    margin: 0 auto;
    width: 92%;
    max-width: var(--sub-column2);
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 60px;
}
.footer-left {
    width: 250px;
}
.footer-left .footer-info {
    margin: 20px 0 15px;
}
.footer-left .footer-info p {
    font-size: 16px;
    font-weight: 500;
    line-height: 25.6px;
}
.footer-link a {
    background: #E8340C;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 10px;
    text-align: center;
}
.footer-link a::before {
    background: url(../images/icon-link.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 15px;
    margin-right: 8px;
    width: 15px;
}
.footer-right {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: calc(100% - 350px);
}
.footer-column {
    width: calc((100% - 340px) / 2);
}
.footer-column ul li.sp-link {
    display: none;
}
.footer-column ul li:not(:last-child) {
    margin: 0 0 12px;
}
.footer-column ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    position: relative;
}
.footer-column ul li a::before {
    content: "ー";
    font-size: 15px;
    font-weight: 600;
    margin-right: 5px;
}
.footer-contact {
    border: 3px solid #fff;
    border-radius: 12px;
    padding: 27px 0;
    width: 340px;
}
.footer_bottom {
    background: #2B1C0D;
}
.footer_policy:nth-child(n+2) {
    margin-left: 20px;
}

.footer_copyright, .footer_policy {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.03em;
    opacity: 0.5;
    color: #FFF;
    line-height: 2;
}
.footer_bottom-inner {
    width: 92%;
    max-width: var(--sub-column2);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    align-items: center;
}

@media screen and (max-width: 1068px) {
    .footer-left {
        width: 220px;
    }
    .footer-right {
        width: calc(100% - 250px);
    }
    .footer-column {
        width: calc((100% - 300px) / 2);
    }
    .footer-contact {
        width: 300px;
    }
}
@media screen and (max-width: 968px) {
    .footer-left {
        margin: 0 0 25px;
        width: 100%;
        max-width: 300px;
    }
    .footer-right {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .footer-inner {
        width: 95%;
    }
    .footer-left {
        margin: 0 auto;
    }
    .footer-right {
        flex-direction: column;
    }
    .footer-left .f-logo {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .footer-column,
    .footer-contact {
        width: 100%;
    }
    .footer-contact {
        margin: 25px 0 0;
    }
    .footer-column ul li {
        border-bottom: 1px solid #CCCCCC;
        padding: 15px;
    }
    .footer-column ul li:last-child {
        border-bottom: 0;
    }
    .footer-column ul li.sp-link {
        display: block;
    }
    .footer-column ul li:first-child {
        border-top: 1px solid #CCCCCC;
    }
    .footer-column ul li:not(:last-child) {
        margin: 0;
    }
    .footer-column ul li::before,
    .footer-column ul li a {
        font-size: 16px;
    }
    .footer-column ul li a::after {
        background: url(../images/icon-btn.svg) no-repeat;
        background-position: center;
        background-size: contain;
        content: "";
        display: block;
        height: 20px;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 20px;
    }
    .footer_bottom-inner {
        display: inherit;
    }
}
/* pagetop */
.pagetop {
    display: none;
    line-height: 0;
    height: 60px;
    position: fixed;
    bottom: 10%;
    right: 50px;
    width: 60px;
    z-index: 3;
}
@media screen and (max-width: 768px) {
    .pagetop {
        height: 46px;
        right: 12px;
        width: 46px;
    }
}