/**/
.c-hamburger-menu {
    position: relative;
}
  
@media screen and (max-width: 999px) {
    .c-hamburger-menu__list {
        background-color: #fff;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        left: 0;
        padding: 10px;
        position: absolute;
        transform: translateX(-100%);
        transition: 0.3s;
        top: 100%;
        width: 100%;
        z-index: 4;
    }

    #hamburger:checked ~ .c-hamburger-menu__list {
        transform: translateX(0%);
        transition: 0.3s;
    }
}
  
.c-hamburger-menu__input {
    display: none;
}
  
.c-hamburger-menu__bg {
    background-color: #000;
    cursor: pointer;
    display: none;
    height: 100vh;
    left: 0;
    opacity: 0.4;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
}
  
#hamburger:checked ~ .c-hamburger-menu__bg {
    display: block;
}
  
.c-hamburger-menu__button {
    display: none;
}
  
@media screen and (max-width: 999px) {
    .c-hamburger-menu__button {
        align-items: center;
        appearance: none;
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 5px; /* カスタマイズしてください */
        height: 32px; /* カスタマイズしてください */
        justify-content: center;
        width: 32px; /* カスタマイズしてください */
        z-index: 5;
        position: relative;
    }
}
  
.c-hamburger-menu__button-mark {
    background-color: #000; /* カスタマイズしてください */
    display: block;
    height: 1px; /* カスタマイズしてください */
    transition: 0.3s; /* カスタマイズしてください */
    width: 20px; /* カスタマイズしてください */
}
  
@media screen and (max-width: 999px) {
    #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
        transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
        transform-origin: 0%; /* カスタマイズしてください */
    }
    #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
        opacity: 0;
    }
    #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
        transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
        transform-origin: 0%; /* カスタマイズしてください */
    }
}
/**/

.sidemenu {
    background: #FFF;
    padding: 8px;
    margin-bottom: 30px;
    border: 1px solid #e6ecf0;
    border-radius: 5px;
}
  
@media screen and (max-width: 999px) {
    .sidemenu {
        background: none;
        margin-bottom: 0;
        border: none;
        border-radius: 0;
    }
}

.disable {
    padding: 8px 0 8px 8px;
    display: block;
    position: relative;
    border-bottom: 1px solid #e6ecf0;
    color: #999;
    text-decoration: line-through;
}

.error_area {
    color: #BB2221;
    padding: 8px 8px 0;
}


.column-main .free {
    font-size: 12px;
    padding: 4px 6px;
    margin-right: 5px;
    background: #e1e1e1;
    color: #000;
    border-radius: 5px;
}

.column-main .basic {
    font-size: 12px;
    padding: 4px 6px;
    margin-right: 5px;
    background: #999ca8;
    color: #fff;
    border-radius: 5px;
}

.column-main .premium {
    font-size: 12px;
    padding: 4px 6px;
    margin-right: 5px;
    background: #cfb867;
    color: #fff;
    border-radius: 5px;
}

.sidemenu .premium::after {
    content: "プレミアムプランのみ";
    text-decoration: none;
    position: absolute;
    right: 3px;
    font-size: 10px;
    padding: 4px 6px;
    background: #cfb867;
    color: #fff;
    border-radius: 5px;
}

.sidemenu .basic::after {
    content: "ベーシックプラン以上";
    text-decoration: none;
    position: absolute;
    right: 3px;
    font-size: 10px;
    padding: 4px 6px;
    background: #999ca8;
    color: #fff;
    border-radius: 5px;
}

.sidemenu ul {
    list-style: none;
}

.sidemenu ul li {
    font-size: 14px;
    padding: 0;
    width: 100%;
}

.sidemenu ul li ul li {
    padding: 0 0 0 8px;
}

.cms_content a:hover,
.sidemenu ul li a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.sidemenu ul li a {
    padding: 8px 0 8px 8px;
    display: block;
    position: relative;
    border-bottom: 1px solid #e6ecf0;
}

.sidemenu ul li a::after {
    position: absolute;
    top: 10px;
    right: 0;
    color: #798b99;
    font: 20px 'Typicons';
    content: "\e049";
    text-decoration: none;
}

