* {
    line-height: 1.2;
}

h2 {
    font-size:var(--text-size-LL);
}

body {
    background-color: var(--main-bg-color);
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 700;
    font-style: normal;
}

a {
    text-decoration: none;
    color: inherit
}

nav {
    width: 100%;
    color: var(--white-color);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 30px;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 50%;
    transform: translateX(-50%);


}

nav .logo {
    background-color: var(--white-color);
    min-width: 180px;
    height: 160px;
    padding: 20px 0;
    text-align: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

nav .logo img {
    vertical-align: middle;
    height: auto;
    width: 90px;
    margin: 0 auto;
}



nav ul {
    padding: 15px 40px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-color: var(--main-bg-color);
    border-radius: 100px;
    margin: 10px 0;
    z-index: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    position: relative;
    display: block;
    font-size: var(--text-size-S);
    color: var(--white-color);
    text-align: center;
    width: 100px;
    z-index: 2;
}

nav ul li a::before {
    position: relative;
    content: '';
    display: block;
    height: 42px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 27px auto;
    z-index: 1;

}

nav ul li::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.2);
    content: '';
    width: 90px;
    height: 90px;
    border-radius: 100px;
    z-index: 0;
    display: none;
}

nav ul li:hover::after {
    display: block;
}

#nav-home a::before {
    background-image: url('/cmn/img/icon-home.svg')
}

#nav-search a::before,
.icon-seach::before {
    background-image: url('/cmn/img/icon-search.svg')
}

#nav-coupon a::before {
    background-image: url('/cmn/img/icon-coupon.svg')
}

#nav-favorite a::before {
    background-image: url('/cmn/img/icon-favorite.svg')
}

#nav-account a::before {
    background-image: url('/cmn/img/icon-account.svg')
}

.icon-map-w {
    display: inline-flex;
    align-items: center;
}

.icon-map-w::before {
    content: "";
    background-image: url('/cmn/img/icon-map-w.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

main {
    padding-top: 160px;
    text-align: center;
    max-width: calc(var(--content-max-width) + 400px);
    min-width: var(--content-min-width);
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

main.top,
main.search {
    margin-top: -40px;
}

#main-img,
#map-img {
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 1);
    text-align: center;
    height: 550px;
    border-radius: 15px;
    margin: 0 20px;
    z-index: 1;
}

main video,
main iframe

{
    width: 100%;
    margin: 0 auto;
    position: absolute;

    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

/*
#main-img::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.0);
	background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 10%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
}
*/

#main-content {
    position: relative;
    width: 100%;
    background-color: var(--white-color);
    margin-top: -30px;
    border-radius: 15px;
    z-index: 1;
    padding: 50px;

}

.content-section,
.shop-content-section {
    margin: 0 0 5em 0;
}

.h1-style01 {
    color: var(--white-color);
    font-size: var(--text-size-LL);
}


.title-style01 {
    display: flex;
    justify-content: space-between;

}

.title-style01 h2 {
    color: var(--primary-color);
    font-size: var(--text-size-LL)
}


.title-style01 h2 small {
    color: var(--text-default-color);
}


.title-style01 .linkStyle01 {

    color: var(--text-link-color)
}

.title-style01 .linkStyle01::after {
    content: ">";
    padding-left: 0.8em;
}

.tile-style01 {
    margin-top: 1.5em;
    display: flex;
    justify-content:center;
    align-items: stretch;
    color: var(--white-color);
    margin-left:-10px;

    
}

.tile-style01 a {
    width: 300px;
    padding: 1em;
    border-radius: 10px;
    text-align: left;
    margin-left:10px;
    margin-bottom:10px;
    
}

.tile-style01 .tile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}


.tile-style01 .tile-header .icon-cat {
    background-color: rgba(0, 0, 0, 0.2);
}

.tile-style01 .tile-header .icon-place {}

.tile-style01 .tile-body {
    margin-top: 1em;
    font-size: VAR(--text-size-L);
}

.tile-style01 .date {
    color:var(--primary-color);
}

