@charset "utf-8";

/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

img {
    width: 100%;
    -ms-interpolation-mode: bicubic;
}

input, button, textarea, select {
    font: inherit;
}

iframe {
    border:0;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

ul, ol {
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
}

a, a:before, a:after, input {
    transition: all 0.2s ease;
}

a:hover {
    color: #c2aa99;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

/* ----------------------------------------------------------------------
 基本設定
---------------------------------------------------------------------- */
body {
    -webkit-text-size-adjust: 100%;
    margin: 0 auto !important;
    color: #f5f5f5;
    line-height: 1;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
}

.wrap_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
        url('../img/4413577_92903.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1 !important;
    /* 画像を最背面に保つ */
}

.site_wrap {
    background: transparent;
}

.container {
    margin: 0 auto;
    padding: 20px 0px;
    overflow: clip;
}

.main-area {
    margin-bottom: 20px;
}

#site_wrapper {
    max-width: 1180px !important;
    margin: 0px auto 0 !important;
}

.base_wrap {
    order: 2;
    margin: 0px auto 0;
    padding: 0px 5px 15px !important;
    overflow: clip !important;
    max-width: 600px;
    min-width: 300px;
    width: 100%;
}

.content-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    gap: 50px;
}

.slide-wrapper {
    max-width: 980px;
    padding: 10px;
    margin: 30px auto 0;
    display: flex;
    gap: 30px;
}

.main-slide {
    flex: 2;
    margin-top: 20px;
}

.slide_side_wrap {
    flex: 1;
    display: grid;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
    margin: 0px;
}

.slide_side_wrap img {
    border-radius: 5px;
}

.slide_side_wrap video {
    box-sizing: border-box;
    border-radius: 5px;
}

.main-content {
    flex: 2;
    margin-bottom: 0px;
    margin-top: 20px;
}

.sidebar {
    flex: 1;
    padding: 0px;
    margin-top: 20px;
}

/* ----------------------------------------------------------------------
 ヘッダー - レスポンシブ対応版
---------------------------------------------------------------------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 3px;
    z-index: 999;
    box-sizing: border-box;
}

.center-space {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    padding: 0 15px;
    font-size: 30px;
    flex: 2;
}

.center-space img {
    width: auto;
    max-width: 180px;
    height: 55px;
}

.left-space, .right-space {
    flex: 0;
}

.left-space img {
    display: none;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 180px;
    height: 55px;
    margin-left: 10px;
}

.header_navi_txt {
    display: none;
}

.pc-nav-menu {
    display: none;
}

.header-tel {
    display: none;
}

.logo a {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.logo img {
    width: 8%;
}

.logo_foot a {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 20px;
}

.logo_foot img {
    width: 250px;
}

.header-text {
    font-size: 11px;
    margin: 0 auto;
    color: #333;
    text-align: center;
}

.phone-icon {
    display: block;
    font-size: 25px;
    border: none;
    color: #333;
    cursor: pointer;
    background: none;
    height: 55px;
    line-height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.phone-icon a {
    display: block;
    font-size: 25px;
    padding-top: 3px;
    border: none;
    color: #333;
    height: 55px;
    aspect-ratio: 1/1;
}

.hamburger {
    position: relative;
    font-size: 45px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer !important;
    padding: 0 0 15px 0;
    margin-right: 8px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.hamburger::before {
    content: '☰';
}

.hamburger.active::before {
    content: '✕';
}

@media (min-width: 900px) {
    .header {
        padding: 0 20px;
        height: 80px;
        gap: 15px;
    }

    .left-space .phone-icon {
        display: none !important;
    }

    .right-space .hamburger {
        display: none !important;
    }

    .left-space {
        flex: 0 0 auto;
    }

    .left-space img {
        display: flex !important;
        margin-left: 0;
        max-width: 180px;
        height: 50px;
    }

    .center-space {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 15px;
        padding: 0;
        overflow: visible;
        min-width: 0;
    }

    .center-space>a {
        display: none !important;
    }

    .header_navi_txt {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        line-height: 1.2;
        cursor: pointer;
    }

    .header_navi_txt a {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        line-height: 1.2;
    }

    .header_navi_txt .hours {
        font-size: 11px;
        font-weight: 400;
        display: block;
    }

    .header_navi_txt .phone {
        font-size: 16px;
        font-weight: bold;
        display: block;
        margin-top: 3px;
    }

    .header_navi_txt .phone-branch {
        font-size: 14px;
        font-weight: bold;
        display: block;
        margin-top: 3px;
        color:#a3955e;
    }

    .header_navi_txt .phone i {
        margin-right: 6px;
    }

    .header_navi_txt .phone-branch i {
        margin-right: 6px;
    }

    .pc-nav-menu {
        display: flex;
        align-items: flex-end;
        gap: 15px;
        margin: 0;
        padding: 0;
        list-style: none;
        flex-shrink: 1;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .pc-nav-menu li {
        margin: 0;
        flex-shrink: 1;
        min-width: 0;
    }

    .pc-nav-menu a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 1.3;
        padding-left: 15px;
        border-left: 1px solid #ccc;
        display: block;
    }

    .pc-nav-menu a .en {
        font-size: 15px;
        font-weight: 700;
        display: block;
    }

    .pc-nav-menu a .ja {
        font-size: 10px;
        font-weight: 400;
        display: block;
        margin-top: 2px;
    }

    .pc-nav-menu a:hover {
        opacity: 0.7;
    }

    .right-space {
        flex: 0 0 auto;
        width: 0;
    }

    .mobile-menu {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .header_navi_txt {
        display: none;
    }

    .pc-nav-menu {
        gap: 10px;
    }

    .pc-nav-menu a {
        font-size: 11px;
    }
}

.mobile-menu {
    position: fixed;
    top: 55px;
    bottom: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.4);
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 2000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
    animation: slideIn 0.3s ease-out;
}

.mobile-menu.closing {
    display: flex;
    animation: slideOut 0.3s ease-out;
}

.mobile-menu:not(.active) {
    display: none !important;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (min-width: 900px) {
    .mobile-menu {
        display: none !important;
    }
}

.menu-info-block {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

.menu-info-block .contact-info a {
    color: white;
    text-decoration: none;
    max-width: 300px;
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin: 0px auto 10px;
    text-align: center;
}

.contact-info img {
    max-width: 250px;
    display: block;
    margin: 0 auto;
    margin: 20px auto 35px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.menu-list li {
    margin: 0 !important;
    padding: 10px !important;
    text-align: center !important;
    box-sizing: border-box;
}

.menu-list a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block !important;
    line-height: 1.2;
    text-shadow: 1px 1px 3px #111;
}

.menu-list a span {
    color: #f5f5f5;
    font-size: 12px !important;
}

.slider {
    z-index: 500;
}

.profile-social-section { 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 30px;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-x {
    background-color: #000;
    color: #fff;
}

.social-x:hover {
    background-color: #333;
}

.social-line {
    background-color: #06C755;
    color: #fff;
}

.social-line:hover {
    background-color: #05b34b;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-instagram:hover {
    opacity: 0.9;
}

.social-tiktok {
    background-color: #000;
    color: #fff;
}

.social-tiktok:hover {
    background-color: #ff0050;
}

.menu-info-block .social-icons {
    padding: 15px 0;
    margin-top: 15px;
}

.menu-info-block .social-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
}

@media (min-width: 768px) {
    .header .social-icons {
        gap: 10px;
        margin: 0;
    }

    .header .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

.branch-modal-overlay {
    display: none;
    /* 初期状態で非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.branch-modal-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.branch-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fadeInCenter 0.3s ease;
}

.branch-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #ff9a9e 0%, #f093c5 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.branch-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.branch-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.branch-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.branch-modal-body {
    padding: 16px;
}

.branch-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f5f7fa 100%);
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    gap: 12px;
    flex-wrap: wrap;
}

.branch-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.branch-item-single {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f5f7fa 100%);
    border-radius: 12px;
    border: 2px solid #667eea;
}

.branch-info {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    line-height: 1.4;
}

.branch-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.branch-code {
    display: inline-block;
    background: #667eea;
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
    margin-left: 6px;
}

.branch-info p {
    margin: 4px 0;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.branch-info i {
    color: #667eea;
    width: 16px;
    text-align: center;
}

.branch-hours {
    font-weight: 500;
    color: #555;
}

.branch-address {
    line-height: 1.5;
}

.branch-phone {
    font-weight: 600;
    color: #333;
}

.branch-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #ff9a9e 0%, #f093c5 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.branch-call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

.branch-no-phone {
    font-size: 12px;
    color: #999;
    font-style: italic;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .branch-modal-content {
        border-radius: 16px;
        max-height: 80vh;
        width: 90%;
        top: 50%;
        bottom: auto;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        animation: fadeInCenter 0.3s ease;
    }

    .branch-item {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
    }

    .branch-call-btn {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .branch-modal-header h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .branch-item {
        padding: 10px;
    }

    .branch-info h4 {
        font-size: 14px;
    }

    .branch-info p {
        font-size: 12px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInCenter {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.staff-branch-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #ACD879 0%, #ACD879 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    vertical-align: middle;
}

.staff-branch-badge-staff {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #ACD879 0%, #ACD879 100%);
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.staff-branch-badge-staff:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.staff-branch-badge-staff i {
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .staff-branch-badge {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        width: fit-content;
    }

    .staff-branch-info {
        text-align: center;
    }

    .staff-branch-badge-staff {
        font-size: 0.8125rem;
        padding: 0.3125rem 0.625rem;
    }
}

.blog-author-branch-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 10px;
    background: linear-gradient(135deg, #ACD879 0%, #ACD879 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 15px;
    vertical-align: middle;
}

@media (max-width: 640px) {
    .blog-author-branch-badge {
        font-size: 0.65rem;
        padding: 2px 8px;
    }
}

/* ----------------------------------------------------------------------
 エントランス
---------------------------------------------------------------------- */
.index_wrap {
    flex: 1;
    max-width: 980px;
    padding: 0 0 80px;
    margin: 0 auto 0;
    overflow: clip;
}

