@charset "utf-8";
/*既存スタイル上書き*/
html body a:hover {
    opacity: 1;
}

.section p {
    margin: 0;
}

.section dl {
    margin: 0;
}

.section a {
    color: #52433d;
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
}

@media (min-width: 769px) {
    a {
        transition: all .2s ease-in-out;
    }

    a:hover {
        opacity: 0.6 !important;
    }
}

/*=============================================*/
.section {
    width: 100%;
    background: #f9f4ea;
    padding: 120px 0;
    color: #52433d;
}

.section.section--bg-white {
    background: #fff;
}

.section__inner {
    max-width: 1050px;
    margin: 0 auto;
}

.heading {
    text-align: center;
}

.heading__main {
    font-family: "A1明朝", "A1 Mincho", serif !important;
    font-size: 40px;
    color: #52433d;
    letter-spacing: 0.12em;
}

.heading__sub {
    font-size: 16px;
    color: #b4a581;
    margin-top: 20px;
    letter-spacing: 0.3em;
}

.card-wrap {
    margin: 0 auto;
    display: flex;
    /*justify-content: space-between;*/
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-bottom: -15px;
}

.heading + .card-wrap {
    margin-top: 25px;
}

@media only screen and (max-width: 767px) {
    .heading__main {
        font-size: 25px;
    }

    .heading__sub {
        font-size: 12px;
    }

    .section {
        padding: 20px 0 30px;
    }

    .section__inner {
        padding: 20px;
    }

    .card-wrap {
        margin-right: -10px;
        margin-bottom: -10px;

    }

    .heading + .card-wrap {
        margin-top: 25px;
    }
}

/*============================================*/
/*新着お知らせ*/
.sction--notice {
    padding: 0;
    background: #efeae0;
}

.notice {
    background: #efeae0;
}

.notice__link {
    display: block;
}

.notice__list {
    display: flex;
    align-items: center;
    margin: 0;
}

.notice__date {
    width: 135px;
    font-size: 16px;
    color: #6b5d56;
    text-align: center;
    padding: 18px;
    white-space: nowrap;

}

.notice__date:after {
    content: '';
    height: 16px;
    width: 1px;
    display: inline-block;
    background: #d5cec4;
    margin-left: 15px;
}

.notice__text {
    width: 100%;
    font-size: 14px;
    color: #52433d;
    padding: 18px 50px 18px 18px;
    position: relative;
}

.notice__text::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto 0;
    width: 26px;
    height: 26px;
    background: url(../img/icon-circle-arrow_02.png) no-repeat;
    background-size: contain;
}

@media only screen and (max-width: 767px) {
    .notice__date {
        font-size: 12px;
        white-space: nowrap;
        padding: 10px;
    }

    .notice__text {
        font-size: 12px;
        white-space: nowrap;
        padding: 10px;
    }

    .sction--notice .section__inner {
        padding: 0;
    }

    .notice__list {
        overflow: hidden;
    }
}

/*============================================*/
/*slider*/
.section--mv {
    padding: 0;
}

.mv-slider {

}

.mv-slider__item {
    position: relative;
    max-width: 500px;
}

.mv-slider__text {
    font-size: 18px;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    opacity: .8
}

.mv-slider__arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 1;
    cursor: pointer;
}

.mv-slider__arrow--prev {
    left: 10px;
}

.mv-slider__arrow--next {
    right: 10px;
}

@media only screen and (max-width: 767px) {
    .mv-slider__text {
        font-size: 12px;
    }

    .mv-slider__arrow {
        width: 35px;
        height: 35px;
    }

    .mv-slider__arrow--prev {
        left: 3px;
    }

    .mv-slider__arrow--next {
        right: 3px;
    }

    .mv-slider__text {
        width: 93%;
        padding: 14px;
    }

    .slick-slider * {
        outline: none;
    }
}

/*============================================*/
/*おすすめ商品*/

.recommend-card {
    width: 250px;
    background: #fff;
    border-radius: 10px;
    /*color: #52433d;*/
    overflow: hidden;
    margin-right: 15px;
    margin-bottom: 15px;
    z-index: 1;
}

/*
.recommend-card + .recommend-card {
    margin-left: 16px;
}
*/

.recommend-card__link {

}

