* {
    line-height: 1.2;
    word-break:break-all;
}

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: 1001;
    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('/common-2023/img/icon-home.svg')
}

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

#nav-map a::before,
.icon-seach::before {
    background-image: url('/common-2023/img/icon-map-w.svg')
}

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

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

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

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

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

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

.noBottom {
    margin-bottom:0px !important;
}

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

main.top {
    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;
}

#map-img {
    display: none;
}
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;
    padding-bottom:100px !important;

}

.top-bnr {
    display: flex;
    justify-content: center;
    margin-top:-90px;
}
.top-bnr a {
    width:400px;
}

.content-section,
.shop-content-section {
    margin: 0 0 50px 0;
}


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

.shop-detail-header {
    position: relative;
}

.shop-detail-header h1 {
}

.shop-detail-header .shop-detail-back {
    color:#fff;
    position: absolute;
    left:15px;
    top:5px;
    font-size:30px;
}

.title-under {
    margin:1em 0 0;
    text-align: justify;
}

.title-under p {
    font-size: var(--text-size-M);
    color:var(--text-default-color);
}


.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:left;
    align-items: stretch;
    color: var(--white-color);
    margin-left:-10px;

    
}

.tile-style01 .slick-track {
    display: flex;
    justify-content:center;
    align-items: stretch;

}
.tile-style01 .slick-slide {
    height:auto !important;
}

.tile-style01 a {
    width: 240px;
    padding: 1em;
    border-radius: 10px;
    text-align: left;
    margin-left:10px;
    margin-bottom:10px;
    flex-grow: 1.5;
    flex-shrink: 1;
}

.slider.tile-style01 a {
    flex-grow: unset;
}

.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: flex-start;
    flex-basis: calc(33.3% - 30px);
    padding: 1em 0;
    border-bottom: var(--border-color) 1px solid;
    margin-right: 30px;
}

.tile-style02 .tile-right {
    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-left {
    margin-right:1em;
}

.tile-style02 .tile-left img {
    height: 100px;
    width: 100px;
    max-width: 100px;

    object-fit: cover;
    object-position: center;
}


.newshop .tile-style02 a {
    flex-basis: 100%;
    border:2px dotted var(--primary-color);
    padding:20px;
    background-color: rgba(0,0,0,0.05);
}

.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: 10px;
}

.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;
    */
    overflow: hidden;
    text-overflow: ellipsis;

}

.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: 100%;
}

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

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

.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;
    min-width: 20px;
    height: 15px;
    background-size: contain;
    line-height: 30px;
    margin-right: 5px;
}

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

.icon-before-map::before {
    background-image: url(/common-2023/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;
}


.cont-footer {
    display: none;
   margin-top:-100px;
   text-align: center;
   position: relative;
   padding:50px;
   z-index: 10;
}

.cont-footer .r2 {
   
    display: inline-block;
    color:var(--primary-color);
    border:1px solid var(--primary-color);
    padding:0.4em 1em;

}

footer {
    color:var(--white-color);
}

footer .footer-cont {
    display: flex;
    justify-content: space-between;
    max-width: calc(var(--content-max-width) + 100px);
    margin:2em auto ;
    padding:0 1.5em;

}

footer .footer-cont .r2 {
    display: inline-block;
    color:var(--white-color);
    border:1px solid var(--white-color);
    padding:0.4em 1em;
}

.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: 10px 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(/common-2023/img/icon-shop.svg);
}

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

.icon-keyword {
    background-image: url(/common-2023/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-L);
    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-L);
}

.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:260px;
}

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

    .shop-card.shop-card-half  {
        width:100% !important;
    }
}

.shop-card.shop-card-half {
    width:50%;

}

.shop-card {
    width:100%;
    justify-content: space-between;
    padding: 30px 30px 30px 0;
   border-bottom: 3px solid #F4F4F4;
}

.shop-text {
    width:calc(100% - 260px);
    padding: 0 0 0 20px;
    text-align: left;
}

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

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

/*　shop-index-slider-1 */
.slick-dotted.slick-slider {
    padding-left: 0;
    margin:20px 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: cover;
    object-position: center;
}

.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: 20px;
    background-color: var(--sub-bg-color);
}

.icon-before-coupon.shop-tokuten {
    align-items: inherit;
    font-size: var(--text-size-L);
}