.cms_content {
    background: #FFF;
    padding: 8px;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #e6ecf0;
    border-radius: 5px;
}
@media screen and (max-width: 999px) {
    .column-main .cms_content {
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
}

.cms_btn {
    position: absolute;
    top: 8px;
    right: 10px;
    padding: 7px 10px;
    font-size: 13px;
    line-height: 13px;
    border-radius: 5px;
    background: #19BFBF;
    border-bottom: solid 3px #15a2a3;
    font-weight: bold;
    display: block;
    color: #fff;
    text-decoration: none;
}

.cms_btn:hover {
    color: #fff;
    opacity: 0.8;
    text-decoration: underline;
}

.submit,
.del,
.normal {
    padding: 7px 10px;
    font-size: 13px;
    line-height: 13px;
    border-radius: 5px;
    font-weight: bold;
    display: block;
    text-decoration: none;
}

.submit:hover,
.del:hover,
.normal:hover {
    color: #fff;
    opacity: 0.8;
    text-decoration: underline;
}

.submit {
    background: #19BFBF;
    border-bottom: solid 3px #15a2a3;
    color: #fff;
}

.del {
    background: #D9534F;
    border-bottom: solid 3px #a33e3b;
    color: #fff;
}

.normal {
    background: #aaa;
    border-bottom: solid 3px #777;
    color: #fff;
}

.required {
    padding: 3px;
    background: #F7931e;
    margin-left: 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 10px;
}

.cms_table {
    overflow-x: auto;
}

.inline-block {
    display: inline-block;
}

.cms_center_btn {
    display: flex;
    justify-content: center;
    list-style: none;
}

.cms_center_btn li {
    margin: 0 10px 25px;
}

table .cms_center_btn li {
    margin: 0 0 0 10px;
}

.sub_area:not(:first-of-type) {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px dotted #e9e9e9;
}

.sub_area h4 {
    margin-bottom: 10px;
}

span.separating_line {
    display: inline-block;
    margin-top: 0px;
    vertical-align: middle;
    height: 20px;
    border-left: 1px solid #ddd;
    padding-left: 15px;
    margin-left: 15px;
}

.cms_table table th,
.cms_table table th p,
.cms_table table th a,
.cms_table table td,
.cms_table table td p,
.cms_table table td a {
    white-space: nowrap;
}

.cms_table table td:not(:first-of-type) {
    text-align: center;
}

.cms_table table {
    border-collapse: separate;
    border-top: 1px solid #e6ecf0;
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 12px;
    width: 100%;
    background-color: #fff;
    border-spacing: 0;
    word-break: break-all;
    empty-cells: show;
}

.cms_table table tr {
    vertical-align: top;
}

.cms_table table thead th {
    text-align: center;
    min-width: 120px;
}

.cms_table table th {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #e6ecf0;
    background-color: #f3f7fa;
    padding: 15px 20px;
    color: #463f2d;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
    text-align: left;
    position: relative;
    vertical-align: middle;
}

.cms_table table td {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #e6ecf0;
    padding: 15px 20px;
    position: relative;
    vertical-align: middle;
}

.w100p {width: 100%;}
.w50 {width: 50px;}
.w100 {width: 100px;}
.w150 {width: 150px;}
.w200 {width: 200px;}
.w250 {width: 250px;}
.w300 {width: 300px;}
.w350 {width: 350px;}
.w400 {width: 400px;}
.w450 {width: 450px;}
.w500 {width: 500px;}
.w640 {width: 640px;}

.r1 {height: 2em;}
.r2 {height: 4em;}
.r3 {height: 6em;}
.r4 {height: 8em;}

.cms_content input[type="text"],
.cms_content input[type="password"],
.cms_content textarea {
    border: 1px solid #d7dbdf;
    background: #fff;
    padding: 8px 8px;
    vertical-align: middle;
    font-size: 12px;
    border-radius: 4px;
}

.cms_content input[type="text"],
.cms_content input[type="password"] {
    height: 30px;
}

.cms_content input:disabled,
.cms_content textarea:disabled {
    background: #f3f3f3;
}

.cms_content input[type="password"] {
    height: 30px;
}

.cms_input {
    position: absolute;
    opacity: 0;
    size: 16px;
}

.cms_radio {
    position: absolute;
    opacity: 0;
}

.cms_radio + label::before {
    border-radius: 8px;
}

.cms_radio:checked + label::after {
    top: 10px;
    left: 5px;
    background-color: #19bfbf;
    border-radius: 4px;
    height: 6px;
    width: 6px;
}

.cms_label {
    position: relative;
    display: inline-block;
    padding-left: 22px;
    margin-right: 10px;
    font-size: 13px;
    line-height: 26px;
    cursor: pointer;
}

.cms_label::before {
    position: absolute;
    top: 5px;
    left: 0px;
    box-sizing: border-box;
    display: block;
    width: 16px;
    height: 16px;
    content: "";
    background-color: #fff;
    border: 2px solid #e9e9e9;
}

.cms_label::after {
    position: absolute;
    box-sizing: border-box;
    display: block;
    content: "";
}

.cms_input:checked + label::after {
    top: 6px;
    left: 3px;
    width: 14px;
    height: 8px;
    border-bottom: 3px solid #19bfbf;
    border-left: 3px solid #19bfbf;
    transform: rotate(-45deg);
}

.checkbox_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
}

.cms_select_wrapper {
    position: relative;
    width: auto;
    height: auto;
    overflow: hidden;
    color: rgb(19, 19, 30);
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #e9e9e9;
}

.cms_select_wrapper::after {
    position: absolute;
    top: 50%;
    right: 6px;
    z-index: 2;
    display: block;
    margin-top: -5px;
    line-height: 1;
    color: #798b99;
    pointer-events: none;
    font-family: 'Typicons';
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    content: "\e01d";
}

select.cms_select {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 24px;
    padding: 0px 24px 0px 12px;
    font-size: 13px;
    cursor: pointer;
    background-color: #fff;
    border: none;
    outline: none;
    appearance: none;
}

.shop_main_image {
    aspect-ratio: 16 / 9;
    width: 640px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.shop_thumbnail_image {
    aspect-ratio: 1 / 1;
    width: 120px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.cast_image {
    aspect-ratio: 3 / 4;
    width: 140px;
    overflow: hidden;
    position: relative;
    margin: 0 0 10px 0;
}

a .cast_image {
    width: 100px;
    margin: 0 auto;
}

.cast_thumbnail_image {
    aspect-ratio: 3 / 4;
    width: 100px;
    overflow: hidden;
    position: relative;
    margin: 0 auto 10px;
}

.shop_main_image img,
.shop_thumbnail_image img,
.cast_image img,
.cast_thumbnail_image img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

a .banner_image {
    width: 200px;
    margin: 0 auto;
}

.banner_image img,
.dialy_image img {
    width: 100%;
}

.dialy_image {
    width: 240px;
    margin: 0 0 10px 0;
}

.schedule_cast_name {
    text-align: center;
}

.note {
    padding: 10px;
    font-size: 12px;
    background: #f2f3f5;
    border: 1px solid #dcdde0;
    color: #333;
    margin-bottom: 10px;
}

td .note {
    margin: 0;
}

.note p {
    margin-bottom: 16px;
}

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

.annotation {
    font-size: 12px;
    color: #757575;
    display: block;
    padding-top: 8px;
}

/**/

a {
    cursor: pointer;
    color: #13131e;
    text-decoration: none;
}

/* レスポンシブ */
.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 999px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block;
    }
}