.recommend-card__head {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.recommend-card__body {
    padding: 20px;
}

.recommend-card__schedule {
    font-size: 13px;
    color: #fff;
    background: #928464;
    text-align: center;
    line-height: 40px;
}
.recommend-card:nth-child(1) .recommend-card__schedule {
  background: #d67e3b;
}
.recommend-card:nth-child(2) .recommend-card__schedule {
  background: #e31f2f;
}
.recommend-card:nth-child(3) .recommend-card__schedule {
  background: #e4af2c;
}
.recommend-card:nth-child(4) .recommend-card__schedule {
  background: #c13729;
}

.recommend-card.recommend-card--color1 .recommend-card__schedule {
    background: #e31f2f;
}

.recommend-card.recommend-card--color2 .recommend-card__schedule {
    background: #e4af2c;
}

.recommend-card.recommend-card--color3 .recommend-card__schedule {
    background: #d67e3b;
}

.recommend-card.recommend-card--color4 .recommend-card__schedule {
    background: #c13729;
}

.recommend-card__image {
    width: 100%;
    height: 250px;
}
.recommend-card__image img {
  width: 100%;
  height: auto;
}

.recommend-card__title {
    font-size: 16px;
    font-weight: bold;
}

.recommend-card__price {
    font-size: 14px;
    margin: 0 0 8px;
}

.recommend-card__description {
    font-size: 12px;
    padding: 8px 0 0;
}

.recommend-card__price + .recommend-card__description {
    border-top: 1px solid #d9d2c0;
}

@media only screen and (max-width: 767px) {
    .recommend-card {
        width: calc(50% - 10px);
        margin-right: 10px;
        margin-bottom: 10px;
        border-radius: 5px;

    }

    .recommend-card__schedule {
        font-size: 10px;
        line-height: 30px;
    }

    .recommend-card__image {
      height: auto;
    }

    .recommend-card__title {
        font-size: 14px;
        font-weight: bold;
    }

    .recommend-card__price {
        font-size: 11px;
    }

    .recommend-card__description {
        font-size: 11px;
        margin-top: 5px;
        padding-top: 5px;
    }

    .recommend-card__body {
        padding: 7px 10px;
    }

    .recommend-card__image img {
        width: 100%;
        height: auto;
    }
}

/*============================================*/
/*文明堂のお菓子*/

.catecory-card {
    width: 250px;
    background: #f9f4ea;
    border-radius: 10px;
    /*color: #52433d;*/
    overflow: hidden;
    margin-right: 15px;
    margin-bottom: 15px;
    z-index: 1;
}

.catecory-card__link {

}

.catecory-card__head {

}

.catecory-card__body {
    text-align: center;
    padding: 15px 15px 20px;
}

.catecory-card__image {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.catecory-card__caption {
    font-size: 13px;
}

.catecory-card__title {
    font-size: 16px;
    font-weight: bold;
}

.catecory-card__item-count {
    font-size: 12px;
    color: #fff;
    border-radius: 8px;
    background: #928464;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 6px;
}
.catecory-card__item-count p {
    line-height: 1em;
}

@media only screen and (max-width: 767px) {
    .catecory-card {
        width: 100%;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    a.catecory-card__link {
        display: flex;
    }

    .catecory-card__image {
        width: 100px;

    }

    .catecory-card__image img {
        width: 100%;
        height: auto;
    }

    .catecory-card__body {
        padding: 15px 20px;
        width: 100%;
        text-align: left;
    }

    .catecory-card__caption {
        font-size: 12px;
    }

    .catecory-card__title {
        font-size: 15px;
        font-weight: bold;
    }

    .catecory-card__item-count {
        padding: 3.5px 10px;
        margin-top: 5px;
        border-radius: 5px;
    }

}

@media only screen and (max-width: 374px) {
    .catecory-card__body {
        padding: 15px 0 15px 15px;
    }
    .catecory-card__title {
        font-size: 13px;
    }
    .catecory-card__caption {
        font-size: 10px;
    }
}

/*============================================*/
/*用途から探す*/
.application-card {
    background: #fff;
    width: 339px;
    height: 240px;
    position: relative;
    margin-right: 15px;
    margin-bottom: 15px;
}

.application-card::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transform: translate(0, -15px);
}

.application-card:nth-child(1)::before {
    width: 60px;
    height: 62px;
    background: url("../img/application_img_01.png");
    background-size: contain;
}

.application-card:nth-child(2)::before {
    width: 73px;
    height: 65px;
    background: url("../img/application_img_02.png");
    background-size: contain;
}

.application-card:nth-child(3)::before {
    width: 74px;
    height: 57px;
    background: url("../img/application_img_03.png");
    background-size: contain;
}

.application-card:nth-child(4)::before {
    width: 56px;
    height: 68px;
    background: url("../img/application_img_04.png");
    background-size: contain;
}

.application-card:nth-child(5)::before {
    width: 60px;
    height: 60px;
    background: url("../img/application_img_05.png");
    background-size: contain;
}

.application-card:nth-child(6)::before {
    width: 65px;
    height: 70px;
    background: url("../img/application_img_06.png");
    background-size: contain;
}

.application-card__link {

}

.application-card__head {

}

.application-card__title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    margin: 0 auto;
}

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

    .application-card {
        width: calc(50% - 10px);
        height: 150px;
        margin-right: 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .application-card__title {
        font-size: 12px;
    }

    .application-card:nth-child(1)::before {
        width: 38px;
        height: 39.5px;
        background: url("../img/application_img_01.png");
        background-size: contain;
    }

    .application-card:nth-child(2)::before {
        width: 44.5px;
        height: 39.5px;
        background: url("../img/application_img_02.png");
        background-size: contain;
    }

    .application-card:nth-child(3)::before {
        width: 48px;
        height: 37.5px;
        background: url("../img/application_img_03.png");
        background-size: contain;
    }

    .application-card:nth-child(4)::before {
        width: 37px;
        height: 45.5px;
        background: url("../img/application_img_04.png");
        background-size: contain;
    }

    .application-card:nth-child(5)::before {
        width: 39px;
        height: 38.5px;
        background: url("../img/application_img_05.png");
        background-size: contain;
    }

    .application-card:nth-child(6)::before {
        width: 43px;
        height: 46px;
        background: url("../img/application_img_06.png");
        background-size: contain;
    }

}

/*============================================*/
/*価格で探す*/
.card-wrap--price {
    justify-content: space-between;
    width: 1050px;
    height: 230px;
    margin-left: auto;
    margin-right: auto;
}
.card-wrap--price:after {
    content: "";
    display: block;
    width: 32.38%;
}

.price-card {
    background: #f9f4ea;
    width: 32.38%;
    height: 100px;
    position: relative;
    border-radius: 10px;
}

a.price-card__link {
    padding: 25px;
    display: flex;
    align-items: center;
}

a.price-card__link::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto 0;
    width: 26px;
    height: 26px;
    background: url("../img/icon-circle-arrow_01.png") no-repeat;
    background-size: contain;
}

