@charset "utf-8";

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@500&display=swap');

/* ==================== Navigation z-index ==================== */
nav.nav {
    z-index: 10000 !important;
}

/* ==================== Shop Page Base ==================== */

/* Shop Header Mobile */
article.shop_info {
    width: 94%;
    margin: 0px auto 30px auto;
}

h2.shop_info {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

h1.shop_info {
    font-size: 20px;
    margin-bottom: 5px;
}

h1.shop_info small {
    font-size: 60%;
}

p.shop_info {
    font-weight: 500;
    display: flex;
    align-items: end;
}

a.shop_info {
    font-size: 140%;
    color: #5d9dcc;
    text-decoration: underline;
}

/* ==================== Shop Tab Navigation ==================== */

ul.shop_tab {
    display: flex !important;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: solid 1px #ccc;
    border-right: solid 1px #ccc;
    list-style: none;
    padding: 0;
    width: 94%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

ul.shop_tab li {
    flex: 1 0 auto;
    height: 50px;
    line-height: 50px;
    color: #333;
    background: #F3F2EE;
    background: linear-gradient(to bottom, #F3F2EE, #fff);
    text-align: center;
    transition: all .2s ease-out;
    border-bottom: solid 2px #ff6e9b;
    border-top: solid 1px #ccc;
    border-left: solid 1px #ccc;
    font-size: 13px;
    font-weight: 700;
    box-sizing: border-box;
}

ul.shop_tab a {
    display: block;
    height: 100%;
    line-height: 50px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    padding: 0 8px;
}

ul.shop_tab li.shop_tab_select,
ul.shop_tab a.shop_tab_select {
    background: #ff6e9b !important;
    color: #fff !important;
    border-bottom: solid 2px #ffffcd;
}

ul.shop_tab li:hover,
ul.shop_tab a:hover {
    cursor: pointer;
    opacity: 0.5;
}

@media screen and (max-width: 768px) {
    ul.shop_tab {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    ul.shop_tab::-webkit-scrollbar {
        display: none;
    }
    ul.shop_tab li {
        flex: 0 0 auto;
        min-width: 65px;
        height: 40px;
        line-height: 40px;
    }
    ul.shop_tab a {
        font-size: 11px;
        padding: 0 6px;
        white-space: nowrap;
        height: 40px;
        line-height: 40px;
    }
}

/* ==================== Shop Tab Nav (新パーシャル版) ==================== */

.shop_tab_nav {
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

ul.shop_tab_list {
    display: flex !important;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: solid 1px #ccc;
    border-right: solid 1px #ccc;
    width: 100%;
}

.shop_tab_item {
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.shop_tab_item a {
    display: block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    background: linear-gradient(to bottom, #F3F2EE, #fff);
    border-bottom: solid 2px #ff6e9b;
    border-top: solid 1px #ccc;
    border-left: solid 1px #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop_tab_item.active a {
    background: #ff6e9b;
    color: #fff;
    border-bottom: solid 2px #ffffcd;
}

.shop_tab_item a:hover {
    cursor: pointer;
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    ul.shop_tab_list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
    }
    ul.shop_tab_list::-webkit-scrollbar {
        display: none;
    }
    .shop_tab_item {
        flex: 0 0 auto;
    }
    .shop_tab_item a {
        font-size: 11px;
        height: 40px;
        line-height: 40px;
        padding: 0 8px;
        overflow: visible;
    }
}

/* ==================== System Section ==================== */

article.shop_left {
    width: 100%;
    border: solid 1px #dcdcdc;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
}

h2.system {
    color: #999;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 34px;
    margin-bottom: 15px;
    font-family: "Afacad Flux", sans-serif;
    font-style: normal;
}

h2.system:before {
    content: "";
    width: 5px;
    height: 30px;
    background: #ff6e9b;
    display: block;
    margin-right: 10px;
}

h2.system small {
    font-size: 40%;
    margin-left: 10px;
}

h1.system {
    font-size: 16px;
    padding-left: 15px;
    color: #444;
    margin-bottom: 20px;
}

ul.system {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 5px;
    display: table;
    table-layout: fixed;
    width: 100%;
}

ul.system li {
    display: table-cell;
    vertical-align: middle;
}

li.system_left {
    width: 200px;
    text-align: center;
    font-weight: 600;
    background: #dcdcdc;
    padding: 10px 0px;
}

li.system_right {
    padding-left: 20px;
}

a.shop_line {
    width: 90px;
    display: block;
}

p.line_id {
    font-size: 12px;
}

div.system_right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Shop Right Section */
article.shop_right {
    width: 90%;
    border: solid 1px #dcdcdc;
    border-radius: 15px;
    padding: 15px;
}

p.grid_left_image {
    margin-bottom: 20px;
}

h4.shop_right {
    padding: 5px 0px 5px 10px;
    background: #ffefd9;
    font-size: 14px;
    margin-bottom: 15px;
}

p.shop_right {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

a.shop_right {
    display: block;
    color: #ff6e9b;
    text-align: right;
}

a.shop_right:hover {
    text-decoration: underline;
}

a.affiliated {
    display: block;
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-bottom: 15px;
}

a.shop_official {
    color: #ff6e9b;
    display: flex;
    align-items: center;
    text-decoration: underline;
    position: relative;
}

/* SNS Icons */
a.instagram:before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/shop/sns_i.png) no-repeat center;
    background-size: cover;
    margin-right: 5px;
}

a.x:before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/shop/sns_x.png) no-repeat center;
    background-size: cover;
    margin-right: 5px;
}

a.tiktok:before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/shop/sns_tiktok.png) no-repeat center;
    background-size: cover;
    margin-right: 5px;
}

a.youtube:before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/shop/sns_youtube.png) no-repeat center;
    background-size: cover;
    margin-right: 5px;
}

