html {
    font-size: 62.5%;
}

body {
    color: #3d3d3d;
    font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    font-size: 1.6rem;
    -webkit-font-smoothing: antialiased;
    line-height: 1.625;
    margin: 0;
}

body::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 1px;
}

body::-webkit-scrollbar {
    background-color: #f1f1f1;
    height: 12px;
    width: 12px;
}

body::-webkit-scrollbar-thumb {
    background-color: #404040;
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

a {
    color: #3d3d3d;
    text-decoration: none;
}

a:hover, a:focus {
    color: #3d3d3d;
    text-decoration: none;
}

img {
    max-width: 100%;
    -webkit-user-drag: none;
            user-drag: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    vertical-align: middle;
}

button {
    cursor: pointer;
}

/* --------------------
 Layout
-------------------- */
.container {
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        max-width: 1040px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.page-top {
    opacity: 0;
    position: relative;
    -webkit-transition: opacity .3s linear;
         -o-transition: opacity .3s linear;
            transition: opacity .3s linear;
}

.page-top__button {
    bottom: 30px;
    display: inline-block;
    margin-right: 15px;
    padding-top: 5px;
    pointer-events: none;
    position: fixed;
    right: 0;
    z-index: 98;
}

.page-top__button img {
    position: relative;
    top: 0;
    -webkit-transition: top .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: top .2s cubic-bezier(.645, .045, .355, 1);
            transition: top .2s cubic-bezier(.645, .045, .355, 1);
}

.page-top__button:hover img {
    top: -5px;
}

.page-top.active {
    opacity: 1;
}

.page-top.active .page-top__button {
    pointer-events: all;
}

.page-top.static .page-top__button {
    bottom: -60px;
    position: absolute;
}

.marker {
    background: transparent;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(.5em, #f8f6d2), color-stop(.5em, rgba(248, 246, 210, 0)), to(transparent));
    background: -o-linear-gradient(bottom, #f8f6d2 .5em, rgba(248, 246, 210, 0) .5em, transparent 100%);
    background:    linear-gradient(to top, #f8f6d2 .5em, rgba(248, 246, 210, 0) .5em, transparent 100%);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 0 auto;
    font-weight: 400;
    -webkit-transition: background-size 1.5s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-size 1.5s cubic-bezier(.645, .045, .355, 1);
            transition: background-size 1.5s cubic-bezier(.645, .045, .355, 1);
}

.marker.active {
    background-size: 100% auto;
}

/* --------------------
 Section
-------------------- */
.section {
    padding: 60px 0;
}
.section2{
    padding: 60px 0 0;
}

.section--colored {
    background-color: #eceef0;
}

.section__name {
    font-size: 2.2rem;
    line-height: 1;
    margin: 0 0 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .section__name {
        font-size: 3.2rem;
    }
}

.section__title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.625;
    margin: 0 0 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .section__title {
        font-size: 3.2rem;
        margin-bottom: 20px;
    }
}

.section__desc {
    font-size: 1.4rem;
    margin: 0 0 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .section__desc {
        font-size: 1.6rem;
    }
}

/* --------------------
 Button
-------------------- */
.button-sale {
    background-color: #404040;
    display: block;
    margin: 0 auto;
    max-width: 468px;
    padding: 5px 5px;
    width: 100%;
}

.button-sale__label {
    border: 1px solid #ffffff;
    display: block;
    height: 100%;
    line-height: 1;
    padding: 5px 15px;
    text-align: center;
    width: 100%;
}

/* --------------------
 Product
-------------------- */
.product {
    margin-bottom: 35px;
}

.product__title {
    font-size: 1.8rem;
    margin: 15px 0 50px;
    text-align: center;
}

@media (min-width: 768px) {
    .product__title {
        font-size: 2.7rem;
    }
}

.product__intro {
    margin: 0 0 135px;
}

@media (min-width: 768px) {
    .product__intro {
        -webkit-align-items: center;
                align-items: center;
        -webkit-box-align: center;
        -webkit-box-pack: justify;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
        -ms-flex-align: center;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
    }
}

.product__intro__item {
    display: block;
    margin-bottom: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .product__intro__item {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
                flex-grow: 0;
        -ms-flex-positive: 0;
        margin-bottom: 0;
    }

    .product__intro__item:first-child {
        margin-right: 10px;
    }
}

.product__list {
    margin: 0 -10px 40px;
}

.product__list:after {
    clear: both;
    content: '';
    display: block;
}

@media (min-width: 768px) {
    .product__list {
        margin-bottom: 60px;
    }
}

.product__list__item {
    float: left;
    margin-bottom: 50px;
    padding: 0 10px;
    text-align: center;
    width: 50%;
}

@media (min-width: 768px) {
    .product__list__item {
        margin-bottom: 0;
        width: 25%;
    }
}

.product__list__item__photo {
    margin: 0 0 20px;
}

.product__list__item__name {
    font-size: 1.4rem;
    line-height: 1.2;
}

/* --------------------
 Pickup
-------------------- */
.pickup-main {
    margin: 0 0 10px;
}

.pickup-main__item {
    margin: 0 0 10px;
    text-align: center;
}

.pickup-main__item:last-child {
    margin-bottom: 0;
}

.pickup-sub {
    margin: 0 -5px;
}

.pickup-sub:after {
    clear: both;
    content: '';
    display: block;
}

.pickup-sub__item {
    float: left;
    margin-bottom: 15px;
    padding: 0 5px;
    text-align: center;
    width: 50%;
}

.pickup-sub__item:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .pickup-sub__item {
        margin-bottom: 0;
        width: 25%;
    }
}

/* --------------------
 Video
-------------------- */
.video {
    padding-bottom: 15px;
    padding-top: 25px;
}

.video__desc {
    font-size: 1.6rem;
    margin: 0 0 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .video__desc {
        font-size: 1.8rem;
    }
}

.video__player {
    margin: auto;
    max-width: 800px;
    width: 100%;
}

.video__player__container {
    height: 0;
    padding-top: 56.25%;
    position: relative;
    width: 100%;
}

.video__player__container iframe {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 0;
}

/* --------------------
 Story
-------------------- */
.story {
    padding-top: 15px;
}

.story__list__item {
    margin: 0 0 50px;
}

.story__list__item:after {
    clear: both;
    content: '';
    display: block;
}

@media (min-width: 768px) {
    .story__list__item {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media (min-width: 768px) {
    .story__list__item__col {
        float: left;
        padding: 0 10px;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .story__list__item--replaced .story__list__item__col {
        float: right;
    }
}

.story__list__item__thumb {
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .story__list__item__thumb {
        margin-bottom: 0;
    }
}

.story__list__item__number {
    line-height: 1;
    margin: 0 0 5px;
}

@media (max-width: 767px) {
    .story__list__item__number img {
        height: 1.8rem;
    }
}

.story__list__item__title {
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0 0 10px;
}

@media (min-width: 768px) {
    .story__list__item__title {
        font-size: 2.6rem;
        margin-bottom: 20px;
    }
}

.story__list__item__desc {
    font-size: 1.4rem;
    margin: 0;
    text-align: justify;
    text-justify: inter-ideograph;
}

@media (min-width: 768px) {
    .story__list__item__desc {
        font-size: 1.6rem;
    }
}

.story__list__item__ex {
    color: #a2a2a2;
    display: inline-block;
    font-size: 1.9rem;
    margin-top: .25em;
    text-decoration: underline;
    -webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
            transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
}

.story__list__item__ex:hover, .story__list__item__ex:focus {
    color: #a2a2a2;
    opacity: .75s;
    text-decoration: none;
}

.story__intro {
    border: 1px solid #cccccc;
    margin: auto;
    max-width: 830px;
    padding: 20px 15px;
}

.story__intro:after {
    clear: both;
    content: '';
    display: block;
}

.story__intro-content {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .story__intro-content {
        float: left;
        margin-bottom: 0;
        padding: 0 10px;
        width: 55%;
    }
}

.story__intro-photo {
    text-align: center;
}

@media (min-width: 768px) {
    .story__intro-photo {
        float: left;
        padding: 0 8px;
        text-align: right;
        width: 45%;
    }
}

.story__intro__title {
    font-size: 1.7rem;
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .story__intro__title {
        font-size: 1.9rem;
    }
}

.story__intro__desc {
    font-size: 1.4rem;
    margin: 0;
    text-align: justify;
    text-justify: inter-ideograph;
}

@media (min-width: 768px) {
    .story__intro__desc {
        font-size: 1.6rem;
    }
}

.story__intro__thumb {
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .story__intro__thumb {
        margin-bottom: 15px;
    }
}

.story__intro__company {
    -webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
            transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
}

.story__intro__company:hover, .story__intro__company:focus {
    opacity: .85;
}

/* --------------------
 Line up
-------------------- */
.lineup {
    padding-top: 30px;
}

.lineup__list {
    margin: 0 -10px 40px;
}

.lineup__list:after {
    clear: both;
    content: '';
    display: block;
}

@media (min-width: 768px) {
    .lineup__list {
        margin-bottom: 60px;
    }
}

.lineup__list__item {
    float: left;
    margin-bottom: 50px;
    padding: 0 10px;
    text-align: center;
    width: 50%;
}

@media (min-width: 768px) {
    .lineup__list__item {
        margin-bottom: 0;
        width: 25%;
    }
}

.lineup__list__item__photo {
    margin: 0 0 20px;
}

.lineup__list__item__name {
    font-size: 1.4rem;
    line-height: 1.2;
}

.lineup__spec {
    background-color: #ffffff;
    font-size: 1.4rem;
    margin: auto auto 60px;
    max-width: 570px;
    padding: 20px 15px;
}

@media (min-width: 768px) {
    .lineup__spec {
        font-size: 1.6rem;
        padding: 30px 40px;
    }
}

/* --------------------
 Instagram
-------------------- */
.sns-info {
    margin-bottom: 90px;
    padding: 70px 0 0;
}

@media (min-width: 768px) {
    .sns-info {
        padding-top: 56px;
    }
}

.sns-info__title {
    margin: 0 0 30px;
    position: relative;
    text-align: center;
}

.sns-info__title:before {
    background-image: url(../images/icons/icon-instagram.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    content: '';
    display: block;
    height: 30px;
    margin: 0 auto 20px;
    width: 30px;
}

.sns-info__account {
    font-size: 20px;
    margin: 0 0 20px;
    text-align: center;
}

.sns-info__account a {
    -webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
            transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
}

.sns-info__account a:hover, .sns-info__account a:focus {
    opacity: .75;
}

.sns-info__desc {
    font-size: 1.4rem;
    margin: 0 0 100px;
    text-align: center;
}

@media (min-width: 768px) {
    .sns-info__desc {
        font-size: 1.6rem;
    }
}

.sns-info__viewer:after {
    clear: both;
    content: '';
    display: block;
}

.sns-info__viewer__item {
    float: left;
    margin-bottom: 20px;
    padding: 0 10px;
    width: 50%;
}

@media (min-width: 768px) {
    .sns-info__viewer__item {
        width: 33.33333%;
    }
}

.sns-info__viewer__item a {
    display: block;
    height: 100%;
    position: relative;
    width: 100%;
}

.sns-info__viewer__item a:after {
    background-color: rgba(0, 0, 0, .6);
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
            transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
    z-index: 1;
}

.sns-info__viewer__item a:hover:after {
    opacity: 1;
}

/* --------------------
 Navigation
-------------------- */
.gnav {
    background-color: #ffffff;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: opacity 1s cubic-bezier(.645, .045, .355, 1);
         -o-transition: opacity 1s cubic-bezier(.645, .045, .355, 1);
            transition: opacity 1s cubic-bezier(.645, .045, .355, 1);
    width: auto;
    z-index: 100;
}

.gnav.active {
    opacity: 1;
}

.gnav-container {
    -webkit-align-items: flex-end;
            align-items: flex-end;
    -webkit-box-align: end;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: end;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: justify;
    height: 80px;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    margin: auto;
    max-width: 980px;
    position: relative;
}

.gnav__title {
    font-size: 1.0rem;
    font-weight: 400;
    left: 15px;
    line-height: 1;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 7px;
    z-index: 0;
}

@media (min-width: 768px) {
    .gnav__title {
        left: 15px;
    }
}

.gnav__brand {
    -webkit-align-items: flex-end;
            align-items: flex-end;
    -webkit-box-align: end;
    -webkit-box-flex: 0;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: end;
    -webkit-flex-grow: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
    -ms-flex-pack: start;
    -ms-flex-positive: 0;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
    font-size: 1.0rem;
    height: 100%;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    line-height: 1;
    padding-bottom: 10px;
    padding-left: 15px;
    width: 170px;
}

@media (min-width: 768px) {
    .gnav__brand {
        padding-left: 15px;
    }
}

.gnav__brand__logo {
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.gnav__brand__logo a {
    -webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
            transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
}

.gnav__brand__logo a:hover, .gnav__brand__logo a:focus {
    opacity: .75;
}

.gnav__menu {
    -webkit-align-items: flex-end;
            align-items: flex-end;
    -webkit-box-align: end;
    -webkit-box-direction: normal;
    -webkit-box-flex: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: end;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
    -ms-flex-pack: justify;
    -ms-flex-positive: 1;
    -webkit-flex-shrink: 1;
            flex-shrink: 1;
    height: 100%;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    margin: 0 20px;
    padding-bottom: 10px;
    position: relative;
}

@media (max-width: 991px) {
    .gnav__menu {
        display: none;
    }
}

@media (min-width: 1240px) {
    .gnav__menu {
        margin: 0 40px;
    }
}

.gnav__menu__item {
    display: block;
    padding: 0 15px 0 0;
    text-align: center;
}

.gnav__menu__item:last-child {
    padding-right: 0;
}

.gnav__menu__item a {
    font-size: 1.4rem;
    -webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
            transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
}

.gnav__menu__item a:hover, .gnav__menu__item a:focus {
    opacity: .75;
}

.gnav__sns {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
    -ms-flex-positive: 0;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
    height: 100%;
    text-align: center;
    width: 80px;
}

@media (min-width: 425px) {
    .gnav__sns {
        width: 175px;
    }
}

.gnav__sns-link {
    -webkit-align-items: center;
            align-items: center;
    background-color: #404040;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: center;
    height: 100%;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

.gnav__sns-link:hover, .gnav__sns-link:focus {
    background-color: #2e2e2e;
}

.gnav__sns__icon {
    background-image: url(../images/icons/icon-instagram.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    display: block;
    height: 30px;
    margin: 0 auto 10px;
    width: 30px;
}

.gnav__sns__label {
    color: #ffffff;
    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1;
}

@media (min-width: 425px) {
    .gnav__sns__label {
        font-size: 1.6rem;
    }
}

/* --------------------
 Hero
-------------------- */
.hero {
    height: 100vh;
    max-height: 1100px;
    min-height: 500px;
    opacity: 0;
    position: relative;
    -webkit-transition: opacity 1s cubic-bezier(.645, .045, .355, 1);
         -o-transition: opacity 1s cubic-bezier(.645, .045, .355, 1);
            transition: opacity 1s cubic-bezier(.645, .045, .355, 1);
}

.hero.active {
    opacity: 1;
}

.hero__visual {
    background-image: url(../images/heroes/hero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 80px;
    width: auto;
    z-index: 0;
}

.hero__visual__message {
    -webkit-align-items: center;
            align-items: center;
    background-color: rgba(255, 255, 255, .6);
    bottom: 0;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: center;
    height: 70px;
    -webkit-justify-content: center;
            justify-content: center;
    left: 0;
    line-height: 1;
    margin: auto;
    padding: 10px 15px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: auto;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero__visual__message {
        -webkit-box-direction: normal;
        -webkit-box-orient: horizontal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        height: 60px;
    }
}

.hero__visual__message img {
    margin: 0 3px;
}

@media (max-width: 767px) {
    .hero__visual__message img {
        display: block;
        height: 19px;
        margin: 5px 0;
    }
}

/* --------------------
 Footer
-------------------- */
.footer {
    padding-top: 30px;
}

.footer__brand {
    line-height: 1;
    margin: 0 0 30px;
    text-align: center;
}

.footer__brand a {
    -webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
            transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
}

.footer__brand a:hover, .footer__brand a:focus {
    opacity: .85;
}

.footer__copyright {
    background-color: #6a6a6a;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    padding: 10px;
    text-align: center;
}


/*2018.08.28 追加*/
.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.justify{
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
    padding: 0;
}
.gnav{
  box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.2);
}
.shoplist_btn{
    text-align:center;
    width:94%;
    margin:0 auto;
}
.shoplist_btn_txt{
    color:#6C6461;
    font-size:24px;
    margin:0.5em 0;
}
.shoplist_btn_img a{
    max-width:690px;
    color:#fff;
    display:block;
    font-size:32px;
    border-radius:6px;
    background:#B28C51;
    padding:0.4em 0;
    margin:0 auto;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position:relative;
}
.shoplist_btn_img a:after{
    position:absolute;
    content:"";
    display:block;
    width:10px;
    height:10px;
    bottom:10px;
    right:10px;
    background:url(../images/shoplist/arrow01.svg) no-repeat center center;
}
.shoplist_btn_img a:hover{
    opacity:0.8;
}
.media__list{
    margin:3em auto 0;
    max-width:760px;
}
.media__list ul{
    padding:0;
    margin:0 0 0;
}
.media__list li{
    list-style:none;
    padding:0.4em 0;
}
.media__list a{
    color:#B28C51;
    text-decoration:underline;
}
.media__list a:after{
     content:"";
    display:inline-block;
    width:12px;
    height:12px;
    margin-left:4px;
    background:url(../images/media/arrow01.svg) no-repeat center center;
}
.media_bar{
    text-align:center;
    border-bottom:1px solid #707070;
    width:80px;
    height:1px;
    content:"";
    margin:120px auto 0;
}
.gnav_shop{
    display:block;
    font-size:40px;
}
@media (min-width: 768px) {
    .gnav_shop{
        display:none;
    }
}

/*shoplist*/
.page_main{
    margin-top:140px;
}
.shoplist:after {
    clear: both;
    content: '';
    display: block;
}
.shoplist{
    position:relative;
    margin-top:120px;
}
.shoplist_area_inner{
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    position:relative;
}
@media (min-width: 768px) {
    .shoplist_area_inner {
        max-width: 1040px;
        padding-left: 30px;
        padding-right: 30px;
    }
}
.shoplist__nav{
    width:20%;
    position:absolute;
    top:0;
    left:0;
}

.shoplist_area_box{
    margin-left:26%;
}
.shoplist__nav{
    border-left:2px solid #333333;
}
.shoplist__nav ul{
    margin:0;
    padding:0;
}
.shoplist__nav li{
    list-style:none;
    margin-left: -2px;
    padding:0.6em 0;
}
.shoplist__nav li:before{
    content:"ー";
    margin-right:1em;
}
.shoplist__nav li a:hover{
    color:#B28C51;
    text-decoration:underline;
}
.shoplist_area_ttl{
    font-size:32px;
    position:relative;
    padding-left:20px;
    margin:0 0 44px;
}
.shoplist_area_ttl:before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    border-bottom:2px solid #333333;
    width:12px;
    height:0;
}

.shoplist_shop_name{
    font-weight:bold;
    font-size:22px;
    margin: 0 0 30px;
}
.shoplist_shop_txt{
    margin:0 0 20px;
}
.shoplist_shop_txt:first-child{
    margin:0 0 20px;
}
.shoplist_shop_txt dt{
    width:15%;
}
.shoplist_shop_txt dd{
    width:85%;
    margin:0;
    line-height:24px;
}
.shoplist_shop_nav{
    padding-top:10px;
}
.shoplist_shop_nav div{
    width:48%;
}
.shoplist_shop_nav a{
    display:block;
    border:1px solid #333333;
    width:100%;
    padding:0.8em;
    text-align:center;
    border-radius:6px;
    font-size:18px;
}
.shoplist_shop_nav span:after{
    width:11px;
    height:11px;
    background:url(../images/shoplist/arrow02.svg) no-repeat center center;
    display:inline-block;
    content:"";
    margin-left:1em;
}
.shoplist_shop_nav a:hover{
    opacity:0.8;
}
.shoplist_shop{
    margin:0 0 60px;
}
.shoplist_area_gray{
    background:#ECEEF0;
    padding:3em 0;
}
.btn_onlineshop{
    text-align:center;
    margin:0 auto 3em;
    width:94%;
}
.btn_onlineshop a{
    max-width:690px;
    color:#fff;
    display:block;
    font-size:32px;
    border-radius:6px;
    background:#B28C51;
    padding:0.4em 0;
    margin:0 auto;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.btn_onlineshop a span:after{
    width:22px;
    height:22px;
    background:url(../images/shoplist/onlineshop_icn.svg) no-repeat center center;
    display:inline-block;
    content:"";
    margin-left:0.5em;
}
.btn_onlineshop a:hover{
    opacity:0.8;
}
.center-txt{
    margin: 0 auto;
    text-align: center;    
}
.center-txt span{
    text-decoration: underline;
}

.section__title__page {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.625;
    margin: 0 0 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .section__title__page {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
.shoplist_bar{
    text-align:center;
    border-bottom:1px solid #707070;
    width:80px;
    height:1px;
    content:"";
    margin:120px auto 0;
}
.br_sp{
display:none;
}
.br_pc{
display:block;
}
@media (max-width: 768px) {
    .br_sp{
	    display:block;
    }
    .br_pc{
	    display:none;
    }
    .shoplist__nav{
        width:100%;
        position:static;
        border-left:none;
        margin:0 0 30px
    }
    .shoplist__nav li{
        padding:0;
    }
    .shoplist__nav a{
        display: block;
        margin: 0 auto 5px;
        padding: 15px 0;
        background-color: #F2F2F2;
        border-radius: 8px;
        text-align: center;
        text-decoration: none;
        font-weight: bold;
    }
    .shoplist__nav li:before{
        display:none;
    }
    .shoplist_area_box{
        margin-left:0;
    }
    .shoplist_shop_nav div{
        width:100%;
        margin:0 0 1em;
    }
    .shoplist_shop_txt dt{
        width:30%;
    }
    .shoplist_shop_txt dd{
        width:68%;
    }
    .page_main {
        margin-top: 56px;
    }
    .shoplist_btn_txt{
        font-size:16px;
    }
    .shoplist_btn_img a,
    .btn_onlineshop a{
        font-size:20px;
    }
    .btn_onlineshop a span::after{
        width:14px;
        height:14px;
        background-size:cover;
    }
    .shoplist{
        margin-top:3em;
    }
    .shoplist_bar{
        margin-top:60px;
    }
}