@charset "UTF-8";


body.shop.info.home .contents h2 {
    font-size: 1.6rem;
    background: var(--col1-50);
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
}

body.shop.info .contents {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.shop.info .contents .more-disp {
    text-align: center;
    margin-top: 16px;
    > button {
        border: 1px dotted var(--col-link);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-inline: auto;
        max-width: 400px;
        width: 50%;
        min-width: 350px;
        min-height: 50px;
        border-radius: 5px;
        padding-inline: 16px;
        background: #fff;
    }
    > button .subject {
        color: var(--col-link);
        font-size: 2rem;
        line-height: 1;
    }
    > button *[class*=material-] {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        background: var(--col-link);
        border-radius: 50%;
        width: 40px;
        aspect-ratio: 1 / 1;
        color: #fff;
    }
}


body.shop.info .news {
	> ul {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
	}
    > ul li:not(.news-detail) {
        width: 100%;
        @media (min-width: 600px) {
            width: calc((100% - 16px) / 2)
        }
    }
    > ul li:not(.news-detail) button {
        display: flex;
        gap: 8px;
        width: 100%;
        padding: 4px 8px;
        border: 1px solid var(--col1-50);
        border-radius: 5px;
        background: #fff;
    }
    > ul li:not(.news-detail) button .photo {
        width: 100px;
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }
    > ul li:not(.news-detail) button .photo img {
        width: 100%;
    }
    > ul li:not(.news-detail) button .info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: calc(100% - 108px);
    }
    > ul li:not(.news-detail) button .info * {
        text-align: left;
        font-size: 1.4rem;
    }
    > ul li:not(.news-detail) button .info .subject {
        font-size: 1.6rem;
        font-weight: bold;
        color: var(--col-link);
    }
    > .news-detail .inner {
        padding: 8px;
    }
    > .news-detail .inner img {
        width: 100%;
    }
    > .news-detail button.close:last-of-type > *[class*=material-symbols] {
        left: calc(100% - 60px);
    }
}