.top_wrap {
    flex: 1;
    max-width: 600px;
    padding: 0 0 0px;
    margin: 0 auto 0;
    overflow: clip;
}

.img_container {
    text-align: center;
    padding: 20px 10px;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
}

.image-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

#randomImage1, #randomImage2 {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.random-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.05s ease;
}

.random-image.loaded {
    opacity: 1;
}

.age_wrap {
    position: relative;
    padding: 0px 15px 25px;
    text-align: center;
    margin: 20px auto;
}

.age_wrap h1 {
    text-align: center;
    margin: 20px auto 25px;
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    font-weight: normal !important;
}

.age_wrap a {
    color: #0044cc;
}

.age_wrap p {
    display: inline-block;
    background: url("../img/18white.png") left center no-repeat;
    background-size: auto 1.8em;
    font-size: 0.8em !important;
    padding-left: 2em !important;
    margin: 20px 0 40px;
    text-align: left;
    color: #333;
}

.age_wrap img {
    border-radius: 0;
    max-width: 250px;
    margin: 15px auto;
}

.enter_button {
    display: block;
    padding: 18px;
    margin: 10px auto 10px;
    border-radius: 5px;
    color: #fff !important;
    font-size: 17px;
    text-align: center;
    font-weight: bold;
    text-shadow: #f5f5f5 1px 0 10px;
    background: #ff9bad;
    max-width: 320px;
    transition: background 2s ease;
}

.enter_button:hover {
    background: #CAEC4F;
}

.banner_wrap {
    margin: 40px auto 10px;
    text-align: center;
    padding: 10px;
}

.banner_wrap img {
    width: 100%;
    max-width: 320px;
    margin-bottom: 10px;
}

.banner_wrap p {
    background: none;
}

/* ----------------------------------------------------------------------
　トップ
---------------------------------------------------------------------- */
.dots-slideshow-container {
    margin: 45px auto 30px;
    position: relative;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.dots-slideshow-container img {
    border-radius: 5px;
}

.dots-slideshow-container.loaded {
    opacity: 1;
}

.dots-slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.dots-slideshow-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.dots-slideshow-slide.active {
    opacity: 1;
}

.dots-slideshow-prev, .dots-slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.dots-slideshow-prev {
    left: 10px;
}

.dots-slideshow-next {
    right: 10px;
}

.dots-slideshow-dots {
    text-align: center;
    padding: 10px 0 0;
}

.dots-slideshow-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #333;
    cursor: pointer;
}

.dots-slideshow-dot.active {
    background-color: #FF6D90;
}

.thumb-slideshow-container {
    max-width: 600px;
    margin: 20px auto;
    position: relative;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.thumb-slideshow-container.loaded {
    opacity: 1;
}

.thumb-slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.thumb-slideshow-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.thumb-slideshow-slide.active {
    opacity: 1;
}

.thumb-slideshow-prev, .thumb-slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.thumb-slideshow-prev {
    left: 10px;
}

.thumb-slideshow-next {
    right: 10px;
}

.thumb-slideshow-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    margin: -20px auto 100px;
}