/* アイコン */
@font-face {
    font-family: 'Typicons';
    src: url('/common/font/typicons.eot');
    src: url('/common/font/typicons.eot?#iefix') format('embedded-opentype'),
        url('/common/font/typicons.woff') format('woff'),
        url('/common/font/typicons.ttf') format('truetype'),
        url('/common/font/typicons.svg#TypiconsRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

.icon_shop:before,
.icon_tel:before,
.icon_map:before,
.icon_time:before,
.icon_price:before,
.icon_size:before {
    font-family: 'Typicons';
    font-size: 130%;
    padding-right: 3px;
}

.icon_shop:before {content: "\e08a";}
.icon_tel:before {content: "\e0c5";}
.icon_map:before {content: "\e0a0";}
.icon_time:before {content: "\e120";}
.icon_price:before {content: "\e037";}
.icon_size:before {content: "\e04a";}

.icon_line::before {
    content: "";
    background-color: #fff;
    display: inline-block;
    height: 1rem;
    width: 1rem;
    -webkit-mask: url("/common/images/icon_line.svg");
    mask: url("/common/images/icon_line.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    vertical-align: middle;
    margin-right: 5px;
  }

/* 打ち消し線 */
.through {
    text-decoration: line-through;
}

/* positionの初期化 */
.static {
    position: static !important;
}

/* アンカーリンク用 */
@media screen and (max-width: 999px) {
    .anchor-offset {
        padding-top: 118px;
        margin-top: -118px;
    }
}

/* 共通 */
body {
    font-family: -apple-system,BlinkMacSystemFont,Apple TP,Hiragino Kaku Gothic Pro,ヒラギノ角ゴ Pro W3,Roboto,Droid Sans,メイリオ,Meiryo,Helvetica Neue,Helvetica,Arial,sans-serif;
    background: #e6ecf0;
}

h2 {
    font-size: 16px;
    padding: 4px 8px 8px;
    border-bottom: 2px solid #F2F3F5;
    margin-bottom: 8px;
}

h3 {
    font-size: 16px;
    padding: 4px 8px 8px;
}

p {
    font-size: 14px;
    line-height: 1.7;
}

table th,
table th p,
table th a,
table td,
table td p,
table td a {
    font-size: 12px;
    line-height: 1.4;
}

.g-header {
    display: block;
    margin: 0 auto;
    height: 120px;
    position: relative;
    border-top: 2px solid #19bfbf;
    background: #fff;
    z-index: 4;
}
@media screen and (max-width: 999px) {
    .g-header{
        display: block;
        min-width: initial;
        max-width: initial;
        height: 115px;
    }
}
.g-header.index {
    height: 120px;
}
@media screen and (max-width: 999px) {
    .g-header.index {
        height: 75px;
    }
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 80px;
}
@media screen and (max-width: 999px) {
    .logo {
        top: 32px;
        left: 50%;
        margin-left: -80px;
        height: 30px;
    }
}

.logo a {
    display: inline-block;
    width: 320px;
    height: 80px;
    overflow: hidden;
    text-indent: -9999px;
    background: url(/common/images/logo.png) no-repeat left center;
    background-size: cover;
}
@media screen and (max-width: 999px) {
    .logo a {
        width: 160px;
        height: 30px;
        background: url(/common/images/logo.png) no-repeat left top;
        background-size: cover;
    }
}

.h1_wrapper {
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 999px) {
    .h1_wrapper {
        display: block;
    }
}

.page-title {
    font-size: 12px;
    font-weight: normal;
    text-align: right;
    background: #19bfbf;
    color: #fff;
    padding: 0 10px 0 30px;
    position: relative;
    line-height: 30px;
}
@media screen and (max-width: 999px) {
    .page-title {
        font-size: 10px;
        text-align: center;
        background: #fff;
        color: #666;
        padding: 0 0 0 10px;
        text-wrap: nowrap;
        overflow: hidden;
    }
}

.page-title::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0px;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 30px 0 0 20px;
}
@media screen and (max-width: 999px) {
    .page-title::before {
        content: none;
    }
}

.g-footer {
    background: #e6ecf0;
    padding: 20px 10px 20px;
}
@media screen and (max-width: 999px) {
    .g-footer {
        padding: 20px 10px 80px;
    }
}

.g-footer ul {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    font-size: 12px;
    list-style: none;
}

.g-footer ul li {
    margin: 0 4px;
}

.g-footer ul li:not(:first-child) {
    border-left: 1px solid #dcdde0;
    margin-bottom: 8px;
    padding-left: 8px;
}

.g-footer ul li a {
    color: #555;
    text-decoration: none;
    line-height: 1;
    border-bottom: 1px solid #dcdde0;
    padding-bottom: 1px;
}

.copyright {
    color: #767676;
    font-size: 12px;
    margin: 0px auto;
    padding: 10px 0 0;
    text-align: center;
}

.container {
    position: relative;
    background: #f3f7fa;
    padding-top: 30px;
    border-top: 1px solid #e7e7e7;
}
@media screen and (max-width: 999px) {
    .container {
        padding-top: 0;
    }
}

.contents {
    display: flex;
    margin: 0 auto;
    padding: 0 20px;
}
@media screen and (max-width: 999px) {
    .contents{
        display: block;
        min-width: initial;
        max-width: initial;
        padding: 0;
    }
}

.column-main {
    margin-left: 20px;
    width: 100%;
    min-width: 0;
}
@media screen and (max-width: 999px) {
    .column-main{
        margin: 20px 0 0 0;
        min-width: initial;
        max-width: initial;
    }
}

.column-side {
    min-width: 360px;
    max-width: 360px;
    position: relative;
}
@media screen and (max-width: 999px) {
    .column-side{
      min-width: initial;
      max-width: initial;
      margin-top: -50px;
    }
}

.column-single {
    min-width: 800px;
    max-width: 800px;
    position: relative;
    margin: 0 auto;
    padding: 8px;
}
@media screen and (max-width: 999px) {
    .column-single{
      min-width: initial;
      max-width: initial;
    }
}

.l-breadcrumbs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    position: absolute;
    bottom: 0;
}
@media screen and (max-width: 999px) {
    .l-breadcrumbs {
        top: auto;
        border-top: 1px solid #e7e7e7;
        background: #fafafa;
    }
}

.l-breadcrumbs_list {
    font-size: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 8px;
    margin: 0 8px;
    white-space: nowrap;
    justify-content: flex-end;
}
@media screen and (max-width: 999px) {
    .l-breadcrumbs_list {
        justify-content: flex-start;
    }
}

nav ul {
    list-style: none;
}

.l-breadcrumbs_item {
    color: #999;
    position: relative;
}

.l-breadcrumbs_item:last-child {
    padding-right: 12px;
}

.l-breadcrumbs_item:not(:last-child) .l-breadcrumbs_link {
    position: relative;
}

.l-breadcrumbs_link {
    color: #333;
    text-decoration: none;
    line-height: 1;
    border-bottom: 1px solid #dcdde0;
}

.l-breadcrumbs_item:first-child::before {    
    font-family: 'Typicons';
    font-size: 130%;
    content: "\e08a";
    color: #C0C2C7;
}

.l-breadcrumbs_item:not(:last-child)::after {    
    font-family: 'Typicons';
    font-size: 100%;
    padding-right: 3px;
    content: "\e049";
    color: #C0C2C7;
}

.floating-navigation {
    display: none;
    position: fixed;
    width: 100%;
    padding: 10px 10px 13px;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 999;
    border-top: 1px solid #e1e1e1;
}

.contact_box {
    display: none;
    padding: 10px 0 3px;
}
@media screen and (max-width: 999px) {
    .floating-navigation,
    .contact_box{
        display: flex;
    }
}

a.shop_info_tel,
a.shop_info_line {
    flex-grow: 1;
}

a.shop_info_tel,
a.shop_info_line {
    display: block;
    color: #FFF;
    border-radius: 4px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    font-weight: bold;
}

a.shop_info_tel {
    background: #ff9100;
    box-shadow: 0 3px 0 #D1810E;
    color: #FFF;
}

a.shop_info_line {
    background: #82ad24;
    box-shadow: 0 3px 0 #65871c;
    color: #FFF;
    margin-right: 10px;
}

.button-single {
    margin: 0 -8px -8px -8px;
    border-top: 1px solid #e6ecf0;
}

.button-single a {
    padding: 10px 0;
    text-align: center;
    display: block;
    font-size: 14px;
    position: relative;
}

.button-single a::after {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -10px;
    color: #19bfbf;
    font-size: 20px;
    font-family: 'Typicons';
    content: "\e049";
}

/* スライダー */
.slide img {
    width: 100% !important;
    height: auto !important;
    vertical-align: middle !important;
}
.swiperMain {
    width: 100% !important;
    margin: 0 auto 30px !important;
}
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold !important;
}
.swiper-pagination-bullet {
    border-radius: 0 !important;
    width: 8px !important;
    height: 8px !important;
    background: #fff !important;
}