.price-card__title {
    font-size: 18px;
    font-weight: bold;
    /*line-height: 120px;*/
}

@media only screen and (max-width: 1050px) {
    .card-wrap--price {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .card-wrap--price {
        width: 100%;
    }
    .price-card {
        width: calc(50% - 5px);
        height: auto;
        margin: 0 0 10px;
    }

    a.price-card__link {
        padding: 10px;
    }

    .price-card__title {
        font-size: 12px;
    }
}
@media only screen and (max-width: 374px) {
    .price-card__title {
        font-size: 10px;
    }
}

/*============================================*/
/*配送･お支払･梱包*/
.card-wrap.card-wrap--deli-pay-pack-card {
    margin-bottom: -10px;
    align-items: center;
}

.deli-pay-pack-card {
    text-align: center;
    height: 225px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.deli-pay-pack-card.deli-pay-pack-card--delivery {
    width: calc(50% - 10px);
    margin-right: 20px;
}

.deli-pay-pack-card.deli-pay-pack-card-payment {
    width: calc(50% - 10px);
}

.deli-pay-pack-card.deli-pay-pack-card--cushioning {
    width: calc(50% - 10px);
    margin-right: 20px;
}

.deli-pay-pack-card.deli-pay-pack-card--noshi {
    width: calc(50% - 10px);
}

.deli-pay-pack-card.deli-pay-pack-card--guide {
    width: 100%;
    height: auto;

}

.delivery-card {
    margin: 10px;
    background: #fff;
    width: 100%;
}

.delivery-card__title {
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 11px;
}
.delivery-card__title p {
    letter-spacing: 0.06em;
}

.delivery-card__schedule {
    font-size: 25px;
    font-weight: bold;
    color: #e31f2f;
    border-radius: 10px;
    background: #f9f4ea;
    width: 60%;
    text-align: center;
    padding: 11px 0;
    margin: 0 auto 11px;
}
.delivery-card__schedule p {
    line-height: 1em;
}

.delivery-card__supplement {
    font-size: 16px;
}

.payment-card {
    margin: 10px;
    background: #fff;

}

.payment-card__title {
    font-size: 22px;
    font-weight: bold;
}

.payment-card__image {
    /*width: 261px;*/
    /*height: 49px;*/
    color: #ff9900;
    font-size: 28px;
    font-weight: bold;
}

.payment-card__supplement {
    font-size: 16px;

}

.packing-card {
    position: relative;
    margin: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

/*.packing-card::before {*/
/*content: "";*/
/*display: block;*/
/*position: absolute;*/
/*top: 0;*/
/*bottom: 0;*/
/*left: 15px;*/
/*margin: auto 0;*/
/*width: 128px;*/
/*height: 128px;*/
/*background: #f9f4ea;*/
/*border-radius: 50%;*/
/*}*/

/*.packing-card.packing-card--cushioning::after {*/
/*content: "";*/
/*display: block;*/
/*position: absolute;*/
/*top: 0;*/
/*bottom: 0;*/
/*right: 15px;*/
/*margin: auto 0;*/
/*width: 49px;*/
/*height: 40px;*/
/*background: url("../img/delivery_icon_01.png") no-repeat;*/
/*background-size: contain;*/
/*}*/

/*.packing-card.packing-card--noshi::after {*/
/*content: "";*/
/*display: block;*/
/*position: absolute;*/
/*top: 0;*/
/*bottom: 0;*/
/*right: 15px;*/
/*margin: auto 0;*/
/*width: 44px;*/
/*height: 46px;*/
/*background: url("../img/delivery_icon_02.png") no-repeat;*/
/*background-size: contain;*/
/*}*/

.packing-card__title {
    font-size: 22px;
    font-weight: bold;
    padding: 10px 10px 10px 30px;
    text-align: left;
}

.guide-card {
    display: flex;
    align-items: center;
    background: #fff;
    width: 100%;
}

.guide-card__head {
    width: 50%;
}

.guide-card__body {
    width: 50%;
}

.guide-card__image {

}

.guide-card__image > img {
    width: 100%;
    height: auto;
}

.guide-card__title {
    font-size: 27px;
    font-weight: bold;
    margin: 0 0 12px;
}

.guide-card__supplement {
    font-size: 20px;
    margin: 0 0 23px;
}

.guide-card__more {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    text-align: left;
    display: inline-block;
    padding-right: 35px;
}

.guide-card__more::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
    width: 26px;
    height: 26px;
    background: url("../img/icon-circle-arrow_01.png") no-repeat;
    background-size: contain;
}

@media only screen and (max-width: 767px) {
    .deli-pay-pack-card.deli-pay-pack-card--delivery {
        width: 100%;
        margin-right: 5px;
        margin-top: 0;
    }

    .deli-pay-pack-card.deli-pay-pack-card-payment {
        width: 100%;
    }

    .delivery-card {
        width: 100%;
        padding-bottom: 10px;

    }

    .delivery-card__title {
        font-size: 15px;
        margin-top: 5px;
    }

    .delivery-card__schedule {
        font-size: 21px;
        display: inline-block;
        padding: 5px 20px;
        margin-top: 5px;
        border-radius: 5px;
        white-space: nowrap;
        box-sizing: content-box;
    }

    .delivery-card__supplement {
        font-size: 11px;
        margin-top: 5px;
    }

    .payment-card {
        width: 100%;
        padding-bottom: 10px;

    }

    .payment-card__title {
        font-size: 15px;
        margin-top: 10px;
    }

    .payment-card__image {
        font-size: 18px;
        margin-top: 10px;
        width: 100%;

    }

    .payment-card__image img {
        width: 163px;
        margin-right: 5px;

    }

    .payment-card__supplement {
        font-size: 11px;
        margin-top: 13px;
    }

    .packing-card__title {
        font-size: 12px;
        padding: 0;
        margin-top: 10px;
    }

    .guide-card {
        flex-direction: column;
    }

    .guide-card__title {
        font-size: 20px;
        line-height: 1em;
    }

    .guide-card__supplement {
        font-size: 13px;
        margin: 0 0 18px;
    }

    .guide-card__more {
        font-size: 13px;
        padding-right: 20px;

    }

    .deli-pay-pack-card {
        border-radius: 5px;
        height: auto;
        margin-top: 10px;
        margin-right: 5px;
    }

    .packing-card {
        flex-direction: column;
    }

    .guide-card__head {
        width: 100%;
    }

    .guide-card__body {
        width: 100%;
        padding: 20px 0 30px;

    }

    .deli-pay-pack-card.deli-pay-pack-card--cushioning {
        width: calc(50% - 10px);
        margin-right: 10px;
    }

    .packing-card__image {
        width: 90px;
        height: 90px;
    }

    .packing-card__image img {
        width: 100%;
        height: auto;
    }

    .card-wrap.card-wrap--deli-pay-pack-card {
        margin-right: -5px;
        margin-bottom: -5px;
    }

    .guide-card__more::before {
        width: 17px;
        height: 17px;
        background: url("../img/icon-circle-arrow_01.png") no-repeat;
        background-size: contain;
    }

}

@media only screen and (max-width: 374px) {
    .packing-card__title {
        font-size: 10px;
    }
}

/*============================================*/
/*よくあるご質問*/

.qa-card {
    background: #f9f4ea;
    width: 100%;
    padding: 0 30px 0 40px;
    border-radius: 10px;

}

.qa-card + .qa-card {
    margin-top: 20px;
}

.qa-card__toggle-btn {
    width: 64px;
    height: 64px;
    background: #928464;
    border-radius: 50%;
    position: absolute;
    right: 0;
    transition: transform .5s;
    cursor: pointer;
}

.qa-card__toggle-btn::before {
    content: '';
    display: block;
    height: 2px;
    width: 20px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.qa-card__toggle-btn::after {
    content: '';
    display: block;
    height: 20px;
    width: 2px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.qa-card__toggle-btn.qa-card__toggle-btn--open {
    background: #fff;
    transform: rotate(45deg);
}

.qa-card__toggle-btn.qa-card__toggle-btn--open::before,
.qa-card__toggle-btn.qa-card__toggle-btn--open::after {
    background: #333;
}

.qa-card__qa-wrap {

}

.qa-card__question {
    font-size: 22px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

.qa-card__answer {
    font-size: 16px;
    border-top: 1px solid #e1e1d4;
    display: flex;
    align-items: center;
    /*padding-top: 40px;*/
    /*padding-bottom: 40px;*/
    padding: 0;
    transition: all .5s;
    opacity: 0;
    height: 0;
    overflow: hidden;
    text-align: justify;
}

.qa-card__answer.qa-card__answer--open {
    opacity: 1;
    height: auto;
    padding: 40px 0;
}

.qa-card__question::before {
    font-family: 'Montserrat', sans-serif;
    content: 'Q';
    font-size: 30px;
    text-align: center;
    color: #e50012;
    display: block;
    width: 64px;
    min-width: 64px;
    line-height: 64px;
    background: #fff;
    border-radius: 50%;
    margin-right: 26px;
}

.qa-card__answer::before {
    font-family: 'Montserrat', sans-serif;
    content: 'A';
    font-size: 30px;
    text-align: center;
    color: #e50012;
    display: block;
    width: 64px;
    min-width: 64px;
    line-height: 64px;
    background: #fff;
    border-radius: 50%;
    margin-right: 26px;
}

@media only screen and (max-width: 767px) {
    .qa-card {
        width: 100%;
        padding: 0 20px 0 22px;
        border-radius: 5px;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .qa-card + .qa-card {
        margin-top: 0;
    }

    .qa-card__question {
        font-size: 14px;
        padding-right: 40px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .qa-card__answer {
        font-size: 13px;
        align-items: flex-start;
    }

    .qa-card__toggle-btn {
        width: 32px;
        height: 32px;
    }

    .qa-card__toggle-btn::before {
        height: 11px;
        width: 1px;
    }

    .qa-card__toggle-btn::after {
        height: 1px;
        width: 11px;
    }

    .qa-card__question::before {
        font-size: 17px;
        width: 32px;
        min-width: 32px;
        line-height: 32px;
    }

    .qa-card__answer::before {
        font-size: 17px;
        width: 32px;
        min-width: 32px;
        line-height: 32px;
        padding-right: 0;
    }

    .qa-card__answer.qa-card__answer--open {
        padding: 25px 0;
    }

    .qa-card__question::before {
        margin-right: 12px;
    }

    .qa-card__answer::before {
        margin-right: 12px;
    }
}

/*============================================*/
/*文明堂について*/
.about-card {
    display: flex;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.about-card.about-card--philosophy,
.about-card.about-card--cm {
    width: 50%;
}

.card-wrap--about {
    margin: 25px 0 -20px;
    display: flex;
    flex-wrap: wrap;
}

.about-card__head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-card__head.about-card__head--shop {
    height: 100%;
    background: url("../img/about_img_01.jpg") no-repeat;
    background-size: cover;
}

.about-card__head.about-card__head--philosophy {
    background: url("../img/about_img_02.jpg") no-repeat;
    background-size: cover !important;
    margin-right: 10px;
    height: 277px;
    border-radius: 10px;
    overflow: hidden;
}

.about-card__head.about-card__head--cm {
    background: url("../img/about_img_03.jpg") no-repeat;
    background-size: cover !important;
    margin-left: 10px;
    height: 277px;
    border-radius: 10px;
    overflow: hidden;
}

.about-card__body {
    background: #fff;
    width: 100%;
}

.about-card__title {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    font-family: "A1明朝", "A1 Mincho", serif !important;
    margin: 0 0 18px;
}

.about-card__title p {
    font-family: "A1明朝", "A1 Mincho", serif !important;
}

.about-card__text {
    font-size: 15px;
    color: #fff;
    font-family: "A1明朝", "A1 Mincho", serif !important;
    text-align: center;
}

.about-shop-list {
    height: 100%;
}

.about-shop-list .about-shop-list__list {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    margin-right: -20px;
    margin-bottom: -20px;
}

.about-shop-list .about-shop-list__item a {
    background: #f9f4ea;
    width: 220px;
    height: 70px;
    position: relative;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 25px;
    font-size: 14px;
    font-weight: bold;
}

.about-shop-list__item a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto 0;
    width: 26px;
    height: 26px;
    background: url("../img/icon-circle-arrow_01.png") no-repeat;
    background-size: contain;
}

@media only screen and (max-width: 767px) {
    .card-wrap--about {
        margin-top: 30px;
        padding-bottom: 35px;

    }

    .about-card {
        flex-direction: column;
        background: #FFF;
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .about-card__head.about-card__head--philosophy {
        margin: 0;
        background-size: contain;
        height: 180px;
    }

    .about-card__head.about-card__head--cm {
        margin: 0;
        background-size: contain;
        height: 180px;
    }

    .about-card__title {
        font-size: 20px;
        background: url(../img/about_img_01_sp.jpg) no-repeat;
        background-size: cover;
        width: 100%;
        line-height: 155px;
        text-align: center;
        margin: 0;
    }

    .about-card__head.about-card__head--shop {
        background: none;

    }

    .about-card__text {
        font-size: 14px;
        color: #52433d;
        padding: 15px 20px;
        background: #fff;
        text-align: left;
    }

    .about-card__text p {
        font-family: Lato, "こぶりなゴシック W3 JIS2004", "Koburina Gothic W3 JIS2004", sans-serif !important;
    }

    .about-card__text br {
        display: none;
    }

    .about-shop-list__list .about-shop-list__item {
        width: calc(50% - 10px);
        margin: 0;
        margin-bottom: 10px;
    }

    .about-shop-list .about-shop-list__item a {
        font-size: 12px;
        border-radius: 5px;
        width: 100%;
        height: 50px;
        margin: 0;
        padding: 15px;
    }

    .about-shop-list__item a::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 12px;
        margin: auto 0;
        width: 17px;
        height: 17px;
        background: url("../img/icon-circle-arrow_01.png") no-repeat;
        background-size: contain;
    }

    .about-shop-list .about-shop-list__list {
        justify-content: space-between;
        margin: 0;
        padding: 0 20px 10px;
    }

    .about-card.about-card--philosophy,
    .about-card.about-card--cm {
        width: 100%;
    }

    .about-card.about-card--philosophy .about-card__title,
    .about-card.about-card--cm .about-card__title {
        background: none;
    }

}

/*============================================*/
/*お知らせ*/
.card-wrap.card-wrap--infomation {
    padding: 35px 30px;
    display: block;
    background: #f9f4ea;
    border-radius: 10px;
}

.event-news {
}

.event-news__link {
    position: relative;
}

.event-news__link::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto 0;
    width: 26px;
    height: 26px;
    background: url("../img/icon-circle-arrow_02.png") no-repeat;
    background-size: contain;
}

.event-news__link + .event-news__link {
    margin-top: 10px;
}

.event-news__list {
    display: flex;
    align-items: center;
    background: #928464;
    border-radius: 10px;
    overflow: hidden;
}

.event-news__title {
    font-size: 14px;
    color: #fff;
    width: 120px;
    text-align: center;
    background: #928464;
    padding: 18px;

}

.event-news__text {
    font-size: 14px;
    width: 100%;
    background: #eee5d2;
    padding: 18px 50px 18px 18px;
}

.event-news__list.event-news__list--important {
    background: #ed5f25;
}

.event-news__list.event-news__list--important .event-news__title {
    background: #ed5f25;
}

.event-news__list.event-news__list--important .event-news__text {
    background: #f7e9e1;
}

.event-news + .event-date-order {
    border-top: 1px solid #e1e1d4;
}

.event-date-order {
    border-top: 1px solid #e1e1d4;
    padding-top: 40px;
    margin-top: 40px;
}

.event-date-order__link {
    position: relative;
}

.event-date-order__link::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto 0;
    width: 26px;
    height: 26px;
    background: url("../img/icon-circle-arrow_03.png") no-repeat;
    background-size: contain;
}

.event-date-order__link + .event-date-order__link {
    margin-top: 10px;
}

.event-date-order__list {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.event-date-order__date {
    width: 135px;
    font-size: 16px;
    color: #6b5d56;
    text-align: center;
    padding: 18px;
    white-space: nowrap;

}

.event-date-order__date:after {
    content: '';
    height: 16px;
    width: 1px;
    display: inline-block;
    background: #e1dfdd;
    margin-left: 15px;
}

.event-date-order__text {
    width: 100%;
    font-size: 14px;
    color: #52433d;
    padding: 18px 50px 18px 18px;
}

.list-more {
    position: relative;
    text-align: center;
    margin-top: 30px;
}

.list-more__link {
    font-size: 16px;
    display: inline-block !important;
    position: relative;
    padding-right: 40px;
    width: auto !important;
}

.list-more__link::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 0;
    width: 26px;
    height: 26px;
    background: url("../img/icon-circle-arrow_02.png") no-repeat;
    background-size: contain;
}

@media only screen and (max-width: 767px) {
    .card-wrap.card-wrap--infomation {
        padding: 20px 20px 40px;
    }

    .card-wrap.card-wrap--infomation {
        border-radius: 5px;
        margin-bottom: 10px;

    }

    .event-news__list {
        border-radius: 5px;
    }

    .event-news__title {
        font-size: 12px;
        max-width: 78px;
        white-space: nowrap;
        padding: 10px;
    }

    .event-news__text {
        font-size: 12px;
    }

    .event-date-order__date {
        font-size: 12px;
        text-align: left;
        padding: 0;
    }

    .event-date-order__date:after {
        content: none;
    }

    .event-date-order__text {
        font-size: 14px;
        padding: 0;
    }

    .list-more {
        text-align: center;
        margin-top: 25px;
    }

    .list-more .list-more__link {
        font-size: 13px;
        display: inline;
        position: relative;
        padding-right: 30px;
    }

    .list-more__link::after {
        right: 0;
        width: 17px;
        height: 17px;
        background: url("../img/icon-circle-arrow_02.png") no-repeat;
        background-size: contain;
    }

    .event-date-order__list {
        padding: 15px;
        border-radius: 5px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    a.price-card__link::before {
        right: 10px;
        width: 17px;
        height: 17px;
        background: url("../img/icon-circle-arrow_01.png") no-repeat;
        background-size: contain;
    }

    .event-news__link::after {
        right: 12px;
        margin: auto 0;
        width: 17px;
        height: 17px;
        background: url("../img/icon-circle-arrow_02.png") no-repeat;
        background-size: contain;
    }

    .event-date-order__link::after {
        right: 12px;
        width: 17px;
        height: 17px;
        background: url("../img/icon-circle-arrow_03.png") no-repeat;
        background-size: contain;
    }

}
