* {
    box-sizing: border-box;
}

figure {
    margin: 0;
    padding: 0;
}

/*====== margin ======*/
.mbtm0 {
    margin-bottom: 0 !important;
}

.mbtm1 {
    margin-bottom: 1em !important;
}

.mbtm2 {
    margin-bottom: 2em !important;
}

.mbtm3 {
    margin-bottom: 3em !important;
}

.mtop0 {
    margin-top: 0 !important;
}

.mtop1 {
    margin-top: 1em !important;
}

.mtop2 {
    margin-top: 2em !important;
}

.mtop3 {
    margin-top: 3em !important;
}

/*====== padding ======*/
.pbtm0 {
    padding-bottom: 0 !important;
}

.pbtm1 {
    padding-bottom: 1em !important;
}

.pbtm2 {
    padding-bottom: 2em !important;
}

.pbtm3 {
    padding-bottom: 3em !important;
}

.ptop0 {
    padding-top: 0 !important;
}

.ptop1 {
    padding-top: 1em !important;
}

.ptop2 {
    padding-top: 2em !important;
}

.ptop3 {
    padding-top: 3em !important;
}

/*====== grid ======*/
.grid12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.row2 {
    grid-row: span 2;
}

.col-pc12 {
    grid-column: span 12;
}

.col-pc11 {
    grid-column: span 11;
}

.col-pc10 {
    grid-column: span 10;
}

.col-pc9 {
    grid-column: span 9;
}

.col-pc8 {
    grid-column: span 8;
}

.col-pc7 {
    grid-column: span 7;
}

.col-pc6 {
    grid-column: span 6;
}

.col-pc5 {
    grid-column: span 5;
}

.col-pc4 {
    grid-column: span 4;
}

.col-pc3 {
    grid-column: span 3;
}

.col-pc2 {
    grid-column: span 2;
}

.col-pc1 {
    grid-column: span 1;
}

@media (max-width: 740px) {
    .grid12 {
        grid-template-columns: repeat(6, 1fr);
        gap: 3vw;
    }

    .col-tab6 {
        grid-column: span 6;
    }

    .col-tab5 {
        grid-column: span 5;
    }

    .col-tab4 {
        grid-column: span 4;
    }

    .col-tab3 {
        grid-column: span 3;
    }

    .col-tab2 {
        grid-column: span 2;
    }

    .col-tab1 {
        grid-column: span 1;
    }

    @media (max-width: 414px) {
        .col-sp6 {
            grid-column: span 6;
        }

        .col-sp5 {
            grid-column: span 5;
        }

        .col-sp4 {
            grid-column: span 4;
        }

        .col-sp3 {
            grid-column: span 3;
        }

        .col-sp2 {
            grid-column: span 2;
        }

        .col-sp1 {
            grid-column: span 1;
        }
    }
}

.grid12 [class*="col-"] figure + figure{
    margin-top: 20px;
}
@media (max-width: 740px) {
    .grid12 [class*="col-"] figure + figure{
        margin-top: 3vw;
    }
}

figure img.cover {
    object-fit: cover;
    font-family: 'object-fit: cover;'
}

/*====== flex ======*/
.flex {
    flex-wrap: wrap;
}

.flex.flex-around {
    justify-content: space-around;
}

.flex.flex-center {
    justify-content: center;
}

.flex.flex-start {
    justify-content: flex-start;
}

.flex.flex-end {
    justify-content: flex-end;
}

.flex.columns-3 .column3 {
    width: 32%;
    margin-bottom: 2%;
}

@media screen and (max-width:740px) {
    .flex.columns-3 .column3 {
        width: 48%;
        margin-bottom: 4%;
    }
}

.flex.columns-2 .column2 {
    width: 48%;
    margin-bottom: 4%;
}

.flex.columns-2 .column2 .caption,
.flex.columns-3 .column3 .caption {
    padding: 1em 0;
    font-size: .8em;
    line-height: 1.6;
}

.flex.columns-2 .column2 .img-title,
.flex.columns-3 .column3 .img-title {
    padding: 1em 0 0;
    font-size: 1em;
    line-height: 1.6;
}

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

    .flex.columns-2 .column2 .caption,
    .flex.columns-3 .column3 .caption {
        font-size: .6em;
        text-align: left;
    }

    .flex.columns-2 .column2 .img-title,
    .flex.columns-3 .column3 .img-title {
        padding: 1em 0 0;
        font-size: .7em;
    }
}

/*====== text-align ======*/
.text-left {
    text-align: left !important;
}

.text-right {
    text-align: center !important;
}