/* 共通 枠 */
.areasearch,
.shopranking,
.castranking,
.coupon,
.dialy,
.newshop,
.news,
.price,
.castlist {
    background: #FFF;
    padding: 8px;
    margin-bottom: 30px;
}

.ranking_box,
.newshop_box,
.news_box,
.dialy_box {
    padding: 0 8px 16px;
    border-bottom: 1px solid #ddd;
    margin: 0 0 16px;
}

.ranking_box h3,
.newshop_box h3,
.news_box h3 {
    font-size: 16px;
    position: relative;
    color: #06c;
}
.ranking_box h3 {
    padding: 0 0 10px 45px;
}

.newshop_box h3,
.news_box h3 {
    padding: 0 0 10px 0;
}

.ranking_box .shop_info_wrapper .shop_info p,
.coupon_box .coupon_shop_info .shop_info p,
.newshop_box .newshop_info_wrapper .newshop_info p,
.news_box .news_info_wrapper .news_info p {
    font-size: 12px;
}

/*ホーム 地域から探す*/
.area_list_sp {
    position: relative;
    margin: 0 auto;
    padding: 0;
    line-height: 1;
}

.area_list_sp input {
    position:absolute;
    height: 0;
    padding:0;
}

.area_list_sp div div {
    position: relative;
    padding: 15px 10px 12px 40px;
    border-bottom: 1px solid #eeece4;
    background: #faf8f5;
}

