<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
#gourmet div {
    box-sizing: border-box;
}
#gourmet .mainimage {
    width: 100%;
    padding: 30px 20px;
    background: url(../img/bg_main.jpg) no-repeat center;
    background-size: cover;
    margin-bottom: 10px;
}
#gourmet .mainimage .inner {
    max-width: 411px;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    background: rgba(255,255,255,0.85);
    text-align: center;
}
#gourmet .mainimage .inner img {
    vertical-align: middle;
}

#gourmet .contentArea .shopDetail {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

.contentArea {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
}

#container .contentArea {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

h2.title {
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 60px;
    color: #333333;
    border-bottom: 1px solid #333333;
}

h2.title span {
    color: #cd0035;
}

h3.title {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}

#map {
    margin-bottom: 70px;
}

#map .inner {
    display: table;
    width: 100%;
}

#map &gt; .inner &gt; div {
    display: table-cell;
}

#map .floors {
    vertical-align: top;
    text-align: right;
    width: 400px;
}

#map .floors &gt; div {
    margin-bottom: 30px;
    background-color: #efefef;
    text-align: center;
}

#map .floors .inner {
    padding: 30px 40px;
    box-sizing: border-box;
}

#map h3 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 10px;
}

#map .items {
    letter-spacing: -.4em;
    text-align: left;
}

#map .item {
    font-size: 22px;
    display: inline-block;
    width: 33%;
    letter-spacing: normal;
    background-color: #fff;
    border: solid 1px #efefef;
    box-sizing: border-box;
}

#map .item a {
    color: #333333;
    text-decoration: none;
    display: block;
    padding: 10px;
    text-align: center;
    transition: 0.2s;
    -webkit-transition: 0.2s;
}

#map .item a:hover {
    background-color: #cd0035;
    color: #fff;
}

#map .item.on a {
    background-color: #cd0035;
    color: #fff;
}

#map .image {
    vertical-align: middle;
    text-align: center;
    padding-right: 20px;
}

#map .image img[usemap] {
    max-width: 100%;
    height: auto;
}

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

    #map {
        margin-bottom: 10px;
    }

    #map &gt; .inner &gt; div {
        display: block;
    }
    #map .image {
        padding-right: 0;
        margin-bottom: 40px;
    }
    #map .floors {
        width: 100%;
    }
    #map .item {
        width: 25%;
    }
}

@media only screen and (max-width: 500px) {
    #map .floors .inner {
        padding: 10px;
    }
    #map h3 {
        font-size: 18px;
    }
    #map .item {
        font-size: 15px;
    }
    #map .item a {
        padding: 5px;
    }
}

#legend {
    padding-bottom: 10px;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 70px;
}
#legend .subTtl {
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dfdfdf;
}
#legend .item {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
    width: 221px;
}

#legend .item img {
    vertical-align: middle;
    margin-right: 10px;
}

#shops {
    letter-spacing: -.4em;
}

.shop {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    width: 23.5%;
    margin-bottom: 20px;
}

.shop {
    margin-right: 2%;
}

.shop:nth-child(4n){
    margin-right:0;
}

.shop a .imageArea {
    margin-bottom: 10px;
    transition: opacity 0.2s ease;
}

.shop a:hover .imageArea {
    opacity: 0.7;
}

.shop a .tagArea span {
    margin-bottom: 5px;
    display: inline-block;
    letter-spacing: normal;
    margin-right: 5px;
}

.shop a .nameArea {
    font-size: 18px;
    padding-right: 30px;
    position: relative;
    color: #333;
    margin-bottom: 15px;
    display: inline-block;
    transition: color 0.2s ease;
}

.shop a .nameArea:after {
    content: '';
    width: 7px;
    height: 10px;
    background: url(../img/icon_tri.png) no-repeat center center;
    position: absolute;
    top: 49%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 3px;
    /* transition: right 0.3s ease ,opacity 0.3s ease; */
}

.shop a .nameArea:before {
    content: '';
    width: 7px;
    height: 10px;
    background: url(../img/icon_tri.png) no-repeat center center;
    position: absolute;
    top: 49%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px;
    opacity: 0;
    /* transition: right 0.3s ease ,opacity 0.3s ease; */
}

.shop a:hover .nameArea {
    color: #cd0035;
}

.shop a:hover .nameArea:before {
    animation: arrowbefore .5s;
}

.shop a:hover .nameArea:after {
    animation: arrowafter .5s;
}

@media screen and (max-width: 960px){
    .shop {
        width: 31%;
        margin-right: 3.5%;
    }
    .shop:nth-child(3n){
        margin-right:0;
    }
    .shop:nth-child(4n){
        margin-right: 3.5%;
    }
}

@media only screen and (max-width: 500px) {
    #shops {
        text-align: center;
    }
    .shop {
        width: auto;
        margin-right:0;
        text-align: left;
    }
    .shop:nth-child(4n){
        margin-right:0;
    }
}

@keyframes arrowbefore {
	100% {
        opacity: 1;
        right: 3px;
	}
}
@keyframes arrowafter {
	99% {
        opacity: 0;
        right: -6px;
	}
	100% {
		opacity: 0;
	}
}
</pre></body></html>