p.affiliated {
    margin-bottom: 5px;
}

div.other_info {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
}

p.other_info {
    width: 32%;
    margin-right: 1%;
    font-size: 12px;
    text-align: center;
    padding: 2px 0px;
    border-radius: 3px;
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 110, 221, 1) 0%, rgba(255, 110, 155, 1) 100%);
    margin-bottom: 3px;
}

/* System Grid */
div.system_grid {
    width: 100%;
    display: flex;
    align-items: start;
    margin-top: 40px;
    justify-content: space-between;
}

section.system_grid_left {
    width: 55%;
}

section.system_grid_right {
    width: 40%;
}

h3.system_grid_title {
    font-size: 18px;
    display: flex;
    align-items: center;
    border-bottom: solid 2px #ff6e9b;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h3.system_grid_title:before {
    content: "■︎";
    color: #ff6e9b;
    margin-right: 2px;
}

article.system_grid {
    margin-bottom: 40px;
}

h4.system_grid_title {
    font-size: 15px;
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: solid 1px #efefef;
    margin-bottom: 10px;
}

h4.system_grid_title:before {
    content: "";
    width: 4px;
    height: 22px;
    background: #ff6e9b;
    margin-right: 5px;
}

div.system_grid_grid {
    width: 100%;
    font-size: 14px;
    border: solid 1px #dcdcdc;
    display: table;
    table-layout: fixed;
}

div.system_grid_grid p {
    display: table-cell;
    vertical-align: middle;
}

div.system_grid_grid:not(:nth-of-type(1)) {
    border-top: none;
}

p.system_grid_grid_left,
p.system_grid_grid_right {
    width: 50%;
    font-weight: 500;
    padding: 8px 0px 8px 15px;
}

p.system_grid_grid_left {
    background: #F3F2EE;
    font-weight: 600;
}

p.system_grid_grid {
    font-size: 12px;
    margin-top: 10px;
    font-weight: 500;
}

div.card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2%;
    flex-wrap: wrap;
    margin-top: 5px;
}

img.card {
    width: 18%;
    margin-bottom: 10px;
}

/* ==================== Pickup News ==================== */