.area_list_sp label:first-child div div {
    border-top: 1px solid #eeece4;
}

.area_list_sp div div:hover {
    cursor: pointer;
}

.area_list_sp div div:before {
    position:absolute;
    top: 11px;
    left:10px;
    color: #797152;
    font: 22px/100% 'Typicons';
    content: "\e114";
}

.area_list_sp div div:after {
    position:absolute;
    top: 12px;
    right:14px;
    color: #797152;
    font: 20px 'Typicons';
    content: "\e049";
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
}

.area_list_sp input:checked + div div:after {
    top: 12px;
    right: 15px;
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.area_list_sp ul {
    list-style: none;
    margin: 0;
}

.area_list_sp ul li a {
    display: block;
    overflow: hidden;
    height: 0;
    padding: 0px 70px;
    color: #333;
    text-decoration: none;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
}

.area_list_sp input:checked + div ul li a {
    position:relative;
    background: none;
    line-height: 1;
    height: 42px;
    padding: 13px 70px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #eeece4;
}

.area_list_sp input:checked + div ul li:first-child a {
    border-top: 0;
}

.area_list_sp input:checked + div ul li:last-child a {
    border-bottom: 0;
}

.area_list_sp input:checked + div ul li a:before {
    position: absolute;
    top: 13px;
    left: 45px;
    color: #797152;
    font:16px/100% 'Typicons';
    content: "\e0bd";
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
}

ul.area_list {
    display: flex;
    list-style: none;
    padding: 0;
}

ul.area_list li {
    width: 16%;
    margin: 0;
}

ul.area_list li ul.area_list_child {
    list-style: none;
    padding: 0;
}

ul.area_list li ul.area_list_child li {
    width: 100%;
    margin: 0;
}

/*タブUI共通*/

.tab-ui-wrapper input {
    display: none;
}

.tab-content-wrapper {
    clear: both;
}

/*ホーム タブUI*/
.shopranking-tab-label,
.castranking-tab-label {
    height: 35px;
    line-height: 35px;
    float: left;
    text-align: center;
    cursor: pointer;
    color: #666;
    padding: 0 7px;
    font-size: 14px;
    margin-bottom: 16px;
}

.shopranking-tab-content,
.castranking-tab-content {
    display: none;
}

#shopranking-tab-1:checked ~ .tab-content-wrapper #shopranking-tab-1-content,
#shopranking-tab-2:checked ~ .tab-content-wrapper #shopranking-tab-2-content,
#shopranking-tab-3:checked ~ .tab-content-wrapper #shopranking-tab-3-content,
#shopranking-tab-4:checked ~ .tab-content-wrapper #shopranking-tab-4-content,
#castranking-tab-1:checked ~ .tab-content-wrapper #castranking-tab-1-content,
#castranking-tab-2:checked ~ .tab-content-wrapper #castranking-tab-2-content,
#castranking-tab-3:checked ~ .tab-content-wrapper #castranking-tab-3-content,
#castranking-tab-4:checked ~ .tab-content-wrapper #castranking-tab-4-content {
    display: block;
}

.tab-ui-wrapper input:checked + .shopranking-tab-label,
.tab-ui-wrapper input:checked + .castranking-tab-label {
    color: #666;
    font-weight: bold;
    border-bottom: 2px solid #666;
}


/*ホーム ショップランキング コンテンツ*/
.ranking_box h3 span.ranking-ribbon {
    height: 40px;
    width: 35px;
    position: absolute;
    line-height: 40px;
    text-align: center;
    background: #F2F3F5;
    color: #85878A;
    font-weight: bold;
    left: 0;
    top: 0;
}

.ranking_box h3 span.rank_1 {
    background: #CFB867;
    color: #FFF;
}

.ranking_box h3 span.rank_2 {
    background: #999CA8;
    color: #FFF;
}

.ranking_box h3 span.rank_3 {
    background: #BE9574;
    color: #FFF;
}

.ranking_box h3 span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #13131e;
}

.ranking_box .shop_info_wrapper {
    display: flex;
}

.ranking_box .shop_info_wrapper .shop_img {
    width: 120px;
}

.ranking_box .shop_info_wrapper .shop_img img {
    width: 100%;
}

.ranking_box .shop_info_wrapper .shop_info {
    width: calc(100% - 120px);
    padding-left: 10px;
    font-weight: normal;
}

/*ホーム クーポン*/
.column-main .coupon .coupon_list {
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
    .column-main .coupon .coupon_list{
        display: block;
    }
}

.coupon_box {
    border-bottom: 1px solid #ddd;
    margin: 0 0 8px;
    background-color: #ffd500;
    background: linear-gradient(135deg, #ffd500, #ffb900);
    border-radius: 5px;
}

.column-main .coupon .coupon_list .coupon_box {
    width: calc(50% - 4px);
}
@media screen and (max-width: 999px) {
    .column-main .coupon .coupon_list .coupon_box {
        width: 100%;
    }
}

.column-main .coupon .coupon_list .coupon_box:nth-child(odd) {
    margin-right: 8px;
}
@media screen and (max-width: 999px) {
    .column-main .coupon .coupon_list .coupon_box:nth-child(odd){
        margin-right: 0;
    }
}

.coupon_box h3 {
    font-size: 14px;
    position: relative;
    color: #000;
    padding: 10px;
}

.coupon_box h3 span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #13131e;
}