.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(/common-2023/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(/common-2023/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(/common-2023/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(/common-2023/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;
   /*max-width: 500px;*/

}

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

}

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

.coupon-area-title::before {
    content: url(/common-2023/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: 3em;
}

/* 店舗詳細の最新情報スライド */
.shop-card-message-slider .slick-slide {
    width: 400px;
    /* 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;
    text-align: left;
}

.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: 100%;
}

.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-title {
    font-size: var(--text-size-L);

}
.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(/common-2023/img/icon-shop2w.svg);
    margin-right: 10px;
}

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


.gm-style iframe + div { border:none!important; }


.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);
}




/*　会員特典　*/
#tokutenBox .coupon-area {
   margin-bottom:30px;
}
#tokutenBox{ margin-bottom: 20px; }
	#tokutenTitle{ text-align: center; }
	#tokutenText{ padding: 10px; background: #f9f9f9; }
	#tokutenTitle img{ width: 40%; }

#tokutenBox .tokutenBoxApp{
	border:#fff 1px solid;
	padding:10px;
	gap:10px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-top:1em;
}


#tokutenBox .tokutenBoxApp dt {
	text-align: left ;
	vertical-align: middle;
	line-height: 1.4;
	padding-right:10px;
	padding-left:10px;
}

#tokutenBox .tokutenBoxApp dd  {
	vertical-align: middle;
}
#tokutenBox .tokutenBoxApp dd a{
	display: block;
	text-align: center;
	border-radius: 5px;
	color:#fff;
	padding:10px 10px;
	font-size:12px;
}


#tokutenBox .tokutenBoxApp dd img
{
	width:100%;	
	
}

#tokutenBox .tokutenBoxPC
{
	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
	min-width: 120px;

	
}
#tokutenBox .tokutenBoxPC figure {
	padding-left:0;
    width:120px;
}

#tokutenBox .tokutenBoxPC figure img {
    width: 100%;
}
#tokutenBox .tokutenBoxPC figure figcaption {
	display: block;
	text-align: center;
	background-color: #000;
	color:#fff;
	border-radius: 30px;
}

.coupon-member-img {
    margin:1em 0;
}




/*　会員登録ボタン　*/
/*
#btn_memberBox{ margin-bottom: 20px; }

#btn_member{ display: block; padding: 10px 0; background: #00a445; border-radius: 10px; color: #fff; text-align: center; font-size: 24px; font-weight: bold; }

*/

#btn_member small {
    font-size:0.6em;
}

/*
 GPS
 ****************/

 .map-cont {
    margin-top:1.5em;
 }
 .gps-tab{
    border-bottom: 6px solid #009A3D;
}
/*タブのスタイル*/
.tab_item {
	width: calc(100%/2);
  	height: 40px;
  	border-bottom: 3px solid #009A3D;
  	background-color: #d9d9d9;
	line-height: 40px;
  	font-size: 14px;
  	text-align: center;
  	color: #fff;
  	display: block;
  	float: left;
  	text-align: center;
  	font-weight: bold;
  	transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 16px 0 0;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #009A3D;
  color: #fff;
}

.tab-icon01:before{
	content: url(/img/icon/list-ul.png);
	position: absolute;
	top: 2px;
    left: 0;
	right: 115px;
	margin: auto;
		
}
.tab-icon01,.tab-icon02{
	position:relative;
}
.tab-icon02:before{
	content: url(/img/icon/map-pin.png);	
	position: absolute;
	top: 8px;
    left: 0;
	right: 115px;
	margin: auto;
}
.tab_content_description img{
	width: 100%;
}
.agreement-p{
	margin: 24px 0 32px;
}



#gps_map {
    height: calc(100vh - 380px);

    width: 100%;
    border-radius: 15px;
}
.tab_content_nopadding {
	padding:0;
}

.map_info {
	line-height:1.0;
	padding-top:7px;
}
.map_info * {
	font-size:10px;	
}
.map_info .map_info_thumbnail {
	/*width:80px;*/
	width:60px;
	float:left;
}
.map_info .map_info_thumbnail img {
	width:100%;
}
.map_info .map_info_text {
	padding-left:70px;
	/*width:120px;*/
}

.map_info_text table {
	width:100%;
}
.map_info_text table td {
	text-align: center;
}

.map_info_text .info_cat {
	color:#fff;
}

