/* web font
*/

:root {
    --main-theme-color: #a3721e;
    --ft-color1: #7d7d7d;
    --ft-color2: #424242;
    --ft-color3: #3d3735;
    --ft-color4: #353433;
    --main-column: 1100px;
}

* {
    box-sizing: border-box;
    color: #000;
	/*font-family: "Zen Kaku Gothic Antique";*/
	/*font-family: "Zen Old Mincho","Shippori Mincho B1", serif;*/
    font-family: "Shippori Mincho B1", serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body {
    background: #fff;
}
body.open {
    overflow: hidden;
}
a {
    text-decoration: none;
    transition-duration: .3s;
}
img {
    height: auto;
    max-width: 100%;
}
a:hover,
a:hover img {
    opacity: .8;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none;
    }
    .sp2 {
        display: block;
    }
}
.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* header */
.header {
    background: #131313;
    border-bottom: 1px solid #fff;
    margin: 0 auto;
    padding: 12px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}
.top .header {
    background: none;
    position: absolute;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 92%;
    max-width: var(--main-column);
}
.header-left {
    width: 175px;
}
.header-right {
    width: calc(100% - 175px)
}
.logo {
    display: block;
    width: 100%;
    max-width: 145px;
}
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-bg,
.cart-bg,
.search-bg {
    background: rgba(0, 0, 0, 0.6);
    display: none;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
}
.header-nav {
    margin-right: 45px;
}
.header-nav__list,
.header-info__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-nav__list li:not(:last-child) {
    margin-right: 45px;
}
.header-nav__list li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.header-info__list li:not(:last-child) {
    margin-right: 20px;
}
.header-info__list li button,
.header-info__list li a {
    cursor: pointer;
    display: block;
    position: relative;
}
.header-search__btn button,
.header-cart__btn button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    width: 18px;
}
.header-cart__btn button {
    width: 21px;
}
.header-mypage__btn {
    width: 17px;
}
.header-favorite__btn,
.header-guide__btn,
.header-cart__btn {
    width: 21px;
}
.header-search__btn:hover,
.header-favorite__btn:hover,
.header-guide__btn:hover,
.header-cart__btn:hover {
    cursor: pointer;
    opacity: .8;
}
.header-cart__num {
    background: #cd482d;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    height: 21px;
    position: absolute;
    top: -10px;
    right: -5px;
    width: 21px;

}
@media screen and (max-width: 968px) {
    .header-nav__list li:not(:last-child) {
        margin-right: 35px;
    }
    .header-info__list li:not(:last-child) {
        margin-right: 15px;
    }
    .header-nav__list li a {
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
    .header-left {
        width: 110px;
    }
    .header-right {
        width: calc(100% - 110px)
    }
    .logo {
        max-width: 90px;
    }
    .header-nav {
        background: #fff;
        height: 100%;
        margin-right: 0;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 80%;
        max-width: 300px;
        z-index: 999;
    }
    .header-nav.open {
        right: 0;
    }
    .header-nav__inner {
        padding: 60px 20px 0px;
		height: 100%;
        overflow-y: auto;
    }
    .header-nav__list {
        flex-direction: column;
        width: 100%;
    }
    .header-nav__list li {
        width: 100%;
    }
    .header-nav__list li:not(:last-child) {
        margin: 0 0 15px;
    }
    .header-nav__list li a {
        color: #000;
        font-size: 14px;
    }
    .header-mypage__btn,
    .header-guide__btn {
        display: none;
    }
    /* .hamburger */
    .header-menu {
        height: 20px;
        margin-left: 20px;
        position: relative;
        width: 25px;
        z-index: 9999;
    }
    .header-menu__trigger {
        cursor: pointer;
        height: 100%;
        position: relative;
        width: 100%;
    }
    .header-menu__trigger span {
        background-color: #fff;
        border-radius: 1px;
        height: 2px;
        position: absolute;
        left: 0;
        width: 100%;    
    }
    .header-menu.active .header-menu__trigger span {
        background: #000;
    }
    .header-menu__trigger,
    .header-menu__trigger span {
        box-sizing: border-box;
        display: inline-block;
        transition: all .5s;
    }
    .header-menu__trigger span:nth-of-type(1) {
        top: 0;
    }
    .header-menu__trigger span:nth-of-type(2) {
        top: 9px;
    }
    .header-menu__trigger span:nth-of-type(3) {
        bottom: 0;
    }
	.header-menu.active span:nth-of-type(2) {
        opacity: 0;
    }
    /* .header-menu.active span:nth-of-type(1) {
        top: -12px;
        transform: translateY(20px) rotate(45deg);
    }
    .header-menu.active span:nth-of-type(3) {
        bottom: -9px;
        transform: translateY(-20px) rotate(-45deg);
    } */
}


/* footer */
.footer {
    margin-top: auto;
    padding: 45px 0;
}
.footer-inner {
    margin: 0 auto;
    width: 95%;
    max-width: var(--main-column);
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0 0 65px;
}
.footer-left {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.footer-logo {
    display: block;
    margin-right: 35px;
    width: 75px;
}
.footer-social ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer-social ul li {
    width: 31px;
}
.footer-social ul li:not(:last-child) {
    margin-right: 15px;
}
.footer-widget {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    flex-wrap: wrap;
}
.footer-widget__item:not(:last-child) {
    margin-right: 35px;
}
.footer-widget__ttl {
    color: var(--main-theme-color);
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 20px;
}
.footer-widget__list li:not(:last-child) {
    margin: 0 0 12px;
}
.footer-widget__list li a {
    font-size: 14px;
}
.footer-widget__list.cr1 li a {
    color: var(--ft-color1);
}
.footer-widget__list.cr2 li a {
    color: var(--ft-color2);
}
.footer-info {
    border: 1px solid #b2b2b2;
    border-left: 0;
    border-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0;
}
.footer-info__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.footer-info__left ul {
    justify-content: flex-start;
}
.footer-info__right ul {
    justify-content: flex-end;
}
.footer-info__list li:not(:last-child) {
    margin-right: 15px;
}
.footer-info__left ul li a {
    color: var(--ft-color2);
    font-size: 16px;
}
.footer-info__right ul li a {
    color: var(--ft-color1);
    font-size: 15px;
}

.footer-link {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 45px 0 0;
}
.footer-link__card {
    border: 1px solid #b2b2b2;
    width: 50%;
}
.footer-link__card:nth-child(1) {
    border-right: 0;
}
.footer-link__card a {
    display: block;
    padding: 25px 0;
    text-align: center;
}
.footer-link__card a p {
    color: #878787;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
}
.footer-link__image {
    margin: 15px auto 0;
}
.footer-link__card:nth-child(1) .footer-link__image {
    width: 120px;
}
.footer-link__card:nth-child(2) .footer-link__image {
    width: 211px;
}
.copyright {
    background: #413f3b;
    padding: 15px 0;
    text-align: center;
}
.copyright p {
    color: #fff;
    font-size: 12px;
}
@media screen and (max-width: 968px) {
    .footer-info__list li:not(:last-child) {
        margin-right: 10px;
    }
    .footer-info__left ul li a {
        font-size: 15px;
    }
    .footer-info__right ul li a {
        font-size: 14px;
    }
}
@media screen and (max-width: 868px) {
    .footer-info__left,
    .footer-info__right {
        width: 100%;
    }
    .footer-info__right {
        margin: 15px 0 0;
    }
    .footer-info__left ul,
    .footer-info__right ul {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 768px) {
    .footer-widget__ttl {
        font-size: 16px;
    }
    .footer-widget__list li a {
        font-size: 14px;
    }
    .footer-info__list li:not(:last-child) {
        margin-right: 0;
    }
    .footer-info__list {
        gap: 15px;
    }
    .footer-link__card {
        width: 100%;
    }
    .footer-link__card:nth-child(1) {
        border-right: 1px solid #b2b2b2;
        border-bottom: 0;
    }
    .copyright p {
        font-size: 14px;
    }
}
@media screen and (max-width: 568px) {
    .footer-right {
        margin: 25px 0 0;
        width: 100%;
    }
    .footer-left,
    .footer-widget {
        justify-content: center;
        width: 100%;
    }
    .copyright p {
        font-size: 12px;
    }
}

.cartpanel {
    background: #fff;
    height: 100%;
    overflow-y: auto;
    padding: 20px 0 45px;
    position: fixed;
    right: -100%;
    top: 0;
    transition-duration: .3s;
    width: 100%;
    max-width: 610px;
    z-index: 999;
}
.cartpanel.open {
    right: 0;
}
.cartpanel-inner {
    margin: 0 auto;
    padding: 20px 35px 40px;
    position: relative;
    width: 100%;
}

.searchpanel {
    background: #fff;
    display: none;
    overflow-y: auto;
    padding: 35px 0;
    position: fixed;
    left: 0;
    top: 67px;
    width: 100%;
    z-index: 999;
}
.searchpanel-inner {
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
    width: 92%;
    max-width: 1200px;
}
.close-btn {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    font-size: 26px;
    outline: none;
    position: absolute;
    right: 30px;
    top: 0;
}
.searchpanel-body {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.searchpanel-left {
    width: 35%;
}
.searchpanel-right {
    width: 60%;
}

.searchpanel-form h2 {
    color: #353433;
    font-size: 18px;
    margin: 0 0 10px;
}
.searchpanel-label {
    position: relative;
}
.searchpanel-form input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #f3f3f3;
    border: 1px solid #d1d1d1;
    display: inline-block;
    font-size: 16px;
    outline: none;
    padding: 15px;
    width: 100%;
}
a.search-btn.search-url.searchpanel-btn {
    display: block;
    margin: auto;
    line-height: 0;
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 15px;
}
.searchpanel-tag {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 0;
}
.searchpanel-tag a {
    background: #f3f3f3;
    border: 1px solid #d1d1d1;
    display: inline-block;
    font-size: 15px;
    padding: 5px 15px;
}


.cartpanel-head {
    margin: 0 0 35px;
}
.cartpanel-head h2 {
    color: #353433;
    font-size: 20px;
}
.cartpanel-info {
    border-top: 1px solid #cecece;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    padding: 25px 0 0;
}
.cartpanel-quantity {
    color: #3d3735;
    font-size: 15px;
}
.cartpanel-total {
    color: #3d3735;
    font-size: 20px;
}
.cartpanel-total .txt {
    color: #3d3735;
    font-size: 15px;
}
.cartpanel-text p {
    color: #3d3735;
    font-size: 17px;
}
.cartpanel-btn {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 45px 0 0;
}
.cartpanel-btn a,
.cartpanel-btn button {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    height: 65px;
    text-align: center;
    width: 48.5%;
}
.cartpanel-btn a {
    background: #c39d60;
}
.cartpanel-btn a::before {
    background: url(https://gigaplus.makeshop.jp/ishidayagift/assets/images/icon-cart-w.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 19px;
    margin-right: 10px;
    width: 21px;
}
.cartpanel-btn button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #353432;
    border: 0;
}
.cartpanel .cart-detail-name a {
    font-size: 15px;
}
.cartpanel .cart-quantity__btn {
    background: none;
    border: 0;
}
/* cartpanel searchpanel */
@media screen and (max-width: 968px) {
    .searchpanel-tag a {
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
    .cartpanel-head h2 {
        font-size: 18px;
    }
    .searchpanel-form h2 {
        font-size: 16px;
    }
    .searchpanel-left {
        margin: 0 0 25px;
        width: 100%;
    }
    .searchpanel-right {
        width: 100%;
    }
    .cartpanel-btn a,
    .cartpanel-btn button {
        font-size: 14px;
        height: 50px;
        width: 48.5%;
    }
}

/* modal */
.post-notice {
    background: #fff;
    filter: drop-shadow(2px 4px 6px rgb(0 0 0 / 12%));
    height: max-content;
    margin: auto;
    padding: 20px 15px;
    position: fixed;
    top: 35%;
    left: 0;
    right: 0;
    width: 350px;
    z-index: 999;
}
.post-notice__body p {
    font-size: 14px;
    line-height: 1.8em;
    text-align: center;
}
.modal-quiet {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #333;
    border-radius: 50px;
    border: 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 13px;
    margin: 15px auto 0;
    padding: 15px 10px;
    transition-duration: .3s;
    width: 100%;
    max-width: 200px;
}
.modal-quiet:hover {
    opacity: .6;
}