.coupon_box .newshop_date {
    font-size: 12px;
    text-align: right;
}

.coupon_box .coupon_info {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    border-bottom: 1px solid #ddd;
    margin: 0 10px 10px;
}

.coupon_box .coupon_info .coupon_info_wrapper {
    display: flex;
    margin-bottom: 10px;
}

.coupon_box .coupon_info .coupon_info_wrapper .coupon_price {
    width: calc(100% - 50px);
    padding-left: 10px;
    font-size: 12px;
}

.coupon_discount-wrapper {
    position: relative;
    height: 50px;
    width: 50px;
    background: #e64c30;
    border-radius: 50%;
    display: block;
}

.coupon_discount-value,
.coupon_discount-number,
.coupon_discount-unit,
.coupon_discount-state {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-weight: bold;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.coupon_discount-value {
    width: 100%;
    height: 100%;
}

.coupon_discount-number {
    margin-top: -8px;
    margin-left: -5px;
    font-size: 18px;
}

.coupon_discount-unit {
    margin-top: -6px;
    margin-left: 13px;
    font-size: 10px;
}

.coupon_discount-state {
    margin-top: 8px;
    margin-left: 1px;
    font-size: 14px;
}

.coupon_price_default {
    font-size: 12px;
    color: #757575;
}

.coupon_price_special {
    color: #e64c30;
    font-weight: bold;
    font-size: 24px;
}

.coupon_price_special span {
    font-size: 14px;
}

.coupon_expiry {
    text-align: center;
    font-size: 12px;
    background: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px 5px 0 0;
}

.coupon_terms_text {
    background: #eee;
    padding: 10px;
    font-size: 12px;
    border-radius: 0 0 5px 5px;
    border-bottom: 1px solid #ddd;
}

.coupon_shop {
    border-top: 1px solid #ddd;
    margin-top: 10px;
    padding-top: 10px;
    display: flex;
}

.coupon_shop .shop_img {
    width: 80px;
}

.coupon_shop_info {
    width: calc(100% - 80px);
    padding-left: 10px;
    font-size: 12px;
}

/*ホーム 新着店舗*/
.newshop_box h3 span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #13131e;
}

.newshop_box .newshop_date {
    font-size: 12px;
    text-align: right;
}

.newshop_box .newshop_info_wrapper {
    display: flex;
}

.newshop_box .newshop_info_wrapper .newshop_img {
    width: 120px;
}

.newshop_box .newshop_info_wrapper .newshop_img img {
    width: 100%;
}

.newshop_box .newshop_info_wrapper .newshop_info {
    width: calc(100% - 120px);
    padding-left: 10px;
    font-size: 12px;
    font-weight: normal;
}

/*ホーム お店からのお知らせ*/
.news_box .news_info_wrapper {
    display: flex;
}

.news_box .news_info_wrapper .news_img {
    width: 80px;
}

.news_box .news_info_wrapper .news_img img {
    width: 100%;
}

.news_box .news_info_wrapper .news_info {
    width: calc(100% - 80px);
    padding-left: 10px;
    font-size: 12px;
    font-weight: normal;
}

/*ホーム 写メ日記*/
.dialy_box .dialy_info_wrapper {
    display: flex;
}

.dialy_box .dialy_info_wrapper .dialy_img {
    width: 80px;
}

.dialy_box .dialy_info_wrapper .dialy_img img {
    width: 100%;
}

.dialy_box .dialy_info_wrapper .dialy_info {
    width: calc(100% - 80px);
    padding-left: 10px;
    font-size: 12px;
    font-weight: normal;
}

.c-pager {
    background-color: #f2f3f5;
}