.tile-style01 .tile-footer {
    margin-top: 1em;
    display: flex;
    align-items: center;
    font-size: var(--text-size-M);
}

.tile-style01 .tile-footer img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    object-fit: cover;
    margin-right: 1em;
}

.tile-style02 {
    display: flex;
    flex-wrap: wrap;
    /*margin-right: -30px;*/
    align-items: stretch;
    margin-top: 1.5em;
}

.tile-style02 a {
    display: flex;
    justify-content: space-between;
    flex-basis: calc(33.3% - 30px);
    padding: 1em 0;
    border-bottom: var(--border-color) 1px solid;
    margin-right: 30px;
}

.tile-style02 .tile-left {
    text-align: left;
}

.tile-style02 .tile-body {}

.tile-style02 .tile-body strong {
    margin: 1em 0 0;
    display: block;
}

.tile-style02 .tile-body p {
    margin: 0.5em 0 0;
    color: var(--primary-color);
    font-size:var(--text-size-M);
}


.tile-style02 .tile-right {
    height: 100px;
}

.tile-style02 .tile-right img {
    height: 100px;
}

.tile-style03 {
    text-align: left;
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    margin-top: 1.5em;
}

.tile-style03 a {
    background-color: var(--sub-bg-color);
    border-radius: 10px;
    width: 300px;
    padding: 1em;
    margin-right: 20px;
}

.tile-style03 .tile-head {
    display: flex;
    align-items: center;

}

.tile-style03 .tile-head .tile-head-img {
    min-width: 50px;
    min-height: 50px;
    width:50px;
    height:50px;
    border-radius: 100px;
    /*background-color: var(--white-color);*/
    /*padding: 10px;*/
    margin-right: 0.5em;
}

.tile-style03 .tile-head .tile-head-img.padding {
    text-align: center;
    background-color: var(--white-color);
}
.tile-style03 .tile-head .tile-head-img.padding img {
    margin:10px auto;
    width:60%;
    border-radius: 0;
}

.tile-style03 .tile-head img {
   /*object-fit: contain;*/
    width: 100%;
    height: auto;
    border-radius: 100px;
}

.tile-style03 .tile-body {
    margin: 1em 0;
    font-size: var(--text-size-M);
}

.tile-style03 .date {
    color:var(--primary-color);
    padding-bottom:0.3em;
}

.tile-style03 .tile-body p {
    max-height:150px;
    overflow-y: auto;

}

.tile-style04 {
    text-align: start;
    margin-bottom: 2em;
}

.tile-style04 h3 {
    color: var(--primary-color);
}

.tile-style04 h3:after {
    border-bottom: 1px solid var(--sub-bg-color);
    content: '';
    display: block;
    height: 1em;
    margin: 0 calc(50% - 50vw);
    padding-bottom: 1em;
    width: 100vw;
}

.button-style01,
input.button-style01 {
    background-color: var(--main-bg-color);
    border: none;
    color: var(--white-color);
    font-size: 1.25em;
    padding: 1.25em;
}

.button-style02,
input.button-style02 {
    background-color: var(--white-color);
    border: 1px solid var(--text-gray-color);
    font-size: 1.25em;
}

.button-style03 {
    background-color: var(--main-bg-color);
    border: 2px solid var(--white-color);
    border-radius: 100px;
    color: var(--white-color);
    font-size: var(--text-size-L);
    padding: 0.5em 1.5em;
    word-spacing: keep-all;
}

.button-style03.icon-map-w {
    position: absolute;
    bottom: 10px;
	/*top: calc(50% + 80px);*/
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
white-space: nowrap
}

.button-style04 {
    background-color: var(--white-color);
    border-radius: calc(20px + 1em);
    color: var(--primary-color);
    display: block;
    margin-top: 1em;
    padding: 20px;
    text-align: center;
}

.button-style05 {
    background-color: var(--sub-bg-color);
    border-radius: 2em;
    color: var(--primary-color);
    display: block;
    margin: 1em;
    padding: 1em;
    text-align: center;
}