.map_info_text .info_area {
	color:#000;
	background-color: #ddd;
}
.map_info_text .info_distance {
	color:#fff;
	background-color: #000;
}

.map_info_text strong {
	display: block;
	font-size:12px;
	font-weight:bold;
	padding:8px 0 3px 0;
	line-height: 1.2;
}

.map_info_link {
	display: table;
	width:100%;
	margin-top:5px;
}

.map_info_link a {
	/*display: table-cell;*/
	width:90%;
	margin: 0 auto 8px;
	display: block;
	border-radius:100px;
	padding:3px 2px;
	text-align: center;
}

.map_link_detail {
	color:#000;
	display: block;
	background-color: #ddd;
	width:100px;
}
.map_link_nav {
	color:#000;
	border:#ddd 1px solid;
	display: block;
	background-color: #fff;
}


.gps_nav {
	padding:3px 0;
	background-color:#fff;
}

.gps_nav ul {
	display:table;
	width:100%;
}

.gps_nav ul li {
	height:40px;
	display:table-cell;
	vertical-align: top;
	text-align: center;
}

.gps_nav ul li.gps_nav_cat1 {
	width:100px;
	text-align: center;
	
	vertical-align: middle;
}
.gps_nav ul li.gps_nav_cat1 span {
	display: block;
	color:#00a445;
	font-size:12px;
}

.gps_nav ul li.gps_nav_cat2 {
	width:auto;
}

.gps_nav ul li.gps_nav_reload {
	width:45px;
	padding-left:5px;

}

.gps_nav_reload a {
	
	display: block;
	width:40px;
	height:40px;
	background-color: #00a445;
	border-radius: 5px;
	position: relative;
}

.gps_nav_reload a img {
	position:absolute;
	top:7px;
	left:7px;
	width:26px;
	
}

.fan_list {
    position: relative;

}
.btn-fan-del {
  position: absolute;
  right:0;
  top:50%;
  transform: translate(0 ,-50%);
  color:#C34040;
    padding-top:15px;
    text-align: center;
}

.btn-fan-del::before {
    content:'';
    background:url('/common-2023/img/icon-del.svg') center center no-repeat;
    background-size: contain;
    display: block;
    margin:0 auto 5px;
    width:20px;
    height:20px;
}

.fan_list .tile-right {
   padding-right:40px;
}


/*
ダイアログ
=================== */

.dialog {
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 100;
	line-height: 1.0;
	
}

.dialog.nodisplay {
    display:none;
}

.dialog_content {
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	width:400px;
	background-color: #fff;
	padding:15px;
	border-radius: 15px;
	max-width:90%;


}
.dialog_body{
	overflow-y: auto;
	max-height: 60vh;
    font-size:0.9em;

}

.dialog_content h2 {
	display: block;
	font-weight: bold;
	font-size:1.0em;
	color:#48A151;
	border-bottom:1px solid rgba(0,0,0,0.1);
	padding-bottom:0.6em;
	text-align: center;
	line-height: 1.4;

}

.dialog_content strong {
	display: block;
	font-size: 1.2em;
	padding-bottom:0.4em;
	font-weight: bold;
	text-align: center;

}

.dialog_main {
	display: flex;
	padding: 15px 15px 15px;
	text-align: left;

}
.dialog_main p{
	font-size:0.9em;
	line-height: 1.4;

}

.dialog_main img {
	margin-right:15px;
}

.dialog_red {
	background-color: #C34040;
	padding:15px;
	border-radius: 15px;

}

.dialog_red strong {
	color:#fff;
	

}

.dialog_red p {
	color:#fff;
	font-size:0.9em;
	line-height: 1.4;


	
}
.dialog_white {
	background-color: #fff;
	padding:10px;
	border-radius: 15px;
	margin-top:10px

}

.dialog_white strong {
	color:#C34040;

}

.dialog_white p {
	display: block;
	font-weight:bold;
	font-size:1.5em;
	text-align: center;
	color:#000;
}
.dialog_btn{
	text-align: center;

}

.dialog_btn a {
	
}

.dialog_btn_style {
	cursor: pointer;
	text-align: center;
	margin-top:10px;
	display: block;
	background-color: #71B659;
	border-radius: 15px;
	padding:0.8em;
	color:#fff;
}

