/* web font
*/

:root {
    --main-theme-color: #D4161A;
    --accent-color: #c39d60;
    --base-bg: #f9f6f1;
    --foot-bg: #f1ede7;
    --ft-color1: #424242;
    --ft-color2: #3d3735;
    --ft-color3: #7d7d7d;
    --main-column: 1200px;
    --ft-noto: "Noto Sans JP", sans-serif;
}

* {
    box-sizing: border-box;
    color: #424242;
    font-family: "Shippori Mincho", serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body {
    background: #fafafa;
}
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%;
}

/* header info */
.headerinfo {
    background: #3d3d3d;
    padding: 6px 0;
    text-align: center;
}
.headerinfo-sliders {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 95%;
    max-width: 560px;
}
.headerinfo a,
.headerinfo p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.swiper-simple-prev,
.swiper-simple-next {
    background: #3d3d3d;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    margin: auto;
    padding: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.swiper-simple-prev {
    left: 0;
}
.swiper-simple-next {
    right: 0;
}

/* header */
.header {
    margin: 0 auto;
    padding: 35px 0;
    width: 100%;
    z-index: 999;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 92%;
    max-width: var(--main-column);
}
.header-left,
.header-right {
    width: 50%;
}
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-search {
    width: 100%;
}
.header-search__form {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.search-form__item {
    position: relative;
    width: 60%;
}
.search-form__item input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #f3f3f3;
    border: 1px solid #d1d1d1;
    border-radius: 3px;
    display: block;
    font-family: var(--ft-noto);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    padding: 10px 10px 10px 45px;
    width: 100%;
}
.search-form__item a {
    display: block;
    height: 19px;
    margin: auto;
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 19px;
}
.panel-nav {
    display: none;
}
.header-bg,
.cart-bg {
    background: rgba(0, 0, 0, 0.6);
    display: none;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}
@media screen and (max-width: 968px) {
    .panel-nav {
        background: #fff;
        display: block;
        height: 100%;
        overflow-y: auto;
        padding: 100px 0;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 80%;
        max-width: 300px;
        z-index: 9999;
    }
    .panel-nav.open {
        right: 0;
    }
    .panel-nav .nav-links {
        display: block;
    }
    .panel-nav .nav-links .nav-link {
        width: 100%;
    }
    .panel-nav .nav-links .nav-link:not(:last-child) {
        margin: 0 0 15px;
    }
    .header-left {
        width: 35%;
    }
    .header-right {
        width: 50%;
    }
    .header-search {
        width: calc(100% - 50px);
    }
    .search-form__item {
        width: 100%;
    }
    .nav-link a {
        display: block;
        position: relative;
    }
    .nav-link .cart-num {
        background: #c95050;
        border-radius: 50%;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        margin: auto;
        padding: 0 0 2px;
        position: absolute;
        top: -8px;
        right: -15px;
        left: 0;
        width: 18px;
    }
    /* hamberger */
    .header-menu {
        display: block;
        height: 25px;
        margin-left: 20px;
        position: relative;
        text-align: center;
        width: 30px;
        z-index: 999999;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        position: relative;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 3;
    }
    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #545454;
        border-radius: 4px;
    }
    .header-menu___trigger, .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .header-menu___trigger span:nth-of-type(1) {
        top: 0;
    }
    .header-menu___trigger span:nth-of-type(2) {
        top: 12px;
    }
    .header-menu___trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        transform: translateY(20px) rotate(45deg);
        top: -10px;
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        transform: translateY(-20px) rotate(-45deg);
        bottom: -6px;
    }
}
@media screen and (max-width: 568px) {
    .header-left {
        width: 70%;
    }
    .header-search {
        display: none;
    }
}