.text-center {
    text-align: center !important;
}

@media screen and (max-width:740px) {
    .text-left-sp {
        text-align: justify !important;
    }

    .text-right-sp {
        text-align: center !important;
    }

    .text-center-sp {
        text-align: center !important;
    }
}

.iblock {
    display: inline-block;
}

/*====== note ======*/
.note {
    padding: .5em 0;
    line-height: 1.5;
}

ul.note {
    padding: .5em 0;
}

ul.note li {
    padding-left: 1.2em;
    text-align: left;
    position: relative;
}

ul.note li::before {
    content: '※';
    position: absolute;
    left: 0;
}

/*====== color ======*/
.bggray {
    background-color: #f9f9f9;
}

.bgwhite {
    background-color: #fff;
}

/*====== contents ======*/
.main {
    padding-bottom: 200px;
}

.inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    position: relative;
}

.inner900 {
    max-width: 900px;
}

main h1 {
    display: block;
    line-height: 1.5;
    font-size: min(1.5em, 6vw);
    font-weight: normal;
}

main h2 {
    display: block;
    line-height: 1.4;
    font-size: 1.1em;
    font-weight: normal;
}

main h3 {
    display: block;
    line-height: 1.4;
    font-size: .9em;
    font-weight: normal;
}

/*------- header -------*/
.header {
    padding-bottom: 3em;
}

.mainimg {
    display: block;
    width: 100%;
    height: 0;
    padding: 0;
    padding-bottom: 40%;
    margin-bottom: 1em;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width:740px) {
    .mainimg {
        padding-bottom: 100%;
    }

    .mainimg.commonDevice {
        padding-bottom: 65%;
    }
}

.mainimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.mainimg .title {
    position: absolute;
}

.mainimg .title img {
    height: auto;
    position: static;
}

.op9::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .05);
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width:740px) {
    .header {
        font-size: 90%;
    }
}

.header h1 {
    padding: 1em 0 0;
    margin-bottom: .25em;
    text-align: center;
}

.header h2 {
    margin-bottom: 1em;
    text-align: center;
}

.header h3 {
    margin-bottom: 1em;
    text-align: center;
}

.header .ptitle {
    font-weight: bold;
    font-family: sans-serif;
    margin-top: 2em;
    margin-bottom: 0;
    padding-bottom: 0;
}

.header .sub-dash {
    display: inline-block;
    font-size: 1.2em;
    margin-bottom: 1.5em;
    font-weight: normal;
    text-align: center;
    margin-top: .5em;
}

.header .sub-dash::before,
.header .sub-dash::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1px;
    background-color: #222;
    margin: .25em .5em;
}

.header .sub-borderframe {
    display: inline-block;
    margin-top: 2em;
    padding: .75em 1.5em;
    font-size: .9em;
    border: solid 1px;
    line-height: 1;
}

.header p {
    font-size: .9em;
    line-height: 2;
}

/*------- decoration -------*/
.bg-gray {
    background-color: #f9f9f9;
}

.dash {
    width: fit-content;
    margin: 0 auto;
}

.dash::before,
.dash::after {
    content: '';
    display: inline-block;
    width: 1.5em;
    height: 1px;
    vertical-align: .35em;
    margin: 0 .5em;
    background-color: currentColor;
}

.borderframe {
    display: inline-block;
    padding: .1em .75em;
    border: solid 1px;
    font-size: .95em;
}

/*------- module -------*/
.co-wrp .inner {
    padding: min(60px, 15vw) min(20px, 5vw);
}

.co-wrp .inner > :where(h1, h2, h3, h4):first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.co-wrp p {
    line-height: 1.8;
}

.date time {
    display: block;
}

.date .day {
    font-size: 1.1em;
}

.date .time {
    font-size: .9em;
}


/*------- shoplist -------*/
.shoplist-wrp,
.event-wrp {
    text-align: center;
    background-color: #f9f9f9;
}

.shoplist {
    flex-wrap: wrap;
}

.shoplist-wrp h3 {
    display: inline-block;
    width: 100%;
    font-size: 1.1em;
    margin: 3em 0 2em;
    text-align: center;
    padding: 0 .25em;
}

.shoplist-wrp h3::before,
.shoplist-wrp h3::after {
    content: '';
    display: inline-block;
    width: 3em;
    height: 1px;
    background-color: #222;
    margin: .25em .5em;
}

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

    .shoplist-wrp h3.spsml::before,
    .shoplist-wrp h3.spsml::after {
        width: 1.5em;
    }
}