.c-pager_nearest {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.c-pager_prev,
.c-pager_next {
    margin: 8px;
    display: block;
    width: 100%;
}

.c-pager_prev a,
.c-pager_prev span {
    margin-left: 13px;
    border-radius: 0 4px 4px 0;
    border-left: 0;
}

.c-pager_next a,
.c-pager_next span {
    margin-right: 13px;
    border-radius: 4px 0 0 4px;
    border-right: 0;
}

.c-pager_prev span,
.c-pager_next span {
    border: 1px solid #dcdde0;
    background: #fff;
    color: #cccccc;
}

.c-pager_prev a,
.c-pager_prev span,
.c-pager_next a,
.c-pager_next span {
    height: 40px;
    display: block;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    position: relative;
}

.c-pager_prev span::before {
    border-color: transparent #dcdde0 transparent transparent;
}

.c-pager_prev span::after {
    border-color: transparent #fff transparent transparent;
}

.c-pager_prev a::before {
    border-color: transparent #bed4ed transparent transparent;
}

.c-pager_prev a::after {
    border-color: transparent #f5f9ff transparent transparent;
}

.c-pager_next span::before {
    border-color: transparent transparent transparent #dcdde0;
}

.c-pager_next span::after {
    border-color: transparent transparent transparent #fff;
}

.c-pager_next a::before {
    border-color: transparent transparent transparent #bed4ed;
}

.c-pager_next a::after {
    border-color: transparent transparent transparent #f5f9ff;
}

.c-pager_prev a::before,
.c-pager_prev span::before {
    top: -1px;
    left: -13px;
    border-width: 21px 13px 21px 0;
}

.c-pager_prev a::after,
.c-pager_prev span::after {
    top: 1px;
    left: -11px;
    border-width: 19px 11px 19px 0;
}

.c-pager_next a::before,
.c-pager_next span::before {
    top: -1px;
    right: -13px;
    border-width: 21px 0 21px 13px;
}

.c-pager_next a::after,
.c-pager_next span::after {
    top: 1px;
    right: -11px;
    border-width: 19px 0 19px 11px;
}

.c-pager_prev a::before,
.c-pager_prev a::after,
.c-pager_prev span::before,
.c-pager_prev span::after,
.c-pager_next a::before,
.c-pager_next a::after,
.c-pager_next span::before,
.c-pager_next span::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.c-pager_prev a,
.c-pager_next a {
    border: 1px solid #bed4ed;
    background: #f5f9ff;
    font-weight: bold;
    color: #1e5ea9;
    text-decoration: none;
}

/* ショップ詳細 */
.shop-head {
    background: #FFF;
    margin-bottom: 30px;
}

.shop-head .shop_main_image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.shop_main_image img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shop-head .shop_info {
    padding: 16px;
    position: relative;
}

.shop-head .shop_info .shop_name {
    position: absolute;
    bottom: 100%;
    height: 25vw;
    color: #FFF;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 78%);
    right: 0;
    left: 0;
    margin: auto;
    box-sizing: border-box;
    pointer-events: none;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
}

.shop-head .shop_info .shop_name h2 {
    font-size: 22px;
    padding: 16px;
    text-shadow: 0 1px 2px rgba(0,0,0,.5);
}

.shop-head .shop_info .shop_name h2 span {
    display: block;
    font-size: 12px;
    font-weight: normal;
}

/* 在籍一覧 */
ul.castlist_inner {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-right: -8px;
}

.castlist_inner li {
    width: calc(25%);
    margin-bottom: 8px;
    box-sizing: border-box;
    padding: 0 8px 0 0;
}
@media screen and (max-width: 999px) {
    .castlist_inner li{
        /*padding: 0;*/
        width: calc(50%);
    }
}

.cast_img {
    text-align: center;
}

.img_responsive {
    width: 100%;
    vertical-align: top;
}

.cast_name {
    position: relative;
}

.cast_name h3 {
    position: absolute;
    bottom: 100%;
    padding: 10px;
    left: 0;
    right: 0;
    color: #FFF;
    font-size: 14px;
    height: 10vw;
    display: flex;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5) 78%);
    margin: 0;
    box-sizing: border-box;
    -webkit-box-align: end;
    align-items: flex-end;
    margin: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
@media screen and (max-width: 999px) {
    .cast_name h3{
        padding: 5px;
        height: 15vw;
    }
}

@media screen and (max-width: 999px) {
    nav.shop_navi{
        position: sticky;
        top: 0;
        z-index: 999;
    }
}

.shop_header_info {
    padding: 15px;
    background-color: #fff;
}

.shop_header_info h2 {
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    margin: 0;
    border: none;
}

.shop_header_info h2 span {
    font-size: 12px;
    font-weight: normal;
    display: block;
}

ul.shop_navi_list {
    display: table;
    width: 100%;
    table-layout: fixed;
}

li.shop_navi_item {
    display: table-cell;
    position: relative;
    background: #f3f7fa;
    vertical-align: middle;
}