div.pickup_news {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

a.pickup_news {
    width: 30%;
    display: flex;
    align-items: start;
    margin-bottom: 25px;
    margin-right: 3%;
    text-decoration: none;
    color: inherit;
}

p.pickup_news {
    width: 90px;
    height: 90px;
    margin-right: 10px;
    flex-shrink: 0;
}

p.pickup_news img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

article.pickup_news {
    width: calc(100% - 90px);
}

p.pickup_news_date {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
}

p.pickup_news_date span {
    font-size: 12px;
    padding: 0px 8px;
    background: #ff6e9b;
    height: 18px;
    line-height: 18px;
    border-radius: 9px;
    display: inline-block;
    color: #fff;
    margin-left: 5px;
    margin-bottom: 5px;
}

h3.pickup_news {
    color: #966;
    font-size: 14px;
    line-height: 1.3;
}

h5.pickup_news {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== Staff Section ==================== */

div.shop_staff_tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: dotted 1px #dcdcdc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

div.shop_staff_tab_left {
    display: flex;
    align-items: center;
}

a.shop_staff_tab {
    color: #ff6e9b;
    font-size: 15px;
    display: block;
    text-decoration: none;
}

a.shop_staff_tab.active {
    font-weight: 700;
    border-bottom: 2px solid #ff6e9b;
    padding-bottom: 2px;
}

a.shop_staff_tab:after {
    content: "";
    width: 1px;
    display: inline-block;
    vertical-align: middle;
    height: 18px;
    margin: 0px 15px;
    background: #444;
}

a.shop_staff_tab:last-child:after {
    display: none;
}

div.shop_staff_tab_right {
    display: flex;
    align-items: center;
}

label.select {
    width: max-content;
    height: 30px;
    display: block;
    border: solid 1px #dcdcdc;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    margin-right: 10px;
}

label.select:after {
    content: "▼";
    position: absolute;
    color: #000;
    width: 10px;
    height: 10px;
    font-size: 10px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

label.select select {
    width: 100%;
    height: 100%;
    color: #222;
    padding: 0px 30px 0px 10px;
    border: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

label.input {
    width: 180px;
    height: 30px;
    display: block;
    border: solid 1px #dcdcdc;
    border-radius: 3px;
    overflow: hidden;
    margin-right: 2px;
}

label.input input {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border: none;
}

label.submit {
    width: 80px;
    height: 30px;
}

label.submit input[type="submit"] {
    width: 100%;
    height: 100%;
    background: #444;
    color: #fff;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}

/* Staff Category */
div.shop_staff_category {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

div.shop_staff_category a {
    margin-bottom: 10px;
}

p.shop_staff_category {
    background-color: #FBFFD5;
    border: solid 1px #ccc;
    padding: 2px 5px;
    display: inline-block;
    border-radius: 4px;
    margin: 0 12px 10px 0;
    font-size: 13px;
    font-weight: 500;
}

/* Staff List */
div.shop_staff_list {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 15px;
}

article.shop_staff_list {
    width: calc(100% / 6 - 15px);
    border: solid 1px #dcdcdc;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

a.shop_staff_list {
    aspect-ratio: 2 / 3;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

a.shop_staff_list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

h3.shop_staff_list {
    color: #ff6e9b;
    font-size: 15px;
    margin-bottom: 10px;
}

h4.shop_staff_list {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

h5.shop_staff_list {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-bottom: 20px;
}

div.shop_staff_list_footer {
    display: flex;
    align-items: center;
    font-size: 11px;
    border-radius: 3px;
    margin-bottom: 8px;
}

div.shop_staff_list_footer span {
    padding: 2px 0;
    width: 35%;
}

div.shop_staff_list_footer p {
    width: 65%;
}

div.next,
div.today {
    border: solid 1px #5d9dcc;
}

div.blog {
    border: solid 1px #f47110;
}

div.next span {
    color: #5d9dcc;
}

div.next p,
div.today p {
    color: #666;
}

div.today span {
    background: #5d9dcc;
    color: #fff;
}

div.blog span {
    background: #f47110;
    color: #fff;
}

div.blog p {
    color: #f47110;
}

a.shop_staff_list_footer {
    font-size: 13px;
    color: #ea5050;
    text-align: left;
    display: flex;
    align-items: center;
    text-decoration: underline;
}

a.shop_staff_list_footer:before {
    content: "";
    width: 22px;
    height: 22px;
    margin-right: 5px;
    background: url(../img/shop/sns_youtube.png);
    background-size: cover;
}

a.shop_staff_list_gravure {
    font-size: 13px;
    color: #000;
    text-align: left;
    display: flex;
    align-items: center;
    text-decoration: underline;
}

a.shop_staff_list_gravure:before {
    content: "";
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: url(../img/shop/302674.png);
    background-size: cover;
}

/* Staff Pickup Label */
.staff_pickup_label {
    position: absolute;
    bottom: 10px;
    left: 5px;
    right: 5px;
    background: linear-gradient(90deg, #ff6e9b 0%, #ff9ebc 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    text-align: center;
}

a.shop_staff_list {
    position: relative;
}

/* Staff List Footer Link */
.shop_staff_list_footer_link {
    font-size: 12px;
    color: #ff6e9b;
    text-decoration: none;
    display: block;
    margin-top: 5px;
}

.shop_staff_list_footer_link:hover {
    text-decoration: underline;
}

/* Staff Badges Container */
.shop_staff_list_badges {
    margin-bottom: 8px;
}

/* Staff Empty State */
.staff_empty {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

/* Staff Pagination */
.staff_pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/* ==================== Schedule Section ==================== */

h3.schedule {
    color: #666;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px;
}

h4.schedule {
    color: #ff6e9b;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

div.schedule_post {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: dotted 1px #dcdcdc;
}

a.schedule_image {
    width: 90px;
}

div.schedule_right {
    width: calc(100% - 90px);
    padding-left: 15px;
}

div.schedule_calendar {
    font-size: 12px;
}

a.schedule_right {
    display: block;
    color: #ff6e9b;
    font-size: 16px;
    text-decoration: underline;
    margin-bottom: 5px;
}

/* ==================== Event Section ==================== */

h3.event_title {
    background: #ff6e9b;
    color: #fff;
    padding: 5px 0px 5px 10px;
    font-size: 18px;
    margin-bottom: 20px;
}

div.month_girl {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 20px;
}

article.month_girl {
    width: 120px;
    text-decoration: underline;
    color: #ff6e9b;
    font-size: 12px;
    text-align: center;
}

a.month_girl {
    width: 100%;
    aspect-ratio: 2 / 3;
}

a.month_girl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 5px;
}

/* ==================== Recruit Section ==================== */

article.recruit {
    width: 100%;
    border: solid 1px #dcdcdc;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
}

h2.recruit {
    color: #999;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 34px;
    margin-bottom: 15px;
    font-family: "Afacad Flux", sans-serif;
    font-style: normal;
}

h2.recruit:before {
    content: "";
    width: 5px;
    height: 30px;
    background: #ff6e9b;
    display: block;
    margin-right: 10px;
}

h2.recruit small {
    font-size: 40%;
    margin-left: 10px;
}

/* ==================== Responsive Design ==================== */

@media screen and (max-width: 960px) {
    /* Tab Navigation Mobile */
    ul.shop_tab li,
    ul.shop_tab a {
        width: calc(100% / 6);
        font-size: 11px;
        height: 45px;
        line-height: 45px;
    }

    /* Shop Info Mobile */
    article.shop_info {
        width: 94%;
        margin: 0px auto 30px auto;
    }

    /* System Section Mobile */
    article.shop_left {
        width: 100%;
        border: none;
        border-bottom: solid 1px #dcdcdc;
        border-radius: 0;
        padding: 15px;
    }

    h2.system {
        color: #ff6e9b;
        font-size: 28px;
        border-bottom: solid 2px #ff6e9b;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    /* System Grid Mobile */
    div.system_grid {
        width: 94%;
        margin: 20px auto;
        border: solid 1px #dcdcdc;
        padding-top: 10px;
        flex-direction: column;
    }

    section.system_grid_left,
    section.system_grid_right {
        width: 100%;
    }

    h3.system_grid_title {
        font-size: 15px;
        padding-left: 3%;
        border-bottom: none;
    }

    h3.system_grid_title:before {
        content: "▼︎";
    }

    h4.system_grid_title {
        font-size: 13px;
        background: #ff6e9b;
        color: #fff;
        font-weight: 500;
        text-align: center;
        padding: 5px 0px;
        border-bottom: none;
    }

    h4.system_grid_title:before {
        display: none;
    }

    /* Staff List Mobile */
    div.shop_staff_list {
        gap: 10px;
    }

    article.shop_staff_list {
        width: 100%;
        display: flex;
        align-items: start;
        padding: 15px;
        border-radius: 0;
        border: none;
        border-bottom: dotted 1px #dcdcdc;
    }

    a.shop_staff_list {
        width: 35%;
        margin-bottom: 0;
    }

    div.shop_staff_list_right {
        width: 65%;
        padding-left: 15px;
        text-align: left;
    }

    h3.shop_staff_list {
        font-size: 16px;
    }

    /* Staff Tab Mobile */
    div.shop_staff_tab {
        flex-direction: column;
    }

    div.shop_staff_tab_left {
        width: 96%;
        margin: 0px auto 10px auto;
        justify-content: center;
        gap: 1%;
    }

    a.shop_staff_tab {
        width: 33%;
        font-size: 11px;
        text-align: center;
        border: solid 1px #ff6e9b;
        padding: 10px;
        border-radius: 4px;
    }

    a.shop_staff_tab.active {
        background: #ff6e9b;
        color: #fff;
        font-weight: 700;
        border-bottom: none;
        padding-bottom: 10px;
    }

    a.shop_staff_tab:after {
        display: none;
    }

    a.shop_staff_tab:first-of-type {
        display: block;
    }

    div.shop_staff_tab_right {
        width: 96%;
        margin: 0px auto 10px auto;
    }

    label.input {
        height: 40px;
    }

    label.submit {
        height: 40px;
    }

    label.select {
        height: 40px;
    }

    /* Pickup News Mobile */
    div.pickup_news {
        width: 92%;
        margin: 0px auto;
    }

    a.pickup_news {
        width: 100%;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: dotted 1px #dcdcdc;
    }

    /* Event Section Mobile */
    h3.event_title {
        width: 94%;
        margin: 0px auto 20px auto;
        text-align: center;
        border-radius: 3px;
    }

    div.month_girl {
        width: 94%;
        margin: 0px auto 20px auto;
        padding: 10px;
        border: double 3px #ff6e9b;
    }

    article.month_girl {
        width: 70px;
        font-size: 10px;
    }
}

/* ==================== View Toggle ==================== */

div.view {
    display: flex;
    align-items: center;
    margin: 0px 0px 0px auto;
}

p.view {
    width: 42px;
    height: 42px;
    background: #ccc;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

p.view img {
    width: 24px;
    height: 24px;
}

p.view_select {
    background: #ff6e9b;
}

/* ==================== Main Container ==================== */

main.shop_main {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 80px;
    padding: 20px 0;
}

/* PC Display Only */
.pc {
    display: block;
}

.mobile {
    display: none;
}

@media screen and (max-width: 960px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }
}

/* ==================== Review Section ==================== */

/* Review Container */
.review_container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.review_content {
    flex: 1;
    min-width: 0;
}

/* Review Banner */
.review_banner {
    background: linear-gradient(90deg, #ff6e9b 0%, #ff9ebc 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.review_banner_icon {
    font-size: 20px;
}

.review_banner_text {
    font-size: 14px;
}

/* Review Sort Tabs */
.review_sort_tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: solid 1px #dcdcdc;
    padding-bottom: 15px;
}

.review_sort_tab {
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    border: solid 1px #dcdcdc;
    border-radius: 3px;
    background: #fff;
    transition: all 0.2s ease;
}

.review_sort_tab:hover {
    background: #f5f5f5;
}

.review_sort_tab.active {
    background: #ff6e9b;
    color: #fff;
    border-color: #ff6e9b;
}

/* Review Stats */
.review_stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.review_stats_label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.review_stats_content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review_stats_average {
    font-size: 28px;
    font-weight: bold;
    color: #ff6e9b;
}

.review_stars {
    display: flex;
    gap: 2px;
}

.review_stars .star {
    color: #ddd;
    font-size: 18px;
}

.review_stars .star.filled {
    color: #ffc107;
}

.review_stats_count {
    font-size: 13px;
    color: #666;
}

/* Review Category Header */
.review_category_header {
    background: linear-gradient(90deg, #ff6e9b 0%, #ff9ebc 100%);
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border-radius: 3px;
}

/* Review Item */
.review_item {
    border: solid 1px #dcdcdc;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.review_item_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f9f9f9;
    border-bottom: solid 1px #eee;
}

.review_date {
    font-size: 12px;
    color: #666;
}

.review_meta {
    font-size: 11px;
    color: #999;
}

.review_item_body {
    padding: 15px;
}

.review_user {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.review_user_avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}

.review_user_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review_user_info {
    flex: 1;
}

.review_user_name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 3px;
}

.review_user_rating {
    display: flex;
    gap: 1px;
}

.review_user_rating .star {
    font-size: 14px;
    color: #ddd;
}

.review_user_rating .star.filled {
    color: #ffc107;
}

.review_content_text {
    margin-left: 57px;
}

.review_title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.review_comment {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

.review_item_footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: #fafafa;
    border-top: solid 1px #eee;
}

.review_action {
    font-size: 12px;
    color: #ff6e9b;
    text-decoration: none;
}

.review_action:hover {
    text-decoration: underline;
}

.review_link {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}

/* Review Reply Section */
.review_reply_section {
    margin-bottom: 20px;
    margin-left: 30px;
}

.review_reply_header {
    font-size: 13px;
    font-weight: 600;
    color: #ff6e9b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.review_reply_header::before {
    content: "";
    width: 3px;
    height: 15px;
    background: #ff6e9b;
    margin-right: 8px;
}

.review_reply_item {
    border: solid 1px #ffcce0;
    border-radius: 8px;
    padding: 15px;
    background: #fff9fb;
}

.review_reply_user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review_reply_avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    background: #ff6e9b;
}

.review_reply_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review_reply_info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review_reply_name {
    font-weight: 600;
    font-size: 13px;
    color: #ff6e9b;
}

.review_reply_label {
    font-size: 12px;
    color: #666;
}

.review_reply_text {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin-left: 45px;
}

/* Review Empty State */
.review_empty {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 30px;
}

.review_empty p {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
}

/* Review Pagination */
.review_pagination {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

/* Review Form Section */
.review_form_section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: solid 2px #ff6e9b;
}

.review_form_title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.review_form_title::before {
    content: "■";
    color: #ff6e9b;
    margin-right: 8px;
}

.review_form {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
}

.review_form_row {
    display: flex;
    gap: 20px;
}

.review_form_row .review_form_group {
    flex: 1;
}

.review_form_group {
    margin-bottom: 20px;
}

.review_form_group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.review_form_group label .required {
    color: #ff6e9b;
}

.review_form_group input[type="text"],
.review_form_group input[type="email"],
.review_form_group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: solid 1px #dcdcdc;
    border-radius: 5px;
    background: #fff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.review_form_group input:focus,
.review_form_group textarea:focus {
    outline: none;
    border-color: #ff6e9b;
}

.review_form_group textarea {
    resize: vertical;
    min-height: 120px;
}

.review_form_rating {
    display: flex;
    gap: 5px;
}

.rating_input {
    display: none;
}

.rating_label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating_label:hover,
.rating_label.hover {
    color: #ffc107;
}

.rating_label.selected {
    color: #ffc107;
}

.error_message {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.review_form_submit {
    text-align: center;
    margin-top: 10px;
}

.review_submit_btn {
    background: linear-gradient(180deg, #ff6e9b 0%, #ff5a8a 100%);
    color: #fff;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.review_submit_btn:hover {
    opacity: 0.9;
}

/* Review Sidebar */
.review_sidebar {
    width: 280px;
    flex-shrink: 0;
}

.sidebar_shop_info {
    border: solid 1px #dcdcdc;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar_shop_image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.sidebar_shop_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar_shop_image_placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6e9b 0%, #ff9ebc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.sidebar_shop_details {
    padding: 15px;
}

.sidebar_shop_name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.sidebar_shop_address {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.sidebar_shop_link {
    display: block;
    font-size: 13px;
    color: #ff6e9b;
    text-decoration: none;
}

.sidebar_shop_link:hover {
    text-decoration: underline;
}

.sidebar_section {
    border: solid 1px #dcdcdc;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.sidebar_section_title {
    background: #f3f2ee;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    border-bottom: solid 1px #dcdcdc;
}

.sidebar_terms {
    padding: 15px;
}

.sidebar_terms dt {
    font-size: 12px;
    font-weight: 600;
    color: #ff6e9b;
    margin-bottom: 3px;
}

.sidebar_terms dd {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    margin-left: 0;
}

.sidebar_terms dd:last-child {
    margin-bottom: 0;
}

.sidebar_sns {
    padding: 15px;
}

.sidebar_sns_link {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #ff6e9b;
    text-decoration: none;
    margin-bottom: 8px;
}

.sidebar_sns_link:last-child {
    margin-bottom: 0;
}

.sidebar_sns_link:hover {
    text-decoration: underline;
}

.sidebar_sns_link.x::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/shop/sns_x.png) no-repeat center;
    background-size: contain;
    margin-right: 8px;
}

.sidebar_sns_link.instagram::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/shop/sns_i.png) no-repeat center;
    background-size: contain;
    margin-right: 8px;
}

.sidebar_players {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar_player {
    width: calc(50% - 5px);
    text-align: center;
    text-decoration: none;
}

.sidebar_player img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 5px;
}

.sidebar_player span {
    display: block;
    font-size: 11px;
    color: #ff6e9b;
}

.sidebar_empty {
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* ==================== Staff Detail Section ==================== */

/* Staff Detail Container */
.staff_detail_container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.staff_detail_main {
    flex: 1;
    min-width: 0;
}

.staff_detail_sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* Profile Icon */
.profile_icon {
    color: #ff6e9b;
    margin-right: 5px;
}

/* Staff Profile Content */
.staff_profile_content {
    display: flex;
    gap: 25px;
    padding: 20px 0;
}

/* Photo Gallery */
.staff_photo_gallery {
    width: 280px;
    flex-shrink: 0;
}

.staff_main_photo {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #ffcce0;
}

.staff_main_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.staff_sub_photos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.staff_sub_photo {
    width: calc(25% - 6px);
    aspect-ratio: 2 / 3;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.staff_sub_photo.active,
.staff_sub_photo:hover {
    border-color: #ff6e9b;
}

.staff_sub_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Staff Profile Info */
.staff_profile_info {
    flex: 1;
    min-width: 0;
}

/* Schedule Calendar */
.staff_schedule_calendar {
    margin-bottom: 20px;
    overflow-x: auto;
}

.schedule_table {
    width: 100%;
    border-collapse: collapse;
    min-width: 350px;
}

.schedule_table th,
.schedule_table td {
    padding: 8px 5px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #dcdcdc;
}

.schedule_table th {
    background: #f3f2ee;
    font-weight: 600;
}

.schedule_table th.today {
    background: #ff6e9b;
    color: #fff;
}

.schedule_table th.saturday {
    color: #0066cc;
}

.schedule_table th.sunday {
    color: #cc0000;
}

.schedule_table td.has_schedule {
    background: #fff5f8;
}

.schedule_time {
    color: #ff6e9b;
    font-weight: 600;
}

.no_schedule {
    color: #ccc;
}

/* Profile Table */
.staff_profile_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.staff_profile_table tr {
    border-bottom: 1px solid #dcdcdc;
}

.staff_profile_table th {
    width: 130px;
    padding: 12px 15px;
    background: #f3f2ee;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    vertical-align: top;
}

.staff_profile_table td {
    padding: 12px 15px;
    font-size: 13px;
    line-height: 1.6;
}

.name_icon {
    color: #ff6e9b;
}

/* SNS Links in Profile Table */
.sns_links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sns_link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ff6e9b;
    text-decoration: none;
    font-size: 13px;
}

.sns_link:hover {
    text-decoration: underline;
}

.sns_link img {
    width: 18px;
    height: 18px;
}

/* Profile Videos Section */
.staff_profile_videos {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dcdcdc;
}

.video_section_title,
.photo_section_title {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.video_icon,
.photo_icon {
    color: #ff6e9b;
    margin-right: 8px;
}

.video_gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.video_item {
    width: calc(33.33% - 10px);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video_item iframe,
.video_item video {
    width: 100%;
    height: 100%;
}

/* More Photos Section */
.staff_more_photos {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dcdcdc;
}

.photo_gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.photo_item {
    width: calc(25% - 8px);
    aspect-ratio: 2 / 3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.photo_item:hover {
    transform: scale(1.02);
}

.photo_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Buttons */
.staff_detail_nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #dcdcdc;
}

.staff_detail_nav .nav_button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.shop_button {
    background: #fff;
    color: #ff6e9b;
    border: 2px solid #ff6e9b;
}

.shop_button:hover {
    background: #ff6e9b;
    color: #fff;
}

.back_button {
    background: #fff;
    color: #666;
    border: 2px solid #dcdcdc;
}

.back_button:hover {
    background: #f5f5f5;
}

/* Staff Detail Sidebar */
.staff_detail_sidebar .sidebar_shop_banner {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dcdcdc;
}

.staff_detail_sidebar .sidebar_shop_banner img {
    width: 100%;
    height: auto;
    display: block;
}

.staff_detail_sidebar .sidebar_section {
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.staff_detail_sidebar .sidebar_title {
    background: linear-gradient(to bottom, #f3f2ee, #fff);
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    border-bottom: 1px solid #dcdcdc;
}

.staff_detail_sidebar .sidebar_content {
    padding: 12px 15px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.staff_detail_sidebar .sidebar_content a {
    color: #ff6e9b;
    text-decoration: none;
}

.staff_detail_sidebar .sidebar_content a:hover {
    text-decoration: underline;
}

.map_link {
    display: block;
    color: #ff6e9b;
    font-size: 12px;
    margin-top: 5px;
    text-decoration: none;
}

.map_link:hover {
    text-decoration: underline;
}

.official_link {
    color: #ff6e9b;
    text-decoration: underline;
}

/* Sidebar SNS Links */
.sidebar_sns_links {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar_sns_link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6e9b;
    text-decoration: none;
    font-size: 13px;
}

.sidebar_sns_link:hover {
    text-decoration: underline;
}

.sns_icon {
    font-size: 16px;
}

/* Related Shops */
.related_shops {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related_shop_item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #666;
    font-size: 12px;
}

.related_shop_item img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.related_shop_item:hover {
    color: #ff6e9b;
}

/* Sidebar Tags */
.sidebar_tags {
    padding: 12px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar_tag {
    padding: 5px 12px;
    font-size: 12px;
    background: linear-gradient(180deg, #ff6edd 0%, #ff6e9b 100%);
    color: #fff;
    border-radius: 3px;
    font-weight: 500;
}

.sidebar_tag.feature_tag {
    background: linear-gradient(180deg, #ff6e9b 0%, #ff5a8a 100%);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.lightbox_close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 100000;
}

.lightbox_content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Staff Detail Responsive */
@media screen and (max-width: 960px) {
    .staff_detail_container {
        flex-direction: column;
    }

    .staff_detail_sidebar {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }

    .staff_detail_sidebar .sidebar_shop_banner {
        display: none;
    }

    .staff_profile_content {
        flex-direction: column;
    }

    .staff_photo_gallery {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .staff_sub_photo {
        width: calc(25% - 6px);
    }

    .staff_profile_table th {
        width: 100px;
        padding: 10px;
        font-size: 12px;
    }

    .staff_profile_table td {
        padding: 10px;
        font-size: 12px;
    }

    .video_item {
        width: 100%;
    }

    .photo_item {
        width: calc(33.33% - 7px);
    }

    .staff_detail_nav {
        flex-direction: column;
        gap: 10px;
    }

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

    .schedule_table th,
    .schedule_table td {
        padding: 6px 3px;
        font-size: 10px;
    }
}

/* Review Responsive */
@media screen and (max-width: 960px) {
    .review_container {
        flex-direction: column;
    }

    .review_sidebar {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }

    .sidebar_shop_info {
        display: flex;
        align-items: stretch;
    }

    .sidebar_shop_image {
        width: 120px;
        height: auto;
        flex-shrink: 0;
    }

    .sidebar_shop_details {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sidebar_section {
        display: none;
    }

    .review_sort_tabs {
        flex-wrap: wrap;
    }

    .review_sort_tab {
        flex: 1;
        min-width: 100px;
        text-align: center;
        font-size: 11px;
        padding: 8px 10px;
    }

    .review_form_row {
        flex-direction: column;
        gap: 0;
    }

    .review_content_text {
        margin-left: 0;
        margin-top: 15px;
    }

    .review_reply_text {
        margin-left: 0;
        margin-top: 10px;
    }

    .review_reply_section {
        margin-left: 15px;
    }
}

/* ==================== Shop Detail 2-Column Grid ==================== */
.shop_detail_grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.shop_detail_grid_left {
    flex: 1;
    min-width: 0;
}
.shop_detail_grid_right {
    width: 280px;
    flex-shrink: 0;
}

/* ==================== Sidebar ==================== */
.shop_detail_sidebar {
    position: sticky;
    top: 130px;
}
.shop_detail_sidebar_card {
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}
.shop_detail_sidebar_image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.shop_detail_sidebar_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop_detail_sidebar_noimg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6e9b 0%, #ff9ebc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.shop_detail_sidebar_body {
    padding: 12px 15px;
}
.shop_detail_sidebar_name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}
.shop_detail_sidebar_area {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}
.shop_detail_sidebar_tel {
    font-size: 13px;
}
.shop_detail_sidebar_tel a {
    color: #5d9dcc;
}
.shop_detail_sidebar_section {
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}
.shop_detail_sidebar_heading {
    background: #f3f2ee;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid #dcdcdc;
}
.shop_detail_sidebar_content {
    padding: 12px 15px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.shop_detail_sidebar_dl dt {
    font-weight: 600;
    color: #444;
    margin-bottom: 2px;
}
.shop_detail_sidebar_dl dd {
    margin: 0 0 10px 0;
}
.shop_detail_sidebar_sns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.shop_detail_sidebar_link {
    color: #ff6e9b;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 13px;
}
.shop_detail_sidebar_link:hover {
    text-decoration: underline;
}
.shop_detail_sidebar_link.x::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/shop/sns_x.png) no-repeat center;
    background-size: contain;
    margin-right: 8px;
}
.shop_detail_sidebar_link.instagram::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/shop/sns_i.png) no-repeat center;
    background-size: contain;
    margin-right: 8px;
}
.shop_detail_sidebar_link.tiktok::before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/shop/sns_tiktok.png) no-repeat center;
    background-size: contain;
    margin-right: 8px;
}

/* ==================== PICK UP CAST ==================== */
.shop_detail_pickup_cast {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.shop_detail_pickup_cast_item {
    width: calc(20% - 12px);
    text-align: center;
    text-decoration: none;
    color: inherit;
}
.shop_detail_pickup_cast_img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}
.shop_detail_pickup_cast_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.shop_detail_pickup_cast_name {
    display: block;
    font-size: 13px;
    color: #ff6e9b;
    font-weight: 600;
}

/* ==================== PROFILE MOVIE ==================== */
.shop_detail_movie_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.shop_detail_movie_item {
    width: calc(50% - 8px);
    aspect-ratio: 16/9;
}
.shop_detail_movie_item iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* ==================== SHOP PHOTO ==================== */
.shop_detail_photo_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.shop_detail_photo_item {
    width: calc(33.33% - 7px);
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}
.shop_detail_photo_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== More Link ==================== */
.shop_detail_more {
    display: block;
    text-align: center;
    color: #ff6e9b;
    font-size: 14px;
    padding: 12px;
    border: 1px solid #ff6e9b;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
}
.shop_detail_more:hover {
    background: #ff6e9b;
    color: #fff;
}

/* ==================== Shop Detail Grid Mobile ==================== */
@media screen and (max-width: 960px) {
    .shop_detail_grid {
        flex-direction: column;
    }
    .shop_detail_grid_right {
        width: 100%;
        order: -1;
    }
    .shop_detail_sidebar {
        position: static;
    }
    .shop_detail_sidebar_card {
        display: flex;
        align-items: stretch;
    }
    .shop_detail_sidebar_image {
        width: 120px;
        height: auto;
        flex-shrink: 0;
    }
    .shop_detail_sidebar_section {
        display: none;
    }
    .shop_detail_movie_item {
        width: 100%;
    }
    .shop_detail_photo_item {
        width: calc(50% - 5px);
    }
    .shop_detail_pickup_cast_item {
        width: calc(33.33% - 10px);
    }
}