/* nav */
.nav {
    border: 1px solid #e4e4e4;
    border-left: 0;
    border-right: 0;
    height: 70px;
    margin: 0 0 25px;
    position: relative;
}
.nav-inner {
    margin: 0 auto;
    width: 95%;
    max-width: var(--main-column);
}
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.nav-left {
    display: flex;
    justify-content: center;
    align-items: center;
}
.megamenu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}
.megamenu-btn.active::after {
    background: #1a1a1a;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
}
.nav-textlink {
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    padding: 0 25px;
}
.megamenu-ttl {
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    padding: 0 25px;
}
.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.nav-link {
    display: inline-block;
    padding: 10px 0;
    text-align: center;
}
.nav-link:not(:last-child) {
    margin-right: 25px;
}
.nav-link img {
    width: 20px;
}
.nav-link__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 33px;
}
.nav-link p {
    color: var(--ft-color3);
    font-family: var(--ft-noto);
    font-size: 14px;
    font-weight: 400;
}
.nav-link button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    position: relative;
    transition-duration: .3s;
}
.nav-link button:hover {
    opacity: .8;
}
.nav-link button .cart-num {
    background: #c95050;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    padding: 0 0 2px;
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
}
@media screen and (max-width: 968px) {
    .megamenu-ttl {
        font-size: 16px;
        padding: 0 20px;
    }
    .nav-link:not(:last-child) {
        margin-right: 20px;
    }
    .nav-link p {
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
    .nav {
        height: 55px;
    }
    .nav-inner,
    .nav-flex {
        height: 100%;
    }
    .nav-right .nav-link:not(:last-child) {
        display: none;
    }
    .nav-right .nav-link button img {
        width: 20px;
    }
    .nav-right .nav-link p {
        font-size: 12px;
    }
    .nav-link__icon {
        height: 19px;
    }
    .nav-link button .cart-num {
        top: -5px;
    }
}

/* footer */
.footer {
    background-image: url(../images/footer-bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    margin-top: auto;
    padding: 65px 0;
}
.footer-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1400px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0 0 65px;
}
.footer-left {
    width: 25%;
}
.footer-logo {
    margin: 0 0 25px;
}
.footer-address {
    margin: 20px 0 25px;
}
.footer-address p {
    color: #fff;
    font-family: var(--ft-noto);
    font-size: 16px;
}
.footer-address p:not(:last-child) {
    margin: 0 0 20px;
}
.footer-social ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer-social ul li:not(:last-child) {
    margin-right: 15px;
}
.footer-right {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 75%;
}
.footer-widget {
    width: 23%;
}
.footer-widget__link li:not(:last-child) {
    margin: 0 0 20px;
}
.footer-widget__link li a {
    color: #fff;
    font-family: var(--ft-noto);
    font-size: 16px;
    font-weight: 500;
}
.footer-widget__link.cr-1 li a {
    color: #fff;
}
.footer-widget__link.cr-2 li a {
    color: #b78939;
}

.footer-bottom {
    border: 1px solid #fff;
    border-left: 0;
    border-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
}
.footer-bottom__link {
    display: flex;
    align-items: baseline;
}
.footer-bottom__left ul {
    justify-content: flex-start;
}
.footer-bottom__right ul {
    justify-content: flex-end;
}
.footer-bottom__link li:not(:last-child) {
    margin-right: 35px;
}
.footer-bottom__left ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.footer-bottom__right ul li a {
    color: #fff;
    font-size: 14px;
}
@media screen and (max-width: 1168px) {
    .footer-bottom__link li:not(:last-child) {
        margin-right: 20px;
    }
    .footer-address p,
    .footer-bottom__left ul li a {
        font-size: 16px;
    }
    .footer-bottom__right ul li a {
        font-size: 14px;
    }
}
@media screen and (max-width: 1000px) {
    .footer-bottom__left,
    .footer-bottom__right {
        width: 100%;
    }
    .footer-bottom__left {
        margin: 0 0 15px;
    }
    .footer-bottom__right ul {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 968px) {
    .footer-left {
        margin: 0 0 25px;
        width: 100%;
    }
    .footer-logo {
        width: 80%;
    }
    .footer-right {
        justify-content: center;
        width: 100%;
    }
    .footer-widget:not(:last-child) {
        margin-right: 40px;
    }
    .footer-bottom__left ul,
    .footer-bottom__right ul {
        flex-wrap: wrap;
    }
    .footer-bottom__link li {
        width: 100%;
    }
    .footer-bottom__link li:not(:last-child) {
        margin-right: 0;
    }
    .footer-bottom__link li a {
        display: block;
        padding: 10px 0;
    }
    .footer-bottom__left ul li a {
        font-size: 18px;
    }
    .footer-bottom__right ul li a {
        font-size: 15px;
    }
}
@media screen and (max-width: 768px) {
    .footer-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .footer-widget {
        width: 100%;
    }
}
@media screen and (max-width: 568px) {
    .footer {
        background-position: center bottom;
        background-size: 322%;
        background-color: #000;
        padding-bottom: 35px;
    }
    .footer-flex {
        padding-bottom: 0;
    }
    .footer-right {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-widget:nth-child(1) {
        border-top: 1px solid #fff;
        margin: 20px 0 10px;
        padding: 20px 0 0;
    }
    .footer-widget:nth-child(1) .footer-widget__link.cr-1 li a {
        font-weight: 700;
    }
    .footer-widget:nth-child(2) {
        border-bottom: 1px solid #fff;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .footer-widget:nth-child(3) {
        margin: 0 0 15px;
    }
    .footer-widget:nth-child(2) .footer-widget__link.cr-2 {
        padding-left: 5px;
    }
    .footer-widget:nth-child(2) .footer-widget__link.cr-2 li a::before {
        background-image: url(../images/icon-arrow-r.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        content: "";
        display: inline-block;
        height: 10px;
        margin-right: 8px;
        width: 6px;
    }
    .footer-widget__link li:not(:last-child) {
        margin: 0 0 15px;
    }
    .copyright p {
        font-size: 10px;
    }
    .footer-widget__link li a {
        font-size: 14px;
    }
}

.copyright {
    background: #413f3b;
    padding: 15px 0;
    text-align: center;
}
.copyright p {
    color: #fff;
    font-family: var(--ft-noto);
    font-size: 12px;
}



.megamenu-panel {
    background: #f9f6f1;
    display: none;
    height: auto;
    max-height: 70vh;
    overflow-y: auto;
    padding: 45px 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    width: 100%;
    z-index: 99;
}
.megamenu-panel__inner {
    margin: 0 auto;
    position: relative;
    width: 92%;
    max-width: var(--main-column);
}
.close-btn {
    cursor: pointer;
    font-size: 27px;
    position: absolute;
    right: 0;
    top: -25px;
}
.megamenu-panel__flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.megamenu-panel__flex.direction {
    flex-direction: row-reverse;
}
.megamenu-panel__nav {
    border-right: 1px solid #b99b66;
    padding-right: 75px;
    width: 30%;
}
.megamenu-panel__nav.pd25 {
    padding-top: 25px;
}
.megamenu-panel__content {
    padding-left: 75px;
    width: 70%;
}
.megamenu-panel__flex.direction .megamenu-panel__nav {
    border-left: 1px solid #b99b66;
    border-right: 0;
    padding-right: 0;
    padding-left: 75px;
}
.megamenu-panel__flex.direction .megamenu-panel__content {
    padding-left: 0;
    padding-right: 75px;
}

.megamenu-content__block:not(:last-child) {
    margin: 0 0 35px;
}
.megamenu-content__ttl {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px;
}
.megamenu-content__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.megamenu-content__image,
.megamenu-column__image {
    line-height: 0;
}
.megamenu-content__text {
    margin: 8px 0 0;
}
.megamenu-content__text p {
    font-size: 14px;
    font-weight: 500;
}
.megamenu-column__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.megamenu-nav__widget:not(:last-child) {
    margin: 0 0 20px;
}
.megamenu-widget__ttl {
    border-bottom: 1px solid #b99b66;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px;
    padding: 0 0 15px;
}
.megamenu-widget__linktxt {
    font-size: 14px;
    font-weight: 500;
}
.megamenu-widget__link li:not(:last-child) {
    margin: 0 0 10px;
}
.megamenu-widget__link li a {
    color: var(--ft-color3);
    font-size: 14px;
    font-weight: 500;
}

.more-filter {
    background: #fff;
    background-image: url(../images/icon-filter.png);
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 18px 15px;
    margin: 15px 0 0;
    width: 100%;
}
.more-filter a {
    color: var(--ft-color3);
    display: block;
    font-size: 15px;
    font-weight: 500;
    padding: 10px;
}

.megamenu-columnn_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.panel-column__widget:not(:last-child) {
    margin: 0 0 15px;
}
.panel-widget__ttl {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 20px;
}
.panel-widget__link li:not(:last-child) {
    margin: 0 0 15px;
}
.panel-widget__link li a {
    color: var(--ft-color3);
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .megamenu-panel {
        padding: 35px 0;
        top: 55px;
    }
    .megamenu-panel__nav {
        border-right: 0;
        padding-right: 0;
        padding: 0 0 25px;
        width: 100%;
    }
    .megamenu-panel__nav.pd25 {
        padding-top: 0;
    }
    .megamenu-panel__content {
        padding-left: 0;
        width: 100%;
    }
    .megamenu-panel__flex.direction .megamenu-panel__nav {
        border-left: 0;
        margin: 25px 0 0;
        padding-left: 0;
    }
    .megamenu-panel__flex.direction .megamenu-panel__content {
        padding-left: 0;
        padding-right: 0;
    }
    .megamenu-columnn_grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .panel-column__widget:not(:last-child) {
        margin: 0 0 15px;
    }
    .megamenu-panel__flex.direction {
        flex-direction: column-reverse;
    }
    .megamenu-panel__column:nth-child(1) {
        order: 4;
    }
    .megamenu-panel__column:nth-child(2) {
        order: 1;
    }
    .megamenu-panel__column:nth-child(3) {
        order: 2;
    }
    .megamenu-panel__column:nth-child(4) {
        order: 3;
    }

}



.cartpanel {
    background: #fafafa;
    height: 100%;
    overflow-y: auto;
    position: fixed;
    right: -100%;
    top: 0;
    transition-duration: .3s;
    width: 90%;
    max-width: 500px;
    z-index: 9999;
}
.cartpanel.open {
    right: 0;
}
.cartpanel-inner {
    padding: 45px 35px;
}
.cartpanel-close {
    cursor: pointer;
    font-size: 26px;
    position: absolute;
    right: 20px;
    top: 44px;
}
.cartpanel-head {
    margin: 0 0 45px;
}
.cartpanel-head h2 {
    font-size: 26px;
    font-weight: 500;
}
.cartpanel-items {
    border-bottom: 1px solid #e4e4e4;
    margin: 0 0 35px;
    padding: 0 0 35px;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.cart-item:not(:last-child) {
    margin: 0 0 35px;
}
.cart-item__image {
    width: 30%;
}
.cart-item__text {
    width: 65%;
}
.cart-item__name {
    font-size: 15px;
    font-weight: 500;
}
.cart-item__price {
    font-size: 14px;
    margin: 10px 0 0;
}
.cart-item__price .tax,
.cart-item__price .yen {
    font-size: 85%;
}
.cart-item__form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0 0;
}
.quantity-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 70%;
}
.delete-wrapper {
    width: 25%;
}

.cart-item__quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 10px;
    width: 84px;
}
.cart-item__quantity input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    height: 25px;
    text-align: center;
    width: 25px;
}
.quantity-btn {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    height: 25px;
    text-align: center;
    width: 25px;
}
.quantity-btn.plus {
    font-size: 16px;
}
.quantity-btn.disabled {
    background: #eee;
    cursor: no-drop;
}
.update-btn {
    opacity: 0;
    transition-duration: .3s;
}
.update-btn:hover {
    opacity: 1;
}
.delete-wrapper {
    text-align: right;
}
.update-btn,
.delete-btn a {
    border-bottom: 1px solid #424242;
    font-size: 14px;
}

.cartpanel-total {
    margin: 0 0 45px;
}
.cartpanel-total__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cartpanel-total__list dt p {
    font-size: 16px;
    font-weight: 500;
}
.cartpanel-total__list dt .symbol {
    font-size: 80%;
}
.cartpanel-total__list dt .num {
    font-size: 112%;
}

.cartpanel-total__list dd p {
    font-size: 16px;
    font-weight: 500;
}
.cartpanel-total__list dd p .price {
    font-size: 140%;
}


.cartpanel .cartpanel-btn {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 15px;
}
.cartpanel .cart-btn {
    width: 100%;
}
.cartpanel .cart-btn a {
    border: 1px solid #424242;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    text-align: center;
    padding: 15px 10px;
    width: 100%;
}
.cartpanel .cart-back__btn a {
    background: #fff;
    color: #424242;
    font-size: 16px;
    font-weight: 500;
}
.cartpanel .cart-submit__btn a {
    background: #424242;
    color: #fff;
}
.cartpanel .cart-submit__btn a img {
    margin-right: 8px;
}


.cartpanel-information {
    margin: 0 0 25px;
}
.freeshipping-info {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 8px;
}
.freeshipping-msg,
.freeshipping-msg span {
    color: #C56767;
    font-weight: 500;
}
.freeshipping-msg {
    font-size: 14px;
}
.freeshipping-info .price,
.freeshipping-msg .price {
    font-size: 120%;
}
.freeshipping-info .tax,
.freeshipping-msg .tax {
    font-size: 75%;
}
@media screen and (max-width: 768px) {
    .cartpanel-head h2 {
        font-size: 24px;
    }
}    
@media screen and (max-width: 768px) {
    .cartpanel-head h2 {
        font-size: 21px;
    }
    .cart-btn {
        width: 100%;
    }
}

/* 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: 9999;
}
.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;
}