.shop_navi_dtl {
    display: block;
    height: 60px;
    box-sizing: border-box;
    padding: 20px 0;
    border-width: 1px 0;
    border-style: solid;
    border-color: #e6ecf0;
    overflow: hidden;
    color: #333;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}
@media screen and (max-width: 999px) {
    .shop_navi_dtl{
        height: 44px;
        padding: 13px 0;
        font-size: 12px;
        font-weight: normal;
    }
}

.shop_navi_item:first-child .shop_navi_dtl {
    border-left: 0;
}

span.is-selected {
    border-width: 1px;
    border-top-color: #19bfbf;
    border-bottom-color: #fff;
    color: #19bfbf;
    background: #fff;
    font-weight: bold;
}


/* 料金テーブル */
.price_table {
    border-collapse: separate;
    border-top: 1px solid #d6ceb4;
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 12px;
    width: 100%;
    background-color: #fff;
    border-spacing: 0;
    word-break: break-all;
    empty-cells: show;
}

.price_table tr {
    vertical-align: top;
}

.price_table th {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #d6ceb4;
    background-color: #faf8f5;
    padding: 15px;
    color: #463f2d;
    vertical-align: top;
    width: 14rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: bold;
    text-align: left;
}
@media screen and (max-width: 999px) {
    .price_table th{
        width: 10rem;
    }
}

.price_table td {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #d6ceb4;
    padding: 15px 0 15px 20px;
    vertical-align: middle;
}

.shop_subinfo {
    background: #FFF;
    padding: 10px;
    margin-bottom: 30px;
    position: sticky;
    top: 10px;
}
@media screen and (max-width: 999px) {
    .shop_subinfo{
        position: static;
    }
}

.shop_subinfo_table {
    width: 100%;
    border-spacing: 0;
}

.shop_subinfo_table th {
    border-top: 1px solid #eeece4;
    padding: 16px 0 16px;
    width: 32%;
    font-weight: bold;
    text-align: left;
}

.shop_subinfo_table tr:first-child th,
.shop_subinfo_table tr:first-child td {
    border: none;
}

.shop_subinfo_table td {
    vertical-align: middle;
    border-top: 1px solid #eeece4;
    padding: 16px 10px;
}

.castdetail {
    background: #FFF;
    padding: 10px;
    margin-bottom: 30px;
}

.castdetail .castdetail_wrapper {
    display: flex;
}

@media screen and (max-width: 999px) {
    .castdetail .castdetail_wrapper {
        display: block;
    }
}

.castdetail .castdetail_wrapper .cast_img {
    width: 350px;
}

@media screen and (max-width: 999px) {
    .castdetail .castdetail_wrapper .cast_img {
        width: 80%;
        margin: 0 auto;
    }
}

.castdetail .castdetail_wrapper .cast_profile {
    width: calc(100% - 350px);
    padding-left: 10px;
    font-size: 12px;
}

@media screen and (max-width: 999px) {
    .castdetail .castdetail_wrapper .cast_profile {
        width: 100%;
        padding-left: 0;
    }
}

@media screen and (max-width: 999px) {
    .castdetail .castdetail_wrapper .cast_profile h2 {
        padding-top: 20px;
    }
    .castdetail .castdetail_wrapper .cast_profile h2,
    .castdetail .castdetail_wrapper .cast_profile .cast_size {
        text-align: center;
    }
}

.castdetail .castdetail_wrapper .cast_profile .cast_size {
    padding-bottom: 20px;
}

.castdetail .castdetail_wrapper .cast_profile .cast_message {
    margin-bottom: 20px;
}

.castdetail .castdetail_wrapper .cast_profile .schedule_top,
.castdetail .castdetail_wrapper .cast_profile .schedule_bottom {
    display: flex;
    list-style: none;
    text-align: center;
    border: 1px solid #d6ceb4;
}

.castdetail .castdetail_wrapper .cast_profile .schedule_top {
    margin-bottom: 10px;
}

.castdetail .castdetail_wrapper .cast_profile .schedule_bottom {
    margin-bottom: 20px;
}

.castdetail .castdetail_wrapper .cast_profile .schedule_top li {
    width: 50%;
}

.castdetail .castdetail_wrapper .cast_profile .schedule_bottom li {
    width: 20%;
}

.castdetail .castdetail_wrapper .cast_profile .schedule_top li,
.castdetail .castdetail_wrapper .cast_profile .schedule_bottom li {
    border-top: 1px solid #fff;
    border-right: 1px solid #d6ceb4;
    border-left: 1px solid #fff;
}

.castdetail .castdetail_wrapper .cast_profile .schedule_top li:last-child,
.castdetail .castdetail_wrapper .cast_profile .schedule_bottom li:last-child {
    border-right: none;
}

.castdetail .castdetail_wrapper .cast_profile .schedule_top li span,
.castdetail .castdetail_wrapper .cast_profile .schedule_top li p {
    padding: 13px 0;
    font-weight: bold;
}

.castdetail .castdetail_wrapper .cast_profile .schedule_top li span,
.castdetail .castdetail_wrapper .cast_profile .schedule_bottom li span {
    padding: 10px 0;
    display: block;
    background: #faf8f5;
    border-bottom: 1px solid #d6ceb4;
}

.castdetail .castdetail_wrapper .cast_profile .schedule_top li p,
.castdetail .castdetail_wrapper .cast_profile .schedule_bottom li p {
    font-size: 12px;
    padding: 10px 0;
}

.castdetail .castdetail_wrapper .cast_profile .cast_menu {
    list-style: none;
    margin-bottom: 20px;
}

.castdetail .castdetail_wrapper .cast_profile .cast_menu::after {
    content: "";
    clear: both;
    display: block;
}

.castdetail .castdetail_wrapper .cast_profile .cast_menu li {
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 8px;
    border-radius: 3px;
    background: #eeece4;
    color: #13131e;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
}

.castdialy_inner {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-right: -8px;
}
@media screen and (max-width: 999px) {
    .castdialy_inner {
        flex-wrap: nowrap;
        overflow: scroll;
    }
}

@media screen and (max-width: 999px) {
    .flex_list {
        flex-wrap: wrap;
        overflow: auto;
        margin-right: 0;
    }
}

.castdialy_inner li {
    width: calc(25%);
    margin-bottom: 8px;
    box-sizing: border-box;
    padding: 0 8px 0 0;
}
@media screen and (max-width: 999px) {
    .castdialy_inner li {
        min-width: 47vw;
    }
}

@media screen and (max-width: 999px) {
    .flex_list li {
        min-width: calc(50%);
    }
}

.castdialy_inner li a {
    position: relative;
    display: block;
    width: 100%;
}

.castdialy_inner li .castdialy_img {
    text-align: center;
    height: 180px;
}

.castdialy_inner li .castdialy_img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8), transparent);
    width: 100%;
    height: 50%;
    z-index: 1;
}

.castdialy_inner li .castdialy_img img {
    object-fit: cover;
    height: 180px;
}

.castdialy_inner li .castdialy_title {
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: auto;
    padding: 8px;
    color: #FFF;
}

.castdialy_inner li .castdialy_title span {
    font-size: 12px;
}

.castdialy_inner li .castdialy_title span span {
    padding-left: 3px;
    color: #ffeb3b;
}

.castdialy_inner li .castdialy_title h3.castdialy_name {
    font-size: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.castdialy_inner li .castdialy_title h3 {
    font-size: 14px;
    padding: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.cast_info {
    display: flex;
    padding: 10px;
    border: 1px solid #eeece4;
    margin-bottom: 10px;
}

.cast_info .cast_img {
    width: 70px;
}

.cast_info p {
    width: calc(100% - 70px);
    padding-left: 10px;
}

.cast_info p a {
    font-size: 16px;
    font-weight: bold;
}

.cast_info p span {
    display: block;
    font-size: 12px;
}

.dialy_date {
    font-size: 12px;
}

.dialy_text p {
    margin-bottom: 10px;
}