.box-style01 {
    background-color: var(--white-color);
    border-radius: 10px;
    color: #C34040;
    padding: 1em;
    margin: 1em 0;
}

.text-align-c {
    text-align: center;
}

.icon-before-coupon,
.icon-before-map {
    display: inline-flex;
    align-items: center;
}

.icon-before-coupon::before,
.icon-before-map::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 15px;
    background-size: contain;
    line-height: 30px;
    margin-right: 5px;
}

.icon-before-coupon::before {
    background-image: url(/cmn/img/icon-coupon-green.svg);
    background-position: left center;
    background-repeat: no-repeat;
}

.icon-before-map::before {
    background-image: url(/cmn/img/icon-map.svg);
    background-position: left center;
    background-repeat: no-repeat;
    height: 30px;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

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

.flex-jcsb {
    justify-content: space-between;
}

.agreement-p {
 display:none;
}


footer {
    margin: 40px auto;
	 max-width: calc(var(--content-max-width) + 400px);

}

.footer_copy {
	display:flex;
	color:#fff;
	justify-content: space-between;


}



.saikoutiku {
display:none;
	position:relative;
	z-index:1;
	margin-top:-100px;
	color:var(--primary-color);
	text-align:center;
	padding-bottom:30px;
}

.saikoutiku p {
display:inline-block;
	border:1px solid var(--primary-color);
	padding:0.2em 0.8em;

}

.footer_copy .right {
	padding:0.2em 0.8em;
	border:1px solid #fff;
}

.content-middle {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 0 140px;
    min-width: calc(var(--content-min-width) - 280px);
}

footer .content-middle {
    padding: 100px 20px;
}

.footer-content {
    justify-content: space-between;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
}

footer figure {
    width: 25%;
    /* height: 230px; */
    /* height: auto; */
    background-color: var(--white-color);
    border: 5px solid var(--main-bg-color);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
}

footer figure img {
    width: 55%;
}

.footer-text {
    width: 62.5%;
    color: var(--white-color);
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

nav.footer_navigation {
    position: relative;
    padding: 0;
    margin: 0;
    transform: none;
    left: auto;
    top: auto;
    flex-wrap: wrap;
}

nav.footer_navigation ul {
    background: none;
    padding: 0;
    margin: 1vw 0;
    width: 100%;
}

nav.footer_navigation ul li a {
    width: 100%;
}

nav.footer_navigation ul:nth-of-type(1) li {
    width: 20%;
}

nav.footer_navigation ul li a:before {
    content: none;
}

nav.footer_navigation ul:nth-of-type(2) {
    justify-content: space-evenly;
}

nav.footer_navigation ul li:hover::after {
    display: none;
}


.footer-text p {
    font-size: 16px;
}

.copywriter {
    color: var(--white-color);
    width: 100%;
    text-align: center;
    margin-top: 100px;
}

.row-01 {
    /* position: absolute;
    top: -50px;
    left: 0; */
    /*width: calc(100% - 80px);*/
    /*margin: calc(-1 * var(--shop-search-top)) 40px 0;*/
}


/* 検索入力フォーム */
.search-content {
    background-color: var(--white-color);
    border-radius: 10px;
    margin-bottom: 5em;
    padding: 0px 20px;
}

.search-box>*:nth-child(-n+4) {
    width: 48%;
}

.search-box {
	margin-top:1.5em;
    justify-content: space-between;
}

.search-box>*:nth-child(5) {
    width: 78%;
}

.search-box>*:nth-child(6) {
    width: 20%;
}

.search-content select,
.search-content input {
    background-color: var(--sub-bg-color);
    border-radius: 10px;
    padding: 0.8em 1em;
    color: var(--text-gray-color);
    position: relative;
    appearance: none;
}

.search-content select::-ms-expand {
    appearance: none;
}

.search-content select,
.search-content option,
.search-content input[type="text"] {
    border: none;
    margin-bottom: 1em;
    padding-left: 4em;
}

.icon {
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: 15px 50%;
    padding-left: 4em;
}

.icon-shop {
    background-image: url(/cmn/img/icon-shop.svg);
}

.icon-map {
    background-image: url(/cmn/img/icon-map.svg);
}

.icon-keyword {
    background-image: url(/cmn/img/icon-keyword.svg);
}

.serach-check {
    display: flex;
    align-items: center;
    height: fit-content;
}

.serach-check input[type="checkbox"] {
    margin-left: 0em;
    margin-right: 2px;
}

.serach-check input[type="checkbox"]:checked {
    margin: 0.75em 1em 0.75em 0;
    display: none;
}

input[type=checkbox]:checked+label {
    box-sizing: border-box;
    cursor: pointer;
    padding: 1em 1em 1em 50px;
    position: relative;
    width: auto;
    height: inherit;
}

input[type=checkbox]:checked+label::before {
    position: absolute;
    top: calc(50% - 8px);
    /* transform: translateY(-50%); */
    /* -webkit-transform: translateY(-50%); */
    -ms-transform: translateY(-50%);
    left: 0;
    display: block;
    margin-top: -8px;
    width: 32px;
    height: 32px;
    content: '';
    background: var(--sub-bg-color);
    border-radius: 10px;
}

input[type=checkbox]:checked+label::after {
    border-right: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    content: '';
    display: block;
    height: 16px;
    left: 12px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 10px;
}

.serach-check label {
    padding: 1em;
    color: var(--text-gray-color);
}

.button-style01,
input.button-style01 {
    background-color: var(--main-bg-color);
    border: none;
    border-radius: 10px;
    color: var(--white-color);
    display: block;
    font-size: var(--text-size-LL);
    text-align: center;
    padding: 0.8em 1.25em;
    width: 100%;
}

.button-style02,
input.button-style02 {
    background-color: var(--white-color);
    border: 1px solid var(--text-gray-color);
    font-size: var(--text-size-LL);
}

.shop-index {
    margin: 30px 0;
    display:flex;
    flex-wrap: wrap;
}

.tile-style02 .shop-card {
    flex-basis: calc(50% - 30px);
}

.shop-thumbnail,
.shop-text {
    
    position: relative;
}
.shop-thumbnail{
    width: 40%;
}


.shop-card {
    width:100%;
    justify-content: space-between;
    /*margin-bottom: 3em;*/
    /*padding-bottom: 3em;*/
    border-bottom: 3px solid #F4F4F4;
}

.shop-text {
    width: 60%;
    padding: 3%;
    text-align: left;
}

.shop-text .shop-status {
    margin-bottom: 1.5em;
}

.shop-text .shop-status .icon-place {
    color: var(--text-gray-color);
}


/*　shop-index-slider-1 */
.slick-dotted.slick-slider {
    padding-left: 0;
}

.slick-dotted.slick-slider.shop-index-slider {
    padding: 0;
    margin: 0;
}

.shop-index-slider .slick-slide {
    /* width: 600px; */
    /* height: 400px; */
    margin: 0;
    position: relative;
    overflow: hidden;
}

.shop-index-slider .slick-slide img {
    display: block;
    width: 100%;
    height: auto;
    /* height: 100%; */
    /* object-fit: cover; */
    object-fit: contain;
}

.shop-index-slider .slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 180px;
    z-index: 1;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.shop-index-slider .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #09000d;
    border-width: 3px 3px 0 0;
    position: absolute;
    top: 24px;
    transform: rotate(45deg);
}

.shop-index-slider .slick-next {
    right: 0;
}

.shop-index-slider .slick-prev {
    left: 0;
}

.shop-index-slider .slick-next::before {
    left: 20px;
}

.shop-index-slider .slick-prev::before {
    border-width: 0 0 3px 3px;
    right: 22px;
}

.shop-index .slick-dots {
    bottom: 0px;
    /* padding: 10px 0; */
}

.shop-index .slick-dots li button {
    color: var(--white-color);
    background-color: var(--white-color);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    padding: 0;
}

.shop-index .slick-dots li {
    width: auto;
    height: auto;
    padding: 15px 0;
}

.shop-index .slick-dots li.slick-active button {
    background-color: var(--primary-color);
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {
    display: none;
}

/*　shop-index-slider-2 */
.shop-index-slider2 .slick-slide {
    margin: 0 60px;
    padding: 30px 0;
    position: relative;
}

.shop-index-slider2 .slick-slide.slide-img {
    width: 600px;
    height: auto;
    overflow: hidden;
    transition: all 0.5s ease 0.5s;
    /* height: 400px; */
    /* opacity: .3; */
    /* transform: scale(.8); */
    transition: transform .5s;
    /* width: 100%; */
}

.shop-index-slider2 .slick-center.slide-img {
    transform: scale(1.2);
    transition: transform .5s;
    opacity: 1;
    /* transform: scale(1); */
}

.shop-index-slider2 .slick-slide.slide-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.shop-index-slider-2 .slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.shop-index-slider-2 .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #09000d;
    border-width: 3px 3px 0 0;
    position: absolute;
    top: 24px;
    transform: rotate(45deg);
}

.shop-index-slider-2 .slick-next {
    right: 0;
}

.shop-index-slider-2 .slick-prev {
    left: 0;
}

.shop-index-slider-2 .slick-next::before {
    left: 20px;
}

.shop-index-slider-2 .slick-prev::before {
    border-width: 0 0 3px 3px;
    right: 22px;
}

.dots-3 .slick-dots {
    text-align: center;
}

.dots-3 .slick-dots li {
    display: inline-block;
}

.dots-3 .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    margin: 6px;
    font-size: 0;
    padding: 0;
    border: 0;
    outline: none;
    cursor: pointer;
    background: #bcbcbc;
    border-radius: 50%;
}