body.shop.info .prices {
    .p-inner {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    article {
        display: flex;
        flex-direction: column;
        gap: 8px;
        border: 1px dotted #999;
        border-radius: 5px;
        padding-bottom: 8px;
    }
    article .subject {
        color: var(--col1-50);
        font-size: 1.6rem;
        padding: 4px 8px;
    }
    article > * {
        padding-inline: 8px;
        * {
            font-size: 1.4rem;
        }
    }
    article dl {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    article dl div {
        display: flex;
        gap: 8px;
        border: 1px solid #666;
        padding: 4px 8px;
        border-radius: 5px;
        width: 100%;
        @media (min-width: 800px) {
            width: calc((100% - 8px) / 2);
        }
    }
    article dl div dt {
        font-weight: bold;
    }
    article .note {
        font-size: 1.2rem;
    }
}

body.shop.info .discount.contents {
    .datas {
        display: flex;
        flex-wrap: wrap;
        gap: 16px 8px;
        margin-top: 8px;
    }
    .datas .data {
        flex-shrink: 1;
        position: relative;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        border: 2px solid red;
        background: var(--col4-90);
        padding: 8px;
        width: 100%;
        border-radius: 5px;
        @media (min-width: 800px) {
            width: calc((100% - 16px) / 3);
        }
        * {
            font-size: 1.4rem;
        }
    }
    .datas .data dt {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        font-weight: bold;
        background: var(--col4-60);
        font-size: 1.6rem;
        padding: 4px 8px;
        border-radius: 5px;
    }
    .datas .data dt .ticket-num {
        position: absolute;
        top: -10px;
        left: 10px;
        padding: 2px 8px;
        background: red;
        border-radius: 5px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        font-weight: bold;
        border: 1px solid #fff;
    }
    .datas .data dd {
        background: #fff;
        padding: 4px 8px;
        width: 100%;
        border: 1px dotted #999;
        border-radius: 5px;
    }
    .datas .data dd.detail .from {
        text-decoration: line-through;
        color: #666;
    }
    .datas .data dd.detail .to {
        color: red;
    }
    .datas .data dd.calc {
        padding-block: 8px;
        background: red;
        font-weight: bold;
        color: #fff;
        font-size: 1.6rem;
        border-color: red;
        * {
            font-size: 1.6rem;
        }
    }
    .datas .data dd.note {
        font-size: 1.2rem;
        max-height: 100px;
        overflow-y: auto;
    }
    .to-phone {
        display: flex;
        flex-wrap: wrap;
        font-size: 1.4rem;
        font-weight: bold;
        text-decoration: underline;
        * {
            font-size: 1.4rem;
        }
        button {
            background: none;
        }
    }
    .to-phone span {
        color: red;
    }
}

body.shop.info .info.contents {
    :is(dt, dd, p) {
        font-size: 1.4rem;
        * {
            font-size: 1.4rem;
        }
    }
    > .datas {
        display: flex;
        flex-direction: column;
        gap: 8px;
        border: 1px dotted #999;
        border-radius: 5px;
    }
    > .datas > .data {
        display: flex;
        gap: 8px;
        padding: 8px;
        border-bottom: 1px dotted #999;
    }
    > .datas > .data:last-of-type {
        border-bottom: none;
    }
    > .datas > .data dt {
        max-width: 100px;
        min-width: 100px;
        width: 30%;
        font-weight: bold;
    }
    > .datas > .data.tags {
        flex-wrap: wrap;
    }
    > .datas > .data.tags dt {
        max-width: none;
        min-width: none;
        width: 100%;
    }

    > p.description {
        border-radius: 5px;
        padding: 8px;
        border: 1px dotted #999;
    }
}

body.shop.info .girls.contents .datas {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 8px;
    .data {
        border: 1px solid var(--col1-50);
        width: calc((100% - 16px) / 3);
        position: relative;
        display: flex;
        flex-direction: column;
        @media (min-width: 800px) {
            width: calc((100% - 32px) / 5);
        }
        * {
            line-height: 1;
        }
    }
    .data > :not(.photo) {
        order: 1;
    }
	.data .photo {
        order: 0;
        aspect-ratio: 1 / 1;
		overflow: hidden;
	}
    .data .photo.no-image {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
        border: 1px dotted #999;
        background: var(--colgray-95);
    }
	.data .photo img {
		width: 100%;
        object-fit: cover;
	}
    .data .photo *[class*=material-] {
        font-size: 5rem;
        color: #ccc;
    }
    .data .photo.no-image::after {
        content: "No Image";
        width: 100%;
        font-size: 1.2rem;
        text-align: center;
        color: #999;
    }
    .data .name {
        padding: 8px;
        font-size: 1.4rem;
        font-weight: bold;
    }
    .data .labels {
        display: flex;
        gap: 2px;
        position: absolute;
        top: -10px;
        right: 0;
        > * {
            border-radius: 5px;
            padding: 4px 8px;
            border: 1px solid #fff;
            font-size: 1.4rem;
        }
        > .age {
            background: var(--col4-50);
            color: #000;
        }
        > .bust {
            background: var(--col1-50);
            color: #fff;
        }
    }

    .data :is(.schedule, .wait) {
        font-weight: bold;
        font-size: 1.4rem;
        padding: 4px 16px;
        border-bottom: 1px dotted #999;
    }
    .data .schedule {
        background: var(--col4-60);
    }
    .data .wait {
        background: var(--col3-60);
        color: #fff;
    }
    .data .wait .status {
        position: absolute;
        top: -15px;
        left: 0;
        aspect-ratio: 1 / 1;
        width: 30px;
        background: red;
        border: 1px solid #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
    }
    .data button.profile-open {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding: 2px 8px;
        font-size: 1.4rem;
        font-weight: bold;
        border-block: 1px dotted var(--colgray-60);
        color: #fff;
        background: red;
    }
    .data button.profile-open::before {
        content: "詳細を開く";
    }
    .data button.profile-open *[class*=material-] {
        font-size: 2rem;
        padding: 1.8px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        background: #fff;
        color: red;
        border-radius: 50%;
    }
}

body.shop.info .faq {
    .datas {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .datas .data {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 8px;
        border: 1px dotted var(--col1-50);
        border-radius: 5px;
        background: var(--col1-97);
    }
    .datas .data * {
        font-size: 1.4rem;
    }
    .datas .data dt {
        font-weight: bold;
    }
    .datas .data :is(dt, dd) {
        display: flex;
        gap: 16px;
    }
    .datas .data :is(dt, dd) *[class*=material-] {
        font-size: 3rem;
    }
    .datas .data dt *[class*=material-] {
        color: var(--col1-50);
    }
    .datas .data dd *[class*=material-] {
        color: var(--colgray-40);
    }
}

body.shop.info .review.summary.contents {
    background: var(--col1-97);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border-bottom: 1px dotted var(--col1-50);

    .total-count {
        text-align: center;
        margin-bottom: 15px;
        font-weight: bold;
    }
    .total-count .value {
        font-size: 2rem;
        color: #333;
        margin: 0 4px;
    }
    .total-count .unit {
        font-size: 0.9rem;
    }
    .rating-visualizer {
        max-width: 400px;
        margin: 0 auto;
    }

    .bar-container {
        display: flex;
        height: 16px;
        background: #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 12px;
    }

    .bar.is-good {
        background: linear-gradient(90deg, #ff80ab, #ff4081);
        transition: width 0.5s ease-out;
    }

    .bar.is-bad {
        background: #bbb;
    }

    .rating-legend {
        display: flex;
        justify-content: space-between;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .rating-legend li {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 0.9rem;
    }

    .rating-legend .good { color: #ff4081; font-weight: bold; }
    .rating-legend .bad { color: #666; }

    .rating-legend .material-symbols-outlined {
        font-size: 1.8rem;
    }
    button {
        width: 400px;
        border-radius: 50px;
        min-height: 50px;
        margin-inline: auto;
        font-size: 1.6rem;
        background: var(--col4-50);
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: center;
        border: 1px solid #999;
        font-weight: bold;
    }
    button *[class*=material-] {
        font-size: 3rem;
    }
}

body.shop.info .reviews.contents .row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    border: 1px dotted var(--col1-50);
    border-radius: 5px;
    .meta {
        display: flex;
        gap: 8px;
    }
    .meta * {
        font-size: 1.6rem;
    }
    .meta .is-good {
        color: var(--col1-50);
    }
    .meta .is-bad {
        color: #666; 
    }
    :is(.target-to, .content) {
        font-size: 1.4rem;
        * {
            font-size: 1.4rem;
        }
    }
}

body.shop.info .review-into-writebtn {
    button {
        margin-inline: auto;
        width: 300px;
        font-size: 1.6rem;
        padding: 16px 24px;
        display: flex;
        justify-content: space-between;
        border-radius: 5px;
        border: 1px solid var(--colgray-20);
        background: var(--colgray-60);
        color: #fff;
    }
    button *[class*=material-] {
        font-size: 2.5rem;
    }
}

body.shop.info .review-post {
    justify-content: center;
    align-items: center;
    > .inner {
        max-height: 500px;
        min-height: 400px;
        height: 100dvh;
        border-radius: 10px;
    }
    > .inner form {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    > .inner form > * {
        display: flex;
        flex-wrap: wrap;
        padding-inline: 8px;
        border-bottom: 1px dotted var(--colgray-70);
    }
    > .inner form > *.selector {
        justify-content: space-between;
        align-items: center;
        padding: 4px 8px;
        > select {
            width: 40%;
            border: 1px solid var(--colgray-60);
            padding-block: 8px;
            border-radius: 5px;
        }
    }
    > .inner form >  .subject {
        font-size: 1.4rem;
    }

    > .inner form >  button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        max-width: 150px;
        height: 50px;
        padding: 8px 24px;
        border: none;
        background: var(--colgray-30);
        color: #fff;
        text-align: center;
        margin-inline: auto;
        border-radius: 5px;
    }
}

body.shop.info.cast > main > figure.photos {
    padding: 16px 0 0;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    gap: 2px;
    > span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 350px;
        min-width: 350px;
        aspect-ratio: 3 /4 ;
        overflow: hidden;
        flex-shrink: 1;
        border-radius: 5px;
        border: 1px dotted var(--col1-50);
        @media (min-width: 700px) {
            width: calc(100% / 5);
        }
    }
    > * img {
        width: 100%;
    }
    > *[class*=material-] {
        font-size: 4rem;
        background: var(--col1-95);
    }
}

body.shop.info.cast > main > .cast-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    > h2 {
        background: var(--col1-50);
        color: #fff;
        line-height: 1;
        font-size: 1.8rem;
        padding: 8px;
        border-radius: 5px;
    }


    :is(.styles-wrap, .itv, .message) {
        border-radius: 5px 5px 0 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
        border: 1px solid var(--col1-70);
        border-radius: 5px;
    }
    :is(.styles-wrap, .itv, .message) > .label {
        font-size: 1.6rem;
        color: var(--col1-50);
        padding: 8px;
    }
    > .styles-wrap > .label {
        background: var(--col1-95);
        border-bottom: 1px  solid var(--col1-50);
    }
    > .styles-wrap .datas {
        padding: 8px;
        gap: 16px;
        display: flex;
        flex-wrap: wrap;
    }
    > .styles-wrap .datas .item {
        display: flex;
        gap: 8px;
    }
    > .styles-wrap .datas .item * {
        font-size: 1.6rem;
    }

    > div.wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    > div.wrap > * {
        width: 100%;
        @media (min-width: 700px) {
            width: calc((100% - 16px) / 2);
        }
    }

    > div.wrap .message {
        flex-grow: 1;
    }

    > div.wrap .message > .label {
        background: var(--col1-50);
        color: #fff;
    }

    > div.wrap .message .body {
        width: calc(100% - 16px);
        margin: 8px auto;
        font-size: 1.4rem;
        max-height: 300px;
        overflow-y: auto;
    }
    > div.wrap .itv > .label {
        background: var(--col3-50);
        color: #fff;
    }
    > div.wrap .itv {
        border-color: var(--col3-50);
    }
    > div.wrap .itv .datas {
        max-height: 300px;
        overflow-y: auto;
        width: calc(100% - 16px);
        margin: 8px auto;
        * {
            font-size: 1.4rem;
        }
    }
    > div.wrap .itv .datas .item {
        padding: 4px 8px;
        display: flex;
        flex-direction: column;
        background: var(--col3-95);
    }
    > div.wrap .itv .datas .item:nth-of-type(even) {
        background: var(--col3-90);
    }
    > div.wrap .itv .datas .item .label {
        font-weight: bold;
    }
}

body.shop.info.cast > main > .schedule-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: -8px;
    > .label {
        font-size: 1.6rem;
        color: #fff;
        background: var(--col5-50);
        padding: 8px;
        border-radius: 5px;
    }
    .datas {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }
    .datas .data {
        display: flex;
        flex-direction: column;
        border: 1px solid var(--col5-50);
        border-top-width: 2px;
        width: calc((100% - 12px) / 3);
        * {
            font-size: 1.6rem;
        }
        @media (min-width: 700px) {
            width: auto;
            flex-grow: 1;
        }
    }
    .datas .data > * {
        padding: 4px 8px;
    }
    .datas .data > .label {
        border-bottom: 1px dotted var(--col5-50);
        font-weight: bold;
    }
    .datas .data > .label.sun {
        color: red;
    }
    .datas .data > .label.sat {
        color: blue;
    }
    .datas .data > .info.un-registered {
        color: #999;
    }
}

body.shop.info.cast > main > .btns {
    display: flex;
    gap: 8px;
    button {
        width: calc((100% - 8px) / 2);
        font-size: 2rem;
        padding: 8px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: bold;
        color: #fff;
    }
    button > *[class*=material-] {
        font-size: 4rem;
    }
    button.phone {
        background: red;
    }
    button.price {
        background: blue;
    }
}

body.shop.info.cast > main > .action-to {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    button {
        max-width: 380px;
        width: 100vw;
        border-radius: 50px;
        font-size: 1.8rem;
        padding-block: 16px;
        border: 1px solid var(--col-link);
        background: #fff;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        color: var(--col-link);
        font-weight: bold;
        *[class*=material-] {
            font-size: 2.5rem;
        }
    }
    .bookmark {
        display: flex;
        gap: 4px;
        background: #999;
        color: #fff;
        border: none;
    }
    .bookmark.saved {
        background: var(--col4-50);
        color: #000;
    }
    .bookmark.saved::after {
        content: "追加済み";
        font-size: 1.2rem;
        background: #000;
        color: #fff;
        padding: 2px 4px;
        border-radius: 5px;
        font-weight: normal;
    }
}