.dialog_btn_style2 {
	cursor: pointer;

	text-align: center;
	margin-top:10px;
	display: block;
	background-color: rgba(0,0,0,0.2);
	border-radius: 15px;
	padding:0.8em;

}

.link_text {
    color:var(--primary-color);
    border-bottom:1px solid var(--primary-color);
    font-size:var(--text-size-L);
    display: inline;
}

/*
同意画面
=================== */
.agreement {
    height:calc(100vh - 300px);
    overflow-y: auto;
    text-align: justify;
    padding:2em 1em;
    border:1px solid var(--border-color);
    margin:2em 0 0;
    font-size: var(--text-size-M);
    border-radius: 10px;

    
}

.agreement dl {

}

.agreement dl dt {
    margin-bottom:0.5em;
    color:var(--primary-color);
}

.agreement dl dd {
    line-height: 1.4;
    margin-bottom:1em;

}

.agreement ul {
    margin:1em 0 0 1em;
    padding:0;

    

}

.agreement ul li {
    line-height: 1.4;
    margin-bottom:0.5em;
    text-indent: -1.5em;
    padding-left:1.5em;

}

.btn_flex2 {
    display: flex;
    flex-wrap: nowrap;
    gap:5px;
}

.btn_flex2 > * {
    width:50%;
}



/* LOADING
 ================================== */
 #pageLoader {
    top:0;
    left:0;
    position: fixed;
    height:100vh;
    width:100vw;
    background-color: var(--main-bg-color);
    z-index: 1000;


 }

 .myLoading{
    
	position: absolute;
    top:calc(50% - 80px);
    left:50%;
}
.loader,
.loader:after {
	display: block;
	border-radius: 50%;
	width: 4em;
	height: 4em;
}
.loader {
    margin: 0 auto 10px;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.0em solid rgba(0, 0, 0, 0.3);
    border-right: 1.0em solid rgba(0, 0, 0, 0.3);
    border-bottom: 1.0em solid rgba(0, 0, 0, 0.3);
    border-left: 1.0em solid #009A3D;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}






@-moz-keyframes dots-loader {
  0% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  8.33% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  16.67% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  25% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  33.33% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
  }
  41.67% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  50% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  58.33% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  66.67% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  75% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  83.33% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
  }
  91.67% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  100% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
}
@-webkit-keyframes dots-loader {
  0% {
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  8.33% {
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  16.67% {
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  25% {
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  33.33% {
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
  }
  41.67% {
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  50% {
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  58.33% {
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  66.67% {
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  75% {
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  83.33% {
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
  }
  91.67% {
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  100% {
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
}
@keyframes dots-loader {
  0% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  8.33% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  16.67% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px 14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  25% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  33.33% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae -14px -14px 0 7px;
  }
  41.67% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  50% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  58.33% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 -14px 14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  66.67% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 -14px -14px 0 7px, #6d7 -14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  75% {
    -moz-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
    -webkit-box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
    box-shadow: #f86 14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px -14px 0 7px, #4ae 14px -14px 0 7px;
  }
  83.33% {
    -moz-box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
    -webkit-box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
    box-shadow: #f86 14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae 14px 14px 0 7px;
  }
  91.67% {
    -moz-box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px 14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
  100% {
    -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
    box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  }
}
/* :not(:required) hides this rule from IE9 and below */
.dots-loader:not(:required) {
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: transparent;
  border-radius: 100%;
  -moz-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  -webkit-box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  box-shadow: #f86 -14px -14px 0 7px, #fc6 14px -14px 0 7px, #6d7 14px 14px 0 7px, #4ae -14px 14px 0 7px;
  -moz-animation: dots-loader 5s infinite ease-in-out;
  -webkit-animation: dots-loader 5s infinite ease-in-out;
  animation: dots-loader 5s infinite ease-in-out;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}


.handover {
    background-color: #C34040;
    color:#fff;
    border-radius: 8px;
    padding:1em;
    margin:8px 0;
}
.handover h3 {
    margin-bottom:0.5em;
}
.handover input[type=text] {
    background-color: var(--sub-bg-color);
    border: none;
    padding: 0.8em;
    text-align: center;
    font-size: var(--text-size-LL);
    display: block;
    width:100%;
    border-radius: 8px;
}

.handover input::placeholder {
    color:var(--text-gray-color);
    opacity: 0.5;
}

.handover input:focus {
    outline: none;
}