.thumb-thumbnail {
    width: 100px;
    height: 60px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.thumb-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-thumbnail.active {
    opacity: 1;
}

.grid-container {
    max-width: 1180px;
    margin: 0 auto -20px;
    padding: 30px 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-item {
    background: #F4EFE3;
    backdrop-filter: blur(7px);
    padding: 20px;
    text-align: center;
    border-radius: 2px;
}

.grid-container-2 {
    margin: 0 auto;
    padding: 0px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-item-2 {
    backdrop-filter: blur(7px);
    text-align: center;
    border-radius: 5px;
}

.grid-container-3 {
    margin: 0 10px;
    padding: 0px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.grid-item-3 {
    backdrop-filter: blur(7px);
    text-align: center;
    border-radius: 5px;
}

.time_txt {
    font-size: 15px;
    color: #111;
    text-align: center;
    margin-bottom: 0px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(7px);
    padding: 14px;
}

.menu_box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    backdrop-filter: blur(5px);
    border-left: 2px solid #d9d9d9;
    margin-top: 14px;
    margin-bottom: -40px;
    padding: 10px 0 0;
}

.menu_box_wrap {
    background: linear-gradient(to bottom, #fff9f5 0%, #fff3eb 100%);
    padding: 15px;
    border-top: 1px solid #e5d8cf;
    border-bottom: 1px solid #e5d8cf;
    margin-bottom: 20px;
}

.menu_box_head {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    backdrop-filter: blur(5px);
    border-left: 2px solid #d9d9d9;
    margin: 65px 1px -70px;
    padding: 10px 0;
}

.menu_box-item {
    border-right: 2px solid #d9d9d9;
}

.menu_bt {
    display: block;
    padding: 12px 5px;
    color: #454545;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s ease, transform 0.2s ease;
}

.menu_bt i {
    font-size: 22px;
    margin-bottom: 4px;
    display: block;
}

.menu_bt.now {
    color: #d22;
    font-weight: 600;
}

.menu_bt:hover {
    color: #e67b88;
    transform: translateY(-2px);
}

.tel_button {
    position: relative;
    display: block;
    padding: 10px;
    margin: 2px auto 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(7px);
    color: #111;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tel_button a{
    color: #111;
}

.tel_button::before {
    content: "";
    position: absolute;
    display: block;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    right: 25px;
    width: 4px;
    height: 4px;
    margin-top: -3px;
    transition: .4s;
}

.tel_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.price_wrap {
    max-width: 680px;
    margin: 0 10px;
}

.price_wrap img {
    margin-bottom: 20px;
}

.big_h2 {
    font-size: 32px;
    margin: 35px auto 35px;
    text-align: center;
    padding: 5px 15px 5px;
    font-weight: 900;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(90deg, rgba(16, 190, 252, 1) 4%, rgba(129, 188, 243, 1) 13%, rgba(230, 177, 225, 1) 28%, rgba(250, 127, 229, 1) 49%, rgba(255, 125, 125, 1) 67%, rgba(247, 152, 102, 1) 78%, rgba(255, 212, 189, 1) 95%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.cast-black-wrap {
    background: #111;
    width: calc(100vw - (100vw - 100%));
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 50px 30px;
    box-sizing: border-box;
}

.cast-grid-black-bottom {
    margin-bottom: 40px;
}

/* ----------------------------------------------------------------------
   キャスト関連
  ---------------------------------------------------------------------- */
.cast-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    justify-content: center;
}

.cast-grid_newface {
    margin: 0 auto;
    padding: 10px 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.cast-grid_ranking {
    margin: 0 auto;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.cast-item {
    position: relative;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
    backdrop-filter: blur(7px);
    text-align: center;
    overflow: hidden;
}

.cast-item a {
    text-decoration: none;
}

.cast-item:hover {
    opacity: 0.7;
    transition: 0.5s;
}

.cast-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.cast-info {
    padding: 10px;
}

.cast-name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #111;
}

.cast-age {
    font-size: 14px;
    color: #222;
}

.cast-size {
    margin-top: 7px;
    font-size: 11px;
    color: #222;
}

.cast-size-2 {
    margin-top: 7px;
    font-size: 11px;
    color: #222;
}

.time {
    font-size: 14px !important;
    color: #333;
    padding: 6px 6px 8px;
    font-weight: 600;
    line-height: 1.3;
}

.time.has-memo {
    font-size: 13px !important;
    color: #B49C48;
    padding: 6px 6px 8px;
    font-weight: 600;
    line-height: 1.3;
}

.nex {
    font-size: 13px !important;
    color: #fff !important;
    background: #FF6F91;
    padding: 6px 6px 8px;
    margin-top: 4px;
    line-height: 1.3;
}

.immediate {
    font-size: 13px !important;
    color: #fff !important;
    background: #30e189;
    padding: 6px 6px 8px;
    margin-top: 4px;
    line-height: 1.3;
}

.no-time {
    font-size: 13px !important;
    color: #fff !important;
    background: #30e189 !important;
    padding: 6px 6px 8px;
    margin-top: 4px;
    line-height: 1.3;
}

.out {
    font-size: 13px !important;
    color: #fff !important;
    background: #d70051;
    padding: 6px 6px 8px;
    margin-top: 4px;
    line-height: 1.3;
}

.btn_wrap {
    margin: 40px auto 40px;
    text-align: center;
}

.btn_wrap2 {
    margin: -10px auto 40px;
    text-align: center;
}

.btn-gradient {
    display: inline-block;
    padding: 12px 24px;
    width: 300px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    background-image: radial-gradient(circle, #FCAFC5, #FCAFC5 80%);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-gradient2 {
    display: inline-block;
    margin: 20px auto;
    padding: 12px 24px;
    width: 300px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    background-image: radial-gradient(circle, #FF6F90, #FF6F90 80%);
    border-radius: 25px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient2:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* ----------------------------------------------------------------------
   カードレイアウト
  ---------------------------------------------------------------------- */
.card-container {
    max-width: 800px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(7px);
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 0 auto 15px;
}

.card-container2 {
    max-width: 800px;
    background-color: white;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(7px);
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 0 auto 15px;
    text-align: left;
}

.card-container a {
    text-decoration: none;
}

.card-container2 a {
    text-decoration: none;
}

.card-image {
    flex: 0 0 150px;
    height: 150px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    flex: 1;
    padding: 20px;
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.card-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.card-excerpt {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
}

/* ----------------------------------------------------------------------
   支店関連
  ---------------------------------------------------------------------- */
.branch-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto 3rem;
    max-width: 1200px;
}

.branch-tab {
    padding: 0.875rem 0.5rem;
    cursor: pointer;
    border: none;
    background: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex: 0 0 calc(50% - 0.25rem);
    max-width: calc(50% - 0.25rem);
}

@media (min-width: 768px) {
    .branch-tab {
        flex: 0 0 calc(33.333% - 0.333rem);
        max-width: calc(33.333% - 0.333rem);
    }
}

.branch-tab:hover {
    color: #ec4899;
    background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 100%);
    transform: translateY(-2px);
}

.branch-tab.active {
    color: #ffffff;
    background: linear-gradient(135deg, #ACD879 0%, #ACD879 100%);
    font-weight: 600;
}

.branch-tab .count {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
    background-color: #f3f4f6;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.branch-tab:hover .count {
    background-color: #fce7f3;
    color: #ec4899;
}

.branch-tab.active .count {
    color: #ec4899;
    background-color: #ffffff;
}

._time .branch-badge {
    display: inline-block;
    margin-left: 0.7rem;
    padding: 0.15rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #ec4899;
    background-color: #fdf2f8;
    border: 1px solid #fbcfe8;
    border-radius: 0.25rem;
}

.name-branch {
    text-align: center;
    margin: 0 auto 0px;
}

.profile-branch-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.975rem;
    font-weight: 500;
    color: #ec4899;
    background-color: #fdf2f8;
    border: 1px solid #fbcfe8;
    border-radius: 0.375rem;
    vertical-align: middle;
}

.profile-branch-badge_shop {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.975rem;
    font-weight: 500;
    color: #02B74D;
    background-color: #ccfee1;
    border: 1px solid #b9fed6;
    border-radius: 0.375rem;
    vertical-align: middle;
}

.cast-branch-wrapper {
    min-height: 1.8em;
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cast-branch-wrapper_today {
    min-height: 1.8em;
    margin: -0.2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cast-branch-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ec4899;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border: 1.5px solid #fbcfe8;
    border-radius: 1rem;
    letter-spacing: 0.025em;
    box-shadow: 0 1px 3px rgba(236, 72, 153, 0.1);
    transition: all 0.2s ease;
}

.cast-item:hover .cast-branch-badge {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    border-color: #f9a8d4;
    box-shadow: 0 2px 6px rgba(236, 72, 153, 0.2);
    transform: translateY(-1px);
}

.cast-branch-badge_shop {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #02B74D;
    background: linear-gradient(135deg, #ccfee1 0%, #b9fed6 100%);
    border: 1.5px solid #04ef67;
    border-radius: 1rem;
    letter-spacing: 0.025em;
    box-shadow: 0 1px 3px rgba(236, 72, 153, 0.1);
    transition: all 0.2s ease;
}

.cast-item:hover .cast-branch-badge_shop {
    background: linear-gradient(135deg, #ccfee1 0%, #b9fed6 100%);
    border: 1.5px solid #04ef67;
    box-shadow: 0 1px 3px rgba(236, 72, 153, 0.1);
    transform: translateY(-1px);
}

.name-branch {
    margin: 15px 0 0px;
    text-align: center;
}

.branch-line {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.branch-line:last-child {
    margin-bottom: 0;
}

.branch-today {
    margin-top: 12px;
}

.profile-branch-badge_shop {
    display: inline-block;
    padding: 6px 14px;
    color: #02B74D;
    background: linear-gradient(135deg, #ccfee1 0%, #b9fed6 100%);
    border: 1.5px solid #04ef67;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.profile-branch-badge_today {
    display: inline-block;
    padding: 8px 14px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.profile-time-badge {
    display: inline-block;
    padding: 8px 14px;
    background: linear-gradient(135deg, #4facfe 0%, #00dfea 100%);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.staff-branch-info {
    margin: 0.55rem 0;
}


/* ============================================
   タイムライン風レイアウト
============================================ */

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
  }
  
  .empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ddd;
  }
  
  .empty-state p {
    font-size: 16px;
  }
  
  .timeline-container {
    max-width: 680px;
    margin: 0 auto;
  }
  
  .timeline-item {
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(7px);
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 16px;
    transition: all 0.3s ease;
  }
  
  .timeline-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .timeline-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .timeline-avatar {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    transition: opacity 0.2s;
  }
  
  .timeline-avatar:hover {
    opacity: 0.8;
  }
  
  .timeline-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
  }
  
  .timeline-user-info {
    flex: 1;
    min-width: 0;
  }
  
  .timeline-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
  }
  
  .timeline-name a {
    font-weight: bold;
    font-size: 15px;
    color: #FF9BBD;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .timeline-name a:hover {
    color: #667eea;
  }

  .timeline-name span {
    font-size: 13px;
    color: #FF9BBD;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .branch-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #f0f4ff!important;
    color: #667eea!important;
    font-size: 11px;
    font-weight: 500;
    border-radius: 12px;
  }
  
  .branch-badge i {
    font-size: 10px;
  }
  
  .timeline-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #657786;
  }
  
  .timeline-date i {
    font-size: 12px;
  }
  
  .timeline-content {
    padding-left: 60px;
  }
  
  .timeline-title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.5;
  }
  
  .timeline-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .timeline-title a:hover {
    color: #667eea;
  }
  
  .timeline-text {
    font-size: 15px;
    line-height: 1.6;
    color: #14171a;
    margin-bottom: 12px;
    word-wrap: break-word;
    white-space: pre-line;
  }
  
  .timeline-images {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e1e8ed;
  }
  
  .timeline-images-1 {
    display: block;
  }
  
  .timeline-images-1 .timeline-image-link {
    display: block;
    max-height: 500px;
    overflow: hidden;
  }
  
  .timeline-images-1 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .timeline-images-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  
  .timeline-images-2 .timeline-image-link {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
  }
  
  .timeline-images-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .timeline-images-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  
  .timeline-images-3 .timeline-image-link:first-child {
    grid-row: 1 / 3;
    aspect-ratio: 1;
  }
  
  .timeline-images-3 .timeline-image-link:not(:first-child) {
    aspect-ratio: 2 / 1;
  }
  
  .timeline-images-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .timeline-image-link {
    transition: opacity 0.2s;
  }
  
  .timeline-image-link:hover {
    opacity: 0.9;
  }
  
  .timeline-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e1e8ed;
  }
  
  .timeline-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #657786;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s;
  }
  
  .timeline-action:hover {
    background: #f7f9fa;
    color: #667eea;
  }
  
  .timeline-action i {
    font-size: 16px;
  }
  
  .timeline-views {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #657786;
    font-size: 14px;
  }
  
  .timeline-views i {
    font-size: 14px;
  }
  
  @media (max-width: 900px) {
    .timeline-container {
      max-width: 100%;
    }
    
    .timeline-item {
      border-radius: 10px;
      border-left: none;
      border-right: none;
      margin-bottom: 15px;
    }
    
    .timeline-content {
      padding-left: 0;
    }
    
    .timeline-title {
      font-size: 16px;
    }
    
    .timeline-text {
      font-size: 14px;
    }
    
    .branch-badge {
      font-size: 10px;
    }
    
    .timeline-images-1 .timeline-image-link {
      max-height: 400px;
    }
  }

/* ----------------------------------------------------------------------
   ブログ
  ---------------------------------------------------------------------- */

.staff-header-container {
    max-width: 1180px;
    margin: 0 auto 2rem;
    padding: 0;
}

.staff-header-card {
    background: linear-gradient(135deg, #ff9a9e 0%, #f093c5 100%);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.staff-header-content {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.staff-image-wrapper {
    flex-shrink: 0;
}

.staff-image {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.staff-image-placeholder {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.staff-image-placeholder i {
    color: #d8b4fe;
    font-size: 3rem;
}

.staff-info {
    flex: 1;
    color: white;
}

.staff-name {
    font-size: 1.675rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.staff-name span {
    color: #f9f9f9;
    font-size: 1.075rem!important;
    margin-left:0.5rem;
}

.staff-comment {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-line;
}

.staff-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.staff-stat-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}

.staff-stat-badge i {
    margin-right: 0.5rem;
}

.staff-profile-link-wrapper {
    flex-shrink: 0;
}

.staff-profile-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: #ff9a9e;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    transition: background-color 0.3s;
}

.staff-profile-link:hover {
    background-color: #f3f4f6;
}

.staff-profile-link i {
    margin-right: 0.5rem;
}

@media (max-width: 900px) {

    .blog-header-container,
    .staff-header-container {
        padding: 0.3rem;
    }

    .blog-header-flex {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .staff-header-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .staff-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.blog-detail-wrapper {
    max-width: 680px !important;
    margin: 0px auto 0 !important;
}

.blog-detail-header {
    padding: 1.5rem 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.blog-detail-author-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.blog-detail-author-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.blog-detail-author-link:hover {
    opacity: 0.8;
}

.blog-detail-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9d5ff;
}

.blog-detail-author-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f3e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-detail-author-placeholder i {
    color: #9333ea;
}

.blog-detail-author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.8;
}

.blog-detail-author-name {
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.blog-detail-author-date {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.blog-detail-author-date i {
    margin-right: 0.25rem;
}

.blog-detail-title {
    font-size: 1.175rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-detail-meta i {
    margin-right: 0.25rem;
}

.blog-detail-main-image {
    margin: 20px auto;
    max-width: 480px;
    width: 100%;
}

.blog-detail-main-image img {
    width: 100%;
    display: block;
}

.blog-detail-sub-images {
    margin-left: -10px;
    margin-right: -10px;
    max-width: none;
    width: auto;
}

.blog-detail-body {
    padding: 1rem 0.4rem;
}

.blog-detail-content {
    color: #333;
    font-size: 1rem;
    line-height: 1.75;
}

.blog-detail-sub-images {
    padding: 2rem 2rem;
}

.blog-detail-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 900px) {
    .blog-detail-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-detail-sub-image {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.blog-detail-related {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 0 0.25rem;
}

.blog-detail-related-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.blog-detail-related-title i {
    color: #9333ea;
    margin-right: 0.5rem;
}

.blog-detail-related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-detail-related-card {
    display: flex;
    gap: 0;
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.3s;
    padding: 0;
    margin-bottom: 0.75rem;
}

.blog-detail-related-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-detail-related-image-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 0;
    background-color: #e5e7eb;
}

.blog-detail-related-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.blog-detail-related-card:hover .blog-detail-related-image {
    transform: scale(1.05);
}

.blog-detail-related-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 90px;
    background: linear-gradient(to bottom right, #f3e8ff, #fce7f3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-detail-related-image-placeholder i {
    color: #d1d5db;
    font-size: 1.5rem;
}

.blog-detail-related-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
    padding: 0.75rem 1rem;
}

.blog-detail-related-card-title {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.blog-detail-related-date {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.blog-detail-related-date i {
    margin-right: 0.25rem;
}

@media (max-width: 640px) {
    .blog-detail-related-image-wrapper {
        width: 100px;
    }

    .blog-detail-related-body {
        padding: 0.5rem 0.75rem;
    }

    .blog-detail-related-card-title {
        font-size: 0.875rem;
    }
}

.blog-detail-back-section {
    margin-top: 2rem;
    text-align: center;
}

.blog-detail-button-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 900px) {
    .blog-detail-button-group {
        flex-direction: row;
    }
}

.blog-detail-btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(to right, #ec4899, #9333ea);
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-weight: 500;
}

.blog-detail-btn-primary:hover {
    background: linear-gradient(to right, #db2777, #7e22ce);
}

.blog-detail-btn-primary i {
    margin-right: 0.5rem;
}

.blog-detail-btn-primary2 {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-image: linear-gradient(90deg, rgba(247, 93, 139, 1), rgba(254, 220, 64, 1));
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-weight: 500;
}

.blog-detail-btn-primary2:hover {
    background: linear-gradient(to right, #db2777, #7e22ce);
}

.blog-detail-btn-primary2 i {
    margin-right: 0.5rem;
}

.blog-detail-btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #4b5563;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    font-weight: 500;
}

.blog-detail-btn-secondary:hover {
    background-color: #374151;
}

.blog-detail-btn-secondary i {
    margin-right: 0.5rem;
}

.prof_in .cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.prof_in .cast-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.prof_in .cast-item {
    position: relative;
    box-shadow: none;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.prof_in .cast-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.prof_in .blog-list-item {
    display: block;
    text-decoration: none;
}

.prof_in .blog-list-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #e5e7eb;
}

.prof_in .blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.prof_in .cast-item:hover .blog-list-image img {
    transform: scale(1.05);
}

.prof_in .blog-list-no-image {
    background: linear-gradient(to bottom right, #f3e8ff, #fce7f3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prof_in .blog-list-no-image i {
    color: #d1d5db;
    font-size: 2rem;
}

.prof_in .single-photo-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .7);
}

.prof_in .title-blog {
    font-weight: 600;
    color: #f9f9f9;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0.5rem 0.5rem 0.4rem;
}

.prof_in .blog-list-meta {
    font-size: 0.75rem;
    color: #f9f9f9;
    display: flex;
    gap: 0.25rem;
    padding: 0 0.5rem 0.75rem;
}

.prof_in .blog-list-meta span {
    display: flex;
    align-items: center;
}

.prof_in .blog-list-meta i {
    margin-right: 0.25rem;
    width: 14px;
}

@media (max-width: 900px) {
    .prof_in .cast-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.1rem;
    }

    .prof_in .cast-grid-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .prof_in .title-blog {
        font-size: 0.775rem;
        margin: 0.3rem 0.5rem 0.35rem;
    }

    .prof_in .blog-list-meta {
        padding: 0 0.5rem 0.75rem;
        font-size: 0.7rem;
    }
}

/* ----------------------------------------------------------------------
   見出し
  ---------------------------------------------------------------------- */
.title-main {
    text-align: center;
    padding: 0px 10px 0;
    margin-top: 25px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.title-main span {
    font-size: 40px;
    font-weight: 700;
    color: #111;
    display: inline-block;
}

.title-main span.resize {
    font-size: 30px !important;
    font-weight: 700;
    color: #111;
    display: inline-block;
}

.title-main span:first-letter {
    color: #ff6e90;
    /*D25887*/
}

.title-main+.caption {
    text-align: center;
    font-size: 14px;
    color: #111;
    line-height: 1.8;
    margin-top: 0px;
    margin-bottom: 35px;
}

.title-price {
    text-align: center;
    padding: 0px 0 0;
    margin-top: 35px;
    margin-bottom: 35px;
    letter-spacing: 2px;
}

.title-price span {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
}

.title-price span:first-letter {
    color: #af8c5f;
    /*D25887*/
}

.title-price+.caption {
    text-align: center;
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
    margin-top: 0px;
    margin-bottom: 35px;
    margin-right: 30px;
    margin-left: 30px;
}

.title-main3 {
    text-align: center;
    padding: 0px 0 0;
    margin-top: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.title-main3 span {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
}

.title-main3 span:first-letter {
    color: #ff6e90;
    /*D25887*/
}

.title-main3+.caption {
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin-top: -10px;
    margin-bottom: 30px;
}

.title-prof {
    text-align: center;
    padding: 0px 0 0;
    margin-top: 0px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.title-prof span {
    font-size: 34px;
    font-weight: bold;
    color: #222222;
    display: inline-block;
}

.title-prof span:first-letter {
    color: #ff6e90;
}

.title-prof+.caption {
    text-align: center;
    font-size: 16px;
    color: #222222;
    margin-bottom: 20px;
}

.white {
    color: white !important;
}

.black {
    color: #111 !important;
}

.prof_title {
    position: relative;
    margin-top: 40px;
    margin-bottom: 50px;
    text-align: center;
    font-size: 30px;
    color: #222;
}

.prof_title:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    display: inline-block;
    width: 70px;
    height: 5px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: radial-gradient(circle, #ff819f, #ff6e90 80%);
    border-radius: 2px;
}

.prof_review_title {
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 25px;
    color: #222;
}

.prof_review_title:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    display: inline-block;
    width: 70px;
    height: 5px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: radial-gradient(circle, #ff819f, #ff6e90 80%);
    border-radius: 2px;
}

.rank_ribbon_wrap {
    margin: 30px auto 30px !important;
    text-align: center;
}

.rank_ribbon {
    display: inline-block;
    position: relative;
    height: 60px;
    max-width: 980px;
    width: 100%;
    line-height: 60px;
    text-align: center;
    padding: 7px 0;
    font-size: 18px;
    background: #acd879;
    color: #FFF;
    margin-bottom: 0px;
    box-sizing: border-box;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
    clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%, 8% 50%);
}

.rank_ribbon h3 {
    margin: 0;
    padding: 0 30px;
    border-top: dashed 2px rgba(255, 255, 255, 0.5);
    border-bottom: dashed 2px rgba(255, 255, 255, 0.5);
    line-height: 42px;
}

.rank_ribbon:before,
.rank_ribbon:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
}

.top_margin {
    margin-top: 30px;
}

/*===================================================================
固定ページ
===================================================================*/
.page_wrap {
    background: #faf7f1;
    padding: 14px 10px 30px;
    margin: 80px auto 0 !important;
    max-width: 980px;
}

.blog_wrap {
    background: #faf7f1;
    padding: 14px 10px 30px;
    margin: 80px auto 0 !important;
    max-width: 980px;
}

.play_wrap {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 14px 14px 30px;
    margin: 60px auto 0 !important;
    max-width: 980px;
}

.prof_wrap {
    margin: 60px auto 0;
}

.prof_in {
    margin: 0 0px 50px;
}

.newface_mark {
    font-size: 13px;
    color: #FF94AE;
    margin-right: 5px;
}

.cast_wrap {
    max-width: 980px;
    background: rgba(250, 247, 241, .6);
    padding: 14px 30px;
    margin: 80px auto 0;
}

.price_box {
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 15px 0;
}

.play_box {
    max-width: 550px;
    margin: 0 auto;
    padding: 14px;
}

.rec_wrap {
    max-width: 650px;
    margin: 0 auto;
    padding: 20px 0;
    background: rgba(255, 255, 255, .6);
}

.img_wrap {
    padding: 5px 0px;
    margin: 0 -14px;
}

.img_wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.prof-age {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-top: -15px;
}

.prof-size {
    font-size: 14px;
    color: #333;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 0px;
}

/*===================================================================
スケジュール
===================================================================*/
.week_schedule {
    margin: 40px 0px 40px;
}

.week_schedule .sut {
    color: #00b3ff;
}

.week_schedule .san {
    color: #ff0000;
}

.week_schedule ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
}

.week_schedule ul li {
    flex: 1 1 calc(14.2857% - 0.5rem);
    min-width: 0;
    text-align: center;
    line-height: 1.4;
}

.week_schedule ul li a {
    display: block;
    background: #F8EFDE;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px !important;
    padding: 8px 5px;
    color: #978953;
}

.week_schedule ul li span {
    font-size: 12px;
}

.week_schedule ul li a:hover {
    display: block;
    background: #FE839F;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px !important;
    color: #fff;
}

.week_schedule ul li .active-date {
    color: #fff !important;
}

.week_schedule ul li .active-date a {
    background: #FE839F;
    pointer-events: none;
    color: #fff !important;
}

.active-date {
    background-image: radial-gradient(circle, #ff819f, #ff6e90 80%) !important;
}

.date {
    font-size: 18px;
    font-weight: bold;
}

.weekday {
    font-size: 12px;
    text-transform: uppercase;
}

.sat {
    color: #0044cc !important;
}

.sun {
    color: #ff0000 !important;
}

/*===================================================================
プロフ関連
===================================================================*/
.op_zone {
    margin: 30px 5px 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.op_zone_item {
    text-align: center;
    font-size: 14px !important;
    background: #f5f5f5;
    text-decoration: none;
    border-radius: 0.3em;
    font-size: 1.0em;
    padding: 1.34em 0.2em;
    color: #454545;
}

.op_zone_item a:hover {
    background: #eee !important;
    border: 1px solid #eee;
}

.op_zone_item.op_zone a {
    background-color: #f7f7f7;
    border: 1px solid #f7f7f7;
    pointer-events: none;
}

span.item {
    float: left !important;
    padding-left: 10px !important;
}

span.datak {
    float: right !important;
    font-weight: bold;
    padding-right: 10px !important;
}

@media (max-width: 768px) {
    .op_zone {
        grid-template-columns: 1fr;
    }
}

._qa_ {
    margin: 40px 0 0px;
}

._qa_wrap {
    display: flex;
    align-items: stretch;
    justify-content: start;
    margin-bottom: 5px;
}

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

._qa_wrap ._left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    width: 42.25352%;
    padding: 12px 8px;
    border-bottom: solid 3px #eee;
    background-color: #17bbc9;
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: 0.05rem;
}

._qa_wrap ._right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 12px 8px 12px 15px;
    border-bottom: solid 3px #eee;
    font-size: 13px;
    color: #333;
    line-height: 1.35;
}

._row ._right span.cap {
    margin-left: 25px;
}

.heading-29 {
    position: relative;
    margin-top: 30px -5px;
    text-align: center;
    font-size: 25px;
    padding: 5px;
    background: #111;
    color: #fff;
    letter-spacing: 2px;
    clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
}

.cyu-title {
    position: relative;
    margin: 30px -5px 20px;
    text-align: center;
    font-size: 20px;
    padding: 5px;
    background: #111;
    color: #fff;
    letter-spacing: 2px;
    clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
}

.cyu {
    font-size: 14px;
    line-height: 1.7;
    margin: 20px 0 30px;
}

.bottom-h2 {
    margin-bottom: 55px;
}

.up_bottom-h2 {
    margin-top: 65px;
    margin-bottom: 55px;
}

.news_bottom-h2 {
    margin-top: 65px;
    margin-bottom: 5px;
}

.comment {
    font-size: 15px;
    line-height: 1.7;
    margin: 40px 0px 50px;
    color: #222;
    background: #f5f5f5;
    padding: 14px;
}

.cast_prof_center {
    max-width: 780px;
    margin: 30px auto;
}

.girls-schedule_wrap {
    margin: 70px 0 40px;
    color: #222;
}

.girls-schedule_wrap__item {
    display: flex;
    align-items: stretch;
    justify-content: start;
    border: solid 1px #9e8159;
    border-bottom: none;
    font-size: 1.3rem;
    letter-spacing: 0.05rem;
    transition: 0.3s;
}

.girls-schedule_wrap__item:first-of-type {
    margin-top: -20px;
}

.girls-schedule_wrap__item:last-child {
    border-bottom: solid 1px #9e8159;
}

.girls-schedule_wrap__item ._date {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    padding: 18px 10px;
    font-size: 14px;
    background-color: #f3f2ea;
}

.girls-schedule_wrap__item ._time {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 18px 10px;
    width: 70%;
    font-size: 14px;
    background-color: #fff;
}

.bt_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0px 60px;
}

.btn-girls {
    display: inline-block;
    padding: 15px 10px 10px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    background-image: radial-gradient(circle, #ff819f, #ff6e90 80%);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 0 #ff4772;
}

.btn-girls:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-girls-x {
    display: inline-block;
    padding: 15px 10px 10px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    background-image: radial-gradient(circle, #222, #222 80%);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 0 #000;
}

.btn-girls-x:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn-girls-xx {
    display: inline-block;
    padding: 15px 10px 10px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    background-image: radial-gradient(circle, #ddd, #ddd 80%);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 0 #ccc;
}

.btn-girls-xx:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* ============================================
   ページネーション
============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-link:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pagination-link.active {
    border-color: var(--custom-pink, #ec4899);
    background: var(--custom-pink, #ec4899);
    color: #fff;
    font-weight: 600;
    cursor: default;
}

.pagination-link.active:hover {
    transform: none;
    box-shadow: none;
}

.pagination-prev,
.pagination-next {
    gap: 6px;
    font-weight: 600;
    border-color: #d1d5db;
}

.pagination-prev:hover,
.pagination-next:hover {
    border-color: var(--custom-pink, #ec4899);
    color: var(--custom-pink, #ec4899);
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: #9ca3af;
    font-weight: 600;
    user-select: none;
}

@media (max-width: 640px) {
    .pagination {
        gap: 4px;
    }

    .pagination-numbers {
        gap: 4px;
    }

    .pagination-link {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 13px;
    }

    .pagination-prev i,
    .pagination-next i {
        font-size: 12px;
    }

    /* スマホでは「前へ」「次へ」のテキストを非表示 */
    .pagination-prev span,
    .pagination-next span {
        display: none;
    }
}

/*===================================================================
access
===================================================================*/
.access-section {
    margin: 40px 0;
}

.branch-card {
    background: linear-gradient(135deg, #ff9a9e 0%, #f093c5 100%);
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.branch-card a {
    color: #fff;
}

.branch-card.main-store {
    /*background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);*/
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.branch-header h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-header i {
    font-size: 24px;
}

.branch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.branch-info-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.info-item i {
    font-size: 20px;
    margin-top: 2px;
    min-width: 24px;
}

.info-item .label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-item .value {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.branch-map {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    height: 100%;
    min-height: 350px;
}

.branch-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    backdrop-filter: blur(10px);
}

.call-button:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.no-data {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-data i {
    font-size: 34px;
    margin-bottom: 20px;
    opacity: 0.5;
}

@media (max-width: 900px) {
    .branch-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .branch-card {
        padding: 20px;
    }

    .branch-header h2 {
        font-size: 18px;
    }

    .branch-map {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .info-item .value {
        font-size: 14px;
    }

    .call-button {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/*===================================================================
料金ページ
===================================================================*/
.couse_wrap {
    max-width: 680px;
    background: #181818;
    margin: 35px auto 0;
    padding: 25px 65px 45px;
}

.playback-img {
    background: #181818;
    margin: 0 -15px;
    padding: 0px;
}

p.can_p {
    font-size: 14px;
    line-height: 1.8;
    font-weight: normal;
    text-align: center;
    color: #ddd;
    padding: 20px 10px 15px;
    margin-bottom: 30px;
}

p.can_p a {
    color: #e91e63;
}

p.can_po {
    font-size: 14px;
    line-height: 1.8;
    font-weight: normal;
    color: #333;
    padding: 20px 15px 15px;
    margin-bottom: 30px;
    margin-top: 40px;
}

.price_table {
    border: solid 1px #666;
    padding: 20px;
    border-radius: 1px;
    font-size: 18px;
    color: #f5f5f5;
    margin: 25px 0;
    clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
}

.price_table2 {
    border: solid 1px #B7A37C;
    padding: 20px;
    border-radius: 1px;
    font-size: 18px;
    color: #f5f5f5;
    margin: 25px 0;
    clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
}

.price_table3 {
    border: solid 1px #FB6C8E;
    padding: 20px;
    border-radius: 1px;
    font-size: 18px;
    color: #f5f5f5;
    margin: 15px 0;
}

.right_txt {
    float: right;
}

.flowchart {
    margin: 15px 0px;
}

.step {
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px 20px;
    /* 上部に余裕を持たせる */
    margin: 30px 0px 20px;
    position: relative;
    line-height: 1.5;
    transition: transform 0.3s ease;
}

.step:first-of-type {
    margin: 60px 0px 10px;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #ff6f90;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step h2 {
    color: #333;
    margin: 20px 0;
    font-size: 18px;
    text-align: center;
}

.step p {
    margin: 5px 0 10px;
    font-size: 14px;
    line-height: 1.8 !important;
    text-align: center;
    color: #333;
}

.step .note {
    font-size: 13px;
    color: #333;
    line-height: 1.8 !important;
    font-style: italic;
    text-align: center;
}

.arrow {
    width: 2px;
    height: 30px;
    background-color: #d4af37;
    margin: 0 auto;
    position: relative;
}

.arrow::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #d4af37;
}

.connector {
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, #4CAF50, #E91E63);
    z-index: 1;
}

.notice-list {
    margin-top: 30px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(7px);
    padding: 14px;
}

.notice-list h3 {
    position: relative;
    margin: 30px 0px 30px;
    text-align: center;
    font-size: 20px;
    padding: 5px;
    background: #111;
    color: #fff;
    letter-spacing: 2px;
    clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
}

.notice-list ul {
    list-style: none;
    padding: 0;
}

.notice-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.notice-circle {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #17bbc9, #17bbc9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.notice-closing {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.closing-circle {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #E91E63, #F06292);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

.notice-closing p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price_box h3 {
    position: relative;
    margin: 30px 0px 30px;
    text-align: center;
    font-size: 20px;
    padding: 5px;
    background: #111;
    color: #fff;
    letter-spacing: 2px;
    clip-path: polygon(7% 0%, 100% 0%, 93% 100%, 0% 100%);
}

.box_sche {
    position: relative;
    padding: 0.7em 0.9em;
    margin: 2em 0;
    background: #fedfe6;
    color: #454545;
    font-weight: 400;
}

/*===================================================================
レビュー
===================================================================*/
.review-container {
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 5px;
}

.review-container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.review-action {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.5;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.profile-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.review-header-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.review-item:first-of-type {
    margin-top: 40px;
    margin-bottom: 15px;
}

.review-item {
    background: #fff;
    border-radius: 5px 5px 0 0;
    padding: 15px;
    transition: transform 0.2s;
    margin-bottom: 15px;
}

.review-item2 {
    background: #f5f5f5;
    border-radius: 5px 5px 0 0;
    padding: 15px;
    transition: transform 0.2s;
    margin-bottom: 15px;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.review-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.review-date {
    font-size: 13px;
    color: #777;
    margin-top: 10px;
}

.reviews-date-name {
    font-size: 13px;
    color: #777;
    margin-top: 10px;
    margin-left:6px;
}

.rev_name {
    font-weight: bold;
    color: #FF6F90;
}

.rev_name a {
    font-weight: bold;
    color: #FF6F90;
}

.review-title {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.review-body {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    white-space: pre-line;
    margin-top: 10px;
}

.review-form-container {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(7px);
    padding: 30px 20px 30px;
    border-radius: 5px;
    margin: 40px 0px 30px;
    text-align: left;
    width:100%;
    box-sizing: border-box;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px !important;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #6c63ff;
    box-shadow: 0 0 5px rgba(108, 99, 255, 0.3);
}

textarea {
    resize: vertical;
}

.submit-btn {
    padding: 12px;
    background-image: radial-gradient(circle, #fe9ecc, #fe78b8 80%);
    border-radius: 25px;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 5px 0 #fe51a4;
}

.submit-btn:hover {
    background-color: #5a52cc;
}

.reply {
    margin-top: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #fc638a;
}

.reply2 {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-left: 3px solid #fc638a;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reply-header .reply-name {
    font-size: 14px;
    color: #1E90FF;
    font-weight: bold;
}

.reply-header .date {
    font-size: 14px;
    color: #777;
    font-weight: normal;
}

.reply-content {
    line-height: 1.5;
    font-size: 14px;
    color: #555;
    white-space: pre-line;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* 現在のページ（リンクなし） */
.pagination span.btn-page-non {
    display: inline-block;
    padding: 8px 14px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    pointer-events: none;
}

.pagination a.btn-page {
    display: inline-block;
    padding: 8px 14px;
    color: #17bbc9;
    background-color: #17bbc9;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.pagination a.btn-page:hover {
    background-color: #64c4cc;
    color: #fff;
}

.review-count-info {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 30px;
    opacity: 0.9;
}

.star {
    color: #ccc;
    font-size: 1.2em;
}

.star.active {
    color: #FFD700;
}

.star-rating {
    display: inline-flex;
    flex-direction: row;
    /* 左→右へ並べる */
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input:checked~label {
    color: #ccc;
}

.star-rating label:hover,
.star-rating label:hover~label {
    color: #FFD700;
}

.review-rating {
    display: inline-flex;
    gap: 2px;
    justify-content: flex-start;
    align-items: center;
    direction: ltr;
    text-align: left;
}

.review-rating .star {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1;
}

.review-rating .star.active {
    color: #FFD700;
}

/*===================================================================
ランキング
===================================================================*/
.ranking_wrap {
    margin-top: 30px;
}

.image-container {
    position: relative;
    display: inline-block;
    overflow: visible;
}

.image-container img {
    display: block;
}

.image-container::before {
    content: attr(data-rank);
    position: absolute;
    top: 20px;
    left: 0px;
    width: 80px;
    height: 30px;
    background: #FFD700;
    color: white;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(-15deg);
    transform-origin: 0 0;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
    clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%, 8% 50%);
}

.image-container.rank-1::before {
    background: #FFD700;
}

.image-container.rank-1::after {
    border-left-color: #FFD700;
}

.image-container.rank-2::before {
    background: #C0C0C0;
}

.image-container.rank-2::after {
    border-left-color: #C0C0C0;
}

.image-container.rank-3::before {
    background: #CD7F32;
}

.image-container.rank-3::after {
    border-left-color: #CD7F32;
}

.image-container.rank-4::before {
    background: #32CD32;
}

.image-container.rank-4::after {
    border-left-color: #32CD32;
}

.image-container.rank-5::before {
    background: #1E90FF;
}

.image-container.rank-5::after {
    border-left-color: #1E90FF;
}

.image-container.rank-6::before {
    background: #fc5a96;
}

.image-container.rank-6::after {
    border-left-color: #fc5a96;
}

.image-container.rank-7::before {
    background: #fc5a96;
}

.image-container.rank-7::after {
    border-left-color: #fc5a96;
}

.image-container.rank-8::before {
    background: #fc5a96;
}

.image-container.rank-8::after {
    border-left-color: #fc5a96;
}

.image-container.rank-9::before {
    background: #fc5a96;
}

.image-container.rank-9::after {
    border-left-color: #fc5a96;
}

.image-container.rank-10::before {
    background: #fc5a96;
}

.image-container.rank-10::after {
    border-left-color: #fc5a96;
}

/* ----------------------------------------------------------------------
    パンくずリスト
  ---------------------------------------------------------------------- */
.breadcrumb {
    font-size: 14px;
    color: #333;
    margin: 35px auto 25px;
    max-width: 980px;
    padding: 10px 20px;
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.breadcrumb li a {
    color: #FF6D90;
    text-decoration: none;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 6px;
    color: #666;
}

.breadcrumb li span {
    color: #666;
    font-weight: 400;
}

/*===================================================================
  イベント
  ===================================================================*/
.event-container {
    max-width: 600px;
    margin: 0 auto;
    max-height: 720px;
    overflow: scroll;
}

.event-container2 {
    max-width: 600px;
    margin: 0 auto;
}

.event-title {
    text-align: center;
    color: #333;
    margin: 20px auto 20px;
    font-size: 18px;
    line-height: 1.5;
}

.event-date {
    color: #666 !important;
    font-size: 13px !important;
}

.event-container p {
    font-size: 15px;
    line-height: 1.6;
    margin: 20px 3px 0;
    color: #333;
    text-align: left;
}

.event-container2 p {
    font-size: 15px;
    line-height: 1.6;
    margin: 20px 3px 0;
    color: #333;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.event-header-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.event-item:first-of-type {
    margin-top: 0px;
    margin-bottom: 15px;
}

.event-item {
    background: #fff;
    backdrop-filter: blur(7px);
    border-radius: 5px;
    padding: 15px 15px 20px;
    transition: transform 0.2s;
    margin-bottom: 15px;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------------------------------------
other
---------------------------------------------------------------------- */
.links-section {
    max-width: 900px;
    margin: 30px auto;
    padding: 10px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-items: center;
}

.links-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: center;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-item a {
    display: inline-block;
    line-height: 1;
    max-width: 100%;
    font-size: 12px;
}

.link-item p {
    line-height: 1;
    font-size: 12px;
}

/* PC・タブレットではHTMLのwidthを尊重 */
.link-item img {
    max-width: 100%;
    height: auto;
}

.link_wrap {
    margin: 20px auto 20px;
    text-align: center;
}

.link_wrap p {
    margin: 35px auto 0;
    font-size: 13px;
    border: solid 1px #999;
    padding: 12px;
    border-radius: 30px;
    width: 120px;
}

.link_wrap a {
    text-decoration: none;
    color: #999;
}

.link_wrap img {
    width: auto;
    max-width: 200px;
    height: auto;
}

/* ----------------------------------------------------------------------
 フッター
---------------------------------------------------------------------- */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    color: white;
    backdrop-filter: blur(7px);
    z-index: 200;
}

.fixed-footer-mobile {
    display: flex;
    justify-content: space-around;
    padding: 6px 5px 5px;
}

.foot_sns {
    color: white;
    text-decoration: none;
    font-size: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    backdrop-filter: blur(7px);
    border-radius: 5%;
    margin-right: 5px;
    line-height: 1.5;
    transition: background-color 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.foot_sns .icon {
    margin-bottom: 4px;
}

.foot_web {
    background-image: radial-gradient(circle, #f4a15d, #f4a15d 80%);
}

.foot_line {
    background: linear-gradient(135deg, rgba(56, 183, 0, 1) 52%, rgba(124, 202, 0, 1) 100%);
}

.foot_sms {
    background-image: radial-gradient(circle, #ff6e90, #ff6e90 80%);
}

.foot_tel {
    background-image: radial-gradient(circle, #15b6ff, #15b6ff 80%);
}

.fixed-footer-mobile a:last-child {
    margin-right: 0px;
}

.fixed-footer-mobile a:hover {
    background-color: #555;
}

.fixed-footer-mobile .icon {
    font-size: 18px;
    margin-bottom: 0px;
}

.fixed-footer-mobile .text {
    font-size: 12px;
}

.fixed-footer-pc {
    display: none;
}

@media (min-width: 900px) {
    .fixed-footer-mobile {
        display: none !important;
    }

    .fixed-footer-pc {
        display: block;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        padding: 10px 0;
    }

    .pc-footer-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pc-footer-left {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .pc-footer-hours {
        color: #fff;
        font-size: 13px;
        margin: 0;
        opacity: 0.9;
    }

    .pc-footer-phone {
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        text-decoration: none;
        transition: opacity 0.3s;
    }

    .pc-footer-phone-branch {
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        transition: opacity 0.3s;
        cursor: pointer;
    }

    .pc-footer-phone:hover {
        opacity: 0.8;
    }

    .pc-footer-phone i {
        margin-right: 8px;
    }

    .pc-footer-right {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .pc-footer-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        color: white;
        font-size: 15px;
        font-weight: 600;
        transition: all 0.3s;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .pc-footer-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    .pc-footer-btn i {
        font-size: 18px;
    }

    .pc-footer-line {
        background: linear-gradient(135deg, #06C755 0%, #05b34b 100%);
    }

    .pc-footer-web {
        background: linear-gradient(135deg, #f4a15d 0%, #e88b3f 100%);
    }

    .pc-footer-recruit {
        background: linear-gradient(135deg, #ff6e90 0%, #ff4d75 100%);
    }
}

#footer_in .footer_contents {
    margin: 0 auto 65px;
    padding: 20px;
    position: relative;
    background: #F7EFDD;
}

#footer_in_index {
    margin: 0 auto 0px;
    padding: 20px;
    position: relative;
    background: #F7EFDD;
}

#footer_in_index a {
    color: #333 !important;
}

#footer_in_index p a {
    color: #333 !important;
}

.footer_contents p {
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
}

.footer_logo {
    margin: 10px auto 20px !important;
    text-align: center;
}

.footer_logo img {
    width: 250px;
    margin: 0 auto;
    display: block;
}

.footer_button {
    position: relative;
    display: block;
    padding: 10px;
    margin: 10px auto 10px;
    backdrop-filter: blur(7px);
    border-radius: 5px;
    color: #333 !important;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer_button::before {
    content: "";
    position: absolute;
    display: block;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    right: 25px;
    width: 4px;
    height: 4px;
    margin-top: -3px;
    transition: .4s;
}

.footer_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#copyright {
    padding: 15px 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
    text-align: center;
}

#copyright a {
    color: #333;
}

/* ----------------------------------------------------------------------
 レスポンシブ
---------------------------------------------------------------------- */
.sp-only {
    display: block;
    margin-top: 55px;
}

@media (min-width: 768px) {
    .sp-only {
        display: none !important;
    }
}

@media only screen and (min-width: 900px) {
    .pc_none {
        display: none;
    }

    .mobile-menu {
        width: 450px;
        max-width: 450px;
    }
}

@media screen and (max-width: 900px) {
    .sidebar {
        flex: 1;
        padding: 0px;
        margin-top: 0px;
    }

    .wrap_bg {
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .base_wrap {
        order: 0;
        margin: 0 auto;
        padding: 0px 0px !important;
    }

    .header_navi_txt {
        display: none;
    }

    .header-tel .header-tel-2 {
        line-height: 3;
        font-size: 12px;
    }

    .header-tel {
        top: 13px;
        right: 133px;
    }

    .left-space img {
        max-width: 150px;
        height: 55px;
    }

    .container {
        margin-top: 0px;
        padding: 20px 0px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .page_wrap {
        margin: 60px auto 0 !important;
    }

    .blog_wrap {
        margin: 35px auto 0 !important;
    }

    .slide-wrapper {
        margin: 20px auto 0;
        padding: 0px;
        flex-direction: column;
    }

    .slide_side_wrap {
        margin: 20px 10px -10px;
    }

    .slide_side_wrap video {
        box-sizing: border-box;
        border-radius: 5px;
    }

    .dots-slideshow-container {
        margin: 25px 0px 15px;
    }

    .dots-slideshow-container img {
        border-radius: 0;
    }

    .dots-slideshow-dots {
        margin-bottom: -20px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        padding: 30px 0 0px;
    }

    .grid-container-2 {
        grid-template-columns: 1fr;
    }

    .navbar {
        justify-content: space-between;
        padding: 10px;
        background: #111;
        top: 0;
    }

    .logo {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .header_navi_txt {
        display: none;
    }

    .img_container {
        text-align: center;
        padding: 20px 10px;
        max-width: 980px;
        margin: 0 auto;
        overflow: hidden;
    }

    .age_wrap {
        max-width: 560px;
    }

    .banner_wrap img {
        width: auto;
        max-width: 320px !important;
        margin-bottom: 10px;
    }

    .thumb-thumbnail {
        width: 100px;
        height: 60px;
    }

    .event-title {
        font-size: 15px;
        line-height: 1.3;
    }

    .menu_bt {
        font-size: 13px;
    }

    .event-container {
        max-height: 500px;
    }

    .event_wrap {
        max-height: 500px;
        overflow: scroll;
    }

    .price_box {
        padding: 14px 12px 30px;
        margin: 0px 0px 0;
    }

    .couse_wrap {
        margin: 35px -12px 0;
        padding: 25px 15px 45px;
    }

    .play_box {
        padding: 14px 14px 30px;
        margin: -20px -10px 0;
    }

    .blog-detail-main-image {
        margin: 20px auto;
        max-width: 480px;
        width: auto;
    }

    .cast-grid_ranking {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 0px;
    }

    .cast-black-wrap {
        padding: 25px 10px 50px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .cast-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 -10px;
    }

    .cast-grid_newface {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 -10px;
    }

    .rank_ribbon_wrap {
        margin: 30px auto0px !important;
        text-align: center;
    }

    .rank_ribbon {
        clip-path: polygon(0 0, 100% 0, 94% 50%, 100% 100%, 0 100%, 6% 50%);
    }

    .week_schedule ul {
        justify-content: center;
    }

    .week_schedule ul li {
        flex: 0 0 calc(25% - 0.5rem);
        max-width: calc(25% - 0.5rem);
    }

    .card-container {
        background-color: white;
        border-radius: 5px;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
        background-color: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(7px);
        overflow: hidden;
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .card-image {
        flex: 0 0 120px;
        height: 120px;
    }

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .card-content {
        flex: 1;
        padding: 10px;
    }

    .card-title {
        font-size: 14px;
        line-height: 1.5;
        font-weight: bold;
        color: #454545;
        margin-bottom: 10px;
    }

    .card-date {
        font-size: 13px;
        color: #666;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .card-excerpt {
        display: none;
    }

    .branch-tabs {
        gap: 0.5rem;
    }

    .branch-tab {
        padding: 0.8rem 0.5em;
        font-size: 0.875rem;
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }

    .branch-line {
        gap: 8px;
    }

    .staff-branch-info {
        text-align: center;
    }

    .profile-branch-badge_shop,
    .profile-branch-badge_today,
    .profile-time-badge {
        font-size: 13px;
        padding: 8px 12px;
    }

    ._time .branch-badge {
        display: block;
        margin-left: 0.6rem;
        width: fit-content;
    }

    .day-block {
        width: 55px;
    }

    .date {
        font-size: 16px;
        font-weight: bold;
    }

    .weekday {
        font-size: 12px;
        text-transform: uppercase;
    }

    .cast_wrap {
        margin: 30px auto 0;
        padding: 14px 14px;
    }

    .girls-schedule_wrap {
        margin: 45px 0 10px;
        color: #222;
    }

    ._qa_ {
        margin: 25px 0 0px;
    }

    .comment {
        margin: 30px 0px 50px;
    }

    .rec_wrap {
        margin: 0 -25px 0;
    }

    .flowchart-container {
        padding: 20px 0;
    }

    .step {
        padding: 15px;
    }

    .circle {
        width: 50px;
        height: 50px;
        font-size: 18px;
        top: -35px;
    }

    .flowchart-container h2 {
        font-size: 16px;
    }

    .flowchart-container p {
        font-size: 13px;
    }

    .connector {
        height: 30px;
    }

    .accordion summary {
        font-size: 16px;
        padding: 15px;
    }

    .accordion-content {
        font-size: 14px;
        padding: 10px;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .links-grid2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .link-item {
        justify-content: center;
    }

    .link-item img {
        width: auto !important;
        height: auto !important;
        max-width: 100%;
    }

    #footer_in .footer_contents {
        margin: 0 auto 60px;
        padding: 20px;
        position: relative;
    }
}

@media screen and (max-width: 480px) {
    .blog-detail-main-image {
        margin: 20px -10px;
        max-width: 480px;
        width: auto;
    }
}