.dots-3 .slick-dots .slick-active button {
    background: #0a467d;
}

.border-area {
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    background-color: var(--sub-bg-color);
}

.icon-before-coupon.shop-tokuten {
    align-items: inherit;
}

.fav-item {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 50px;
    height: 50px;
}

input[type=checkbox]+label.fav {
    box-sizing: border-box;
    cursor: pointer;
    padding: 1px;
    position: absolute;
    left: 0;
    width: auto;
}

input[type=checkbox]+label.fav::before {
    display: block;
    width: 50px;
    height: 50px;
    content: '';
    background-color: var(--white-color);
    background-image: url(/cmn/img/icon-fav.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 60%;
    border-radius: 50%;
    border: 1px solid var(--sub-bg-color);
    position: absolute;
    top: 0;
    left: 0;
}

input[type=checkbox]:checked+label.fav::before {
    display: none;
}

input[type=checkbox]:checked+label.fav::after {
    display: block;
    width: 50px;
    height: 50px;
    content: '';
    background-color: var(--primary-color);
    background-image: url(/cmn/img/icon-favorite.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 60%;
    border-radius: 50%;
    border: 1px solid var(--sub-bg-color);
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 0;
    transform: none;
}

.map-btn,
.shop-btn {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.8em;
    width: 72px;
    height: 72px;
    border: 2px solid var(--main-bg-color);
    border-radius: 10px;
    color: var(--main-bg-color);
    padding: 0.5em;
    margin: 0 0 0 auto;
}

.map-btn:before {
    background-image: url(/cmn/img/icon-map.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: ' ';
    height: 30px;
    width: 40px;
    display: block;
}

.shop-btn:before {
    background-image: url(/cmn/img/icon-shop2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: ' ';
    height: 30px;
    width: 40px;
    display: block;
}

.shop-status.text-title {
    width: 100%;
    text-align: start;
}

.shop-status.text-title {
    width: 100%;
    text-align: start;
}

.shop-status-box {
    width: 100%;
    display: inherit;
    margin: 1em 0;
    text-align: left;
}

.box-left {
    display: inline-block;
    margin: 0 auto 0 0;
    width: auto;
}

.shop-card p,
.coupon-area,
.news-card {
    text-align: start;
}
.news-card{
    margin-bottom:1.2em;
    border:
}
.coupon-area,
.coupon-text {
    width: 49%;
}

.coupon-area {
    background-color: var(--main-bg-color);
    color: var(--white-color);
    border-radius: 10px;
    margin: 3em 0 0 1%;
    padding: 20px 2em;
}

.coupon-text {
    margin: 1em 1% 0 0;
}

.coupon-area-title {
    margin-bottom: 10px;
}

.coupon-area-title::before {
    content: url(/cmn/img/icon-coupon.svg);
    margin-right: 10px;
}

.news-card time {
    color: var(--primary-color);
}

.news-card {
    display: block;
    text-align: start;
}

.news-card time {
    margin-bottom: 0.5em;
    display: block;
}

.shop-card-section-bottom {
    margin-bottom: 1em;
}

/* 店舗詳細の最新情報スライド */
.shop-card-message-slider .slick-slide {
    width: 600px;
    /* height: 400px; */
    margin: 0 40px;
    position: relative;
    overflow: hidden;
}

.shop-card-message-slider .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-card-message-slider .slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 180px;
    z-index: 1;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.shop-card-message-slider .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #09000d;
    border-width: 3px 3px 0 0;
    position: absolute;
    top: 24px;
    transform: rotate(45deg);
}

.shop-detail-inner .slick-dots {
    text-align: center;
}

.shop-detail-inner .slick-dots li {
    display: inline-block;
}

.shop-detail-inner .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    margin: 6px;
    font-size: 0;
    padding: 0;
    border: 0;
    outline: none;
    cursor: pointer;
    background: #bcbcbc;
    border-radius: 50%;
}

.shop-detail-inner .slick-dots .slick-active button {
    background: var(--primary-color);
}

.shop-card-message-slider .slick-slide p {
    margin-top: 1.5em;
}

.shop-card-info-table {
    width: 100%;
    text-align: start;
}

.shop-card-info-table tr {
    display: block;
    padding: 0 0 1em 0;
    position: relative;
} 

.shop-card-info-table tr:after {
    border-bottom: 1px solid var(--sub-bg-color);
    content: '';
    display: block;
    height: 1em;
    margin: 0 calc(50% - 50vw);
    padding-bottom: 1em;
    width: 100vw;
}

.shop-card-info-table th,
.shop-card-info-table td {
    display: block;
    text-align: start;
}

.shop-card-info-table th {
    color: var(--text-gray-color);
}

.shop-card-info-table td a[href^="tel"] {
    color: var(--text-link-color);
    border-bottom: 2px solid var(--text-link-color);
}

.link-box a {
    margin-right: 1em;
    width:80px;
}

.link-box a:last-of-type {
    margin-right: 0;
}

.shop-card-info-table a.map-btn {
    position: absolute;
    top: -0.65em;
    right: 0;
}

.coupon-inner>div {
    width: 100%;
}

.coupon-inner .coupon-area {
    margin: 0 0 3em;
}   

.shop-card .coupon-inner .button-style05 {
    text-align: center;
}

.tostaff-area {
    background-color: #C34040;
    color: var(--white-color);
    border-radius: 10px;
    margin: 3em 0 0 1%;
    padding: 20px 2em;
    text-align: start;
}

.tostaff-area-title {
    margin-bottom: 10px;
}

.tostaff-area-title::before {
    content: url(/cmn/img/icon-shop2w.svg);
    margin-right: 10px;
}

#main-content2 {
    position: relative;
    width: 100%;
    background-color: var(--white-color);
    border-radius: 15px;
    z-index: 1;
}

.map-area iframe {
    width: 100%;
    min-height: 80vh;
    border-radius: 15px;
    margin-bottom: 0;
    vertical-align: bottom;
}

.map-area {
    margin: 2em 0;
    height: fit-content;
    overflow: hidden;
}

.map .shop-card {
    position: absolute;
    bottom: 4em;
    background-color: var(--white-color);
    border-radius: 20px;
    margin: 0 4em;
    padding: 2em;
    width: calc(100% - 8em);
}