.shoplist-wrp .shop {
    width: 48%;
    min-height: 16em;
    margin-bottom: 4%;
    border: 1px solid #ccc;
    padding: 0;
    background-color: #fff;
}

.shoplist-wrp .shop .shop-img {
    width: 50%;
    background-color: #ddd;
    margin: 0;
    padding: 0;
    position: relative;
}

.shoplist-wrp .shop .shop-img.w100 {
    width: 100%;
}

@media screen and (max-width:740px) {
    .shoplist-wrp .shop {
        width: 100%;
        display: block;
    }

    .shoplist-wrp .shop .shop-img {
        width: 100%;
    }
}

.shoplist-wrp .shop .shop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shoplist-wrp .shop .meta-wrp {
    width: 50%;
    padding: 1.5em;
    text-align: left;
}

.shoplist-wrp .shop .meta-wrp.w100 {
    width: 100%;
}

@media screen and (max-width:740px) {
    .shoplist-wrp .shop .meta-wrp {
        width: 100%;
        padding: 1em;
    }
}

.shoplist-wrp .shop .meta-wrp h4 {
    font-size: .9em;
    line-height: 1.5;
    margin-bottom: .5em;
    text-align: left;
}

.shoplist-wrp .shop .meta-wrp h5 {
    font-size: .75em;
    line-height: 1.5;
    margin-bottom: 1em;
    text-align: left;
    font-family: sans-serif;
}

.shoplist-wrp .shop .meta-wrp p {
    font-size: .74em;
    line-height: 1.6;
    text-align: left;
    font-family: sans-serif;
}

.shoplist-wrp .shop .meta-wrp p.t-link {
    margin-top: .75em;
    padding-left: 1.75em;
    color: #6b6f72;
    word-break: break-all;
    position: relative;
}

.shoplist-wrp .shop .meta-wrp p.t-link .sc {
    display: inline-block;
    margin-right: .2em;
    font-size: 1.3em;
    vertical-align: middle;
    position: absolute;
    left: 0;
}

.shoplist-wrp .shop .meta-wrp p.sml {
    font-size: .65em;
    margin-top: 1em;
}

/*------- text wrp -------*/
.text-wrp h1 {
    margin-bottom: 1.5em;
}

.text-wrp p {
    margin-bottom: 1em;
}

.text-wrp p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width:740px) {
    .text-wrp {
        text-align: justify;
    }

    .text-wrp br {
        display: none;
    }
}

/*------- event wrp -------*/
.event-wrp .inner {
    padding: 3em 20px;
}

.event-wrp figure.col {
    max-width: 400px;
    flex-grow: 0;
    margin: 0;
    margin-right: 40px;
}

.event-wrp .text {
    text-align: left;
}

@media screen and (max-width:740px) {
    .event-wrp figure.col {
        width: 100%;
        height: 100vw;
        max-width: 100%;
        flex-grow: 0;
        margin: 0 0 10%;
    }

    .event-wrp .text {
        width: 100%;
        text-align: center;
    }
}

.event-wrp .event-title {
    display: block;
    margin-bottom: 1.75em;
    font-size: 1.1em;
}

.event-wrp .event-title::after {
    content: '';
    display: block;
    width: 2em;
    margin: 1em auto 0;
    border-top: solid 1px;
}

.event-wrp p {
    margin-bottom: 1em;
    line-height: 1.8;
}

.event-wrp .event-name {
    margin-bottom: 1em;
    text-align: center;
    font-size: 1.25em;
    font-weight: bold;
}

.event-wrp .p-sub {
    margin-bottom: 1em;
    font-weight: bold;
    font-size: 1.1em;
}

.event-wrp .date {
    margin-bottom: .3em;
}

.event-wrp .instagram,
.event-wrp .hp {
    color: #6b6f72;
    font-size: .9em;
}

.event-wrp .sc {
    display: inline-block;
    margin-right: .2em;
    font-size: 1.3em;
    vertical-align: middle;
}

.event-wrp .note {
    padding-bottom: 1em;
}

/* img-list */
.img-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-cap-box {
    display: flex;
    flex-direction: column;
}

.img-cap-box>img {
    width: 100%;
    height: auto;
    flex-grow: 1;
    object-fit: cover;
}

.img-list .caption {
    height: 6em;
    padding: 1em 0 0;
    font-size: .8em;
    line-height: 1.6;
}

.img-list .img-box+.caption {
    margin-top: -20px;
}

@media screen and (max-width:740px) {
    .img-list .caption {
        height: auto;
        font-size: .6em;
        text-align: left;
    }

    .img-list .img-box+.caption {
        margin-top: -3vw;
    }
}