/* ==========================================================================
   PAGE-STYLES.CSS - Consolidated CSS from PHP files
   ========================================================================== */

/* ==========================================================================
   ANIMATION DEFINITIONS
   ========================================================================== */

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* ==========================================================================
   HEADER & NAVIGATION STYLES (from parts/header.php)
   ========================================================================== */

/* Loading Animations */
.loading-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: none; /* 最初は非表示 */
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.loading {
  border: 5px solid rgba(0, 181, 205, 0.3);
  border-radius: 50%;
  border-top: 5px solid #00b5cd;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/* Image Loading Spinner */
.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 3px solid rgba(0, 181, 205, 0.3);
  border-radius: 50%;
  border-top: 3px solid #00b5cd;
  animation: spin 1s linear infinite;
  display: none; /* 初期状態は非表示 */
}

/* Image Container */
.eyecatch {
  position: relative;
  min-height: 30px; /* 小さな画像のためのスペース確保 */
}

/* Header Container */
.header-container {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

/* Body Padding */
body {
    padding-top: 120px;
}

/* Header Top Section */
.header-top {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Section */
.logo-section h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: normal;
}

.logo-section h1 a {
    text-decoration: none;
    color: #333;
}

.logo-section img {
    height: 50px; /* 小さい値を優先 */
    width: auto;
}

/* Info Section */
.info-section {
    text-align: right;
}

.info-section img {
    display: block;
    margin-left: auto;
    max-width: 100%;
    height: auto;
}

/* Navigation Bar */
.navbar-custom {
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    min-height: 50px;
    width: 100%;
}

.navbar-custom .navbar-collapse {
    width: 100%;
}

.navbar-custom .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.navbar-custom .navbar-nav > li > a {
    color: #333;
    padding: 15px 12px;
    font-size: 13px;
    white-space: nowrap;
}

.navbar-custom .navbar-nav > li > a:hover {
    background-color: #e7e7e7;
    color: #333;
}

.navbar-custom .navbar-nav > li.active > a {
    background-color: #dc687e;
    color: #fff;
}

/* UI Components */
.login-btn {
    background: #dc687e;
    color: #fff !important;
    border-radius: 50px;
    padding: 6px 20px;
    border: none;
    display: inline-block;
    text-transform: none;
    letter-spacing: normal;
    font-size: 14px;
}

/* Dropdown Menu */
.dropdown-menu {
    background: #fff;
    border: 1px solid #ccc;
}

.dropdown-menu > li > a {
    color: #333;
    padding: 8px 15px;
}

.dropdown-menu > li > a:hover {
    background-color: #f5f5f5;
}

/* Badge */
.badge {
    background-color: #dc687e;
    color: #fff;
}

/* Mobile Fullscreen Menu */
.mobile-fullscreen-menu-unique {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78vh;
    background: #e8569b;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-top: 30px;
}

.mobile-fullscreen-menu-unique.show {
    transform: translateY(0);
}

.mobile-menu-grid-unique {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 10px; /* 余白を削減 */
    height: calc(100vh - 140px); /* 大きい値を優先 */
}

.mobile-menu-item-unique {
    background: #e8569b;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 12px;
    transition: background-color 0.3s ease;
    position: relative;
    min-height: 15px; /* 小さい値を優先 */
}

.mobile-menu-item-unique:hover,
.mobile-menu-item-unique:focus {
    background: #c2185b;
    color: white;
    text-decoration: none;
}

.mobile-menu-item-unique i {
    font-size: 15px; /* 小さい値を優先 */
    margin-bottom: 2px; /* 小さい値を優先 */
}

.mobile-menu-item-unique .menu-text {
    font-size: 11px; /* フォントサイズを小さくして改行を防ぐ */
    text-align: center;
    line-height: 1.0; /* 行間をさらに詰める */
    white-space: nowrap; /* 改行を防ぐ */
    overflow: hidden; /* はみ出た部分を隠す */
    text-overflow: ellipsis; /* はみ出た部分に省略記号 */
}

.mobile-menu-item-unique .menu-subtext {
    font-size: 9px; /* 小さい値を優先 */
    opacity: 0.8;
    margin-top: 1px; /* 小さい値を優先 */
}

.mobile-menu-item-unique.dropdown-item {
    position: relative;
}

.mobile-menu-item-unique .fa-caret-down {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
}

.mobile-menu-close-unique {
    position: absolute;
    top: 0px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
}

.mobile-login-section-unique {
    grid-column: span 2;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 8px; /* 小さい値を優先 */
    min-height: 42px; /* 小さい値を優先 */
    max-height: 56px; /* 小さい値を優先 */
}

.mobile-login-section-unique a {
    background: #fff;
    color: #e8569b;
    padding: 8px 20px; /* 小さい値を優先 */
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #e8569b;
    font-size: 13px; /* 小さい値を優先 */
}

.mobile-login-section-unique .user-info {
    color: #e8569b;
    font-weight: bold;
}

/* Sidebar Banners */
.sidebar-banners-mobile-unique {
    padding: 5px;
    margin: 0;
}

.sidebar-banners-mobile-unique .row {
    margin-left: -2px;
    margin-right: -2px;
    margin-bottom: 4px;
}

.sidebar-banners-mobile-unique .row:last-child {
    margin-bottom: 0;
}

.banner-col {
    padding-left: 2px;
    padding-right: 2px;
}

.sidebar-banner-item-unique {
    margin: 0;
    padding: 0;
}

.sidebar-banner-link-unique {
    display: block;
    text-decoration: none;
}

.sidebar-banner-image-unique {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

/* PC Banner Styles */
.sidebar-banners-desktop-unique {
    padding: 20px 15px;
}

.sidebar-banners-desktop-unique .sidebar-banner-item-unique {
    margin-bottom: 15px;
    padding: 0 5px;
}

.sidebar-banners-desktop-unique .sidebar-banner-item-unique:last-child {
    margin-bottom: 0;
}

.sidebar-banners-desktop-unique .sidebar-banner-link-unique {
    display: block;
    text-decoration: none;
}

.sidebar-banners-desktop-unique .sidebar-banner-image-unique {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.sidebar-banners-desktop-unique .sidebar-banner-link-unique:hover .sidebar-banner-image-unique {
    opacity: 0.8;
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    .info-section {
        display: none;
    }

    .navbar-custom {
        display: none;
    }

    .mobile-header-buttons {
        display: flex;
        gap: 5px;
    }

    .mobile-header-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 8px 12px;
        color: #333;
        text-decoration: none;
        font-size: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #fff;
    }

    .mobile-header-btn .fa {
        font-size: 16px;
        margin-bottom: 2px;
        color: #e8569b;
    }

    .mobile-header-btn .small {
        font-size: 10px;
    }

    .spnav_bottom {
        display: block;
        background: #e8569b;
        padding: 0;
    }

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

    .spnav_bottom li {
        flex: 1;
        text-align: center;
    }

    .spnav_bottom li:last-child {
        border-right: none;
    }

    .spnav_bottom a,
    .spnav_bottom .nav_menu {
        display: block;
        padding: 5px 2px;
        color: #fff;
        text-decoration: none;
        font-size: 8px;
        line-height: 1.2;
        background: none;
        border: none;
        width: 100%;
        cursor: pointer;
    }

    /* nav_cast専用スタイル - プロフィール検索の改行を防ぐ */
    .spnav_bottom .nav_cast {
        flex: 1.3; /* 他より少し広く */
    }

    .spnav_bottom .nav_cast a {
        padding: 5px 1px; /* 左右のパディングを削減 */
        font-size: 7px; /* フォントサイズを小さく */
    }

    .spnav_bottom .nav_cast div {
        white-space: nowrap; /* 改行を防ぐ */
        overflow: hidden; /* はみ出た部分を隠す */
        text-overflow: ellipsis; /* 省略記号 */
    }

    .spnav_bottom div {
        color: #fff;
    }

    .spnav_bottom small {
        display: block;
        font-size: 10px;
        margin-top: 2px;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN - DESKTOP
   ========================================================================== */

@media (min-width: 769px) {
    body {
        padding-top: 200px;
    }

    .header-top {
        padding: 15px 0;
    }

    .logo-section img {
        height: 118px;
    }

    .spnav_bottom {
        display: none;
    }

    .mobile-header-buttons {
        display: none;
    }

    .mobile-fullscreen-menu-unique {
        display: none;
    }
}

/* ==========================================================================
   PRICE PAGE STYLES (from price.php)
   ========================================================================== */

.price-sidebar-content-unique {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 20px;
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
}

.price-sidebar-attention-unique {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
}

.price-sidebar-attention-unique ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.price-sidebar-attention-unique li {
    margin-bottom: 8px;
    position: relative;
}

.price-text-danger-unique {
    color: #8b4f47;
    font-weight: 600;
    background: #f5ebe9;
    padding: 10px;
    border-radius: 6px;
    margin: 10px 0;
}

.price-side-contents {
    padding-left: 15px;
}

/* Price Page Responsive */
@media (max-width: 992px) {
    .price-side-contents {
        padding-left: 0;
        margin-top: 30px;
    }

    .price-sidebar-content-unique {
        padding: 15px;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .price-sidebar-attention-unique {
        padding: 12px;
        margin: 12px 0;
    }

    .price-sidebar-attention-unique ul {
        padding-left: 18px;
    }

    .price-text-danger-unique {
        padding: 8px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .price-sidebar-content-unique {
        padding: 12px;
        font-size: 12px;
    }

    .price-sidebar-attention-unique {
        padding: 10px;
    }

    .price-sidebar-attention-unique ul {
        padding-left: 16px;
    }

    .price-sidebar-attention-unique li {
        margin-bottom: 6px;
        font-size: 12px;
    }

    .price-text-danger-unique {
        padding: 6px;
        font-size: 12px;
    }

    .price .price-table {
        padding: 15px;
    }

    .price .price-table .text-left {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* ==========================================================================
   CAST SEARCH STYLES (from cast.php)
   ========================================================================== */

.search-container-unique {
    margin-bottom: 30px;
    text-align: center;
}

.search-toggle-btn-unique {
    background-color: white;
    color: #e8569b;
    border: 2px solid #e8569b;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: normal;
    transition: none;
    box-shadow: none;
    text-decoration: none;
    display: inline-block;
}

.search-toggle-btn-unique:hover {
    background-color: white;
    color: #e8569b;
    text-decoration: none;
    transform: none;
    box-shadow: none;
}

.search-toggle-btn-unique:focus {
    outline: none;
    color: #e8569b;
    background-color: white;
}

.search-toggle-btn-unique .fa {
    margin-right: 5px;
}

.search-accordion-unique {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 15px;
    overflow: hidden;
    box-shadow: none;
}

.search-form-unique {
    padding: 20px;
}

.search-section-unique {
    margin-bottom: 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 0;
    border-bottom: 1px solid #e0e0e0;
}

.search-section-unique:first-of-type {
    border-radius: 8px 8px 0 0;
}

.search-section-unique:last-of-type {
    margin-bottom: 0;
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.search-title-unique {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.search-title-unique .fa {
    margin-right: 8px;
    color: #e91e63;
    width: 18px;
    text-align: center;
}

.checkbox-grid-unique {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.checkbox-grid-wide-unique {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.checkbox-grid-extra-wide-unique {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 10px;
}

.search-checkbox-unique {
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px 8px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: none;
    font-size: 12px;
    user-select: none;
}

.search-checkbox-unique:hover {
    border-color: #e91e63;
    background: #fff;
}

.search-checkbox-unique input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark-unique {
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    margin-right: 8px;
    position: relative;
    transition: none;
}

.search-checkbox-unique input[type="checkbox"]:checked ~ .checkmark-unique {
    background: #e91e63;
    border-color: #e91e63;
}

.search-checkbox-unique input[type="checkbox"]:checked ~ .checkmark-unique:after {
    content: "✓";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.search-checkbox-unique input[type="checkbox"]:checked ~ .label-text-unique {
    color: #e91e63;
    font-weight: normal;
}

.select-wrapper-unique {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.search-select-unique {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 0;
    outline: none;
    cursor: pointer;
}

.search-buttons-unique {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.btn-search-execute-unique {
    background: #e91e63;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: normal;
    transition: none;
    box-shadow: none;
}

.btn-search-execute-unique:hover {
    background: #d81b60;
    color: white;
    transform: none;
    box-shadow: none;
}

.btn-clear-unique {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    transition: none;
}

.btn-clear-unique:hover {
    background: #5a6268;
    color: white;
    transform: none;
}

/* Cast Search Responsive */
@media (max-width: 768px) and (min-width: 576px) {
    .checkbox-grid-unique {
        grid-template-columns: repeat(3, 1fr);
    }

    .checkbox-grid-wide-unique {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkbox-grid-extra-wide-unique {
        grid-template-columns: 1fr;
    }

    .search-form-unique {
        padding: 15px;
    }

    .search-section-unique {
        padding: 10px;
    }
}

@media (max-width: 575px) {
    .checkbox-grid-unique {
        grid-template-columns: repeat(3, 1fr);
    }

    .checkbox-grid-wide-unique {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkbox-grid-extra-wide-unique {
        grid-template-columns: 1fr;
    }

    .search-form-unique {
        padding: 15px;
    }

    .search-section-unique {
        padding: 8px;
    }

    .search-buttons-unique {
        flex-direction: column;
        align-items: center;
    }

    .btn-search-execute-unique,
    .btn-clear-unique {
        width: 200px;
    }

    .search-checkbox-unique {
        padding: 5px 6px;
        font-size: 11px;
    }
}

/* ==========================================================================
   TOP PAGE STYLES (from top.php)
   ========================================================================== */

/* Pickup Section */
.pickup-section-unique {
    margin: 30px 0;
}

.pickup-title-unique {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.pickup-title-unique small {
    font-size: 14px;
    color: #e91e63;
    display: block;
    margin-bottom: 5px;
}

.pickup-slider-unique {
    overflow: hidden;
    position: relative;
}

.pickup-slider-wrapper-unique {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px 0;
    cursor: grab;
}

.pickup-slider-wrapper-unique::-webkit-scrollbar {
    height: 8px;
}

.pickup-slider-wrapper-unique::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.pickup-slider-wrapper-unique::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 4px;
}

.pickup-slide-unique {
    flex: 0 0 auto;
    width: 200px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pickup-slide-unique:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.pickup-link-unique {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pickup-image-unique {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.pickup-image-unique img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pickup-info-unique {
    padding: 15px;
}

.pickup-name-unique {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.pickup-name-unique .text-danger {
    background: #e91e63;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    margin-left: 5px;
}

.pickup-size-unique {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.pickup-member-only-unique {
    color: #e91e63;
    font-size: 10px;
}

/* Pickup Responsive */
@media (max-width: 768px) {
    .pickup-slide-unique {
        width: 150px;
    }

    .pickup-image-unique {
        height: 200px;
    }

    .pickup-info-unique {
        padding: 10px;
    }

    .pickup-name-unique {
        font-size: 12px;
    }

    .pickup-size-unique {
        font-size: 11px;
    }
}

/* ==========================================================================
   SCHEDULE PAGE STYLES (from schedule.php)
   ========================================================================== */

.schedule-tabs {
    margin-bottom: 20px;
}

.schedule-tabs .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: none;
    gap: 2px;
}

.schedule-tabs .nav-tabs li {
    flex: 1;
    text-align: center;
    margin-bottom: 0;
}

.schedule-tabs .nav-tabs li a {
    display: block;
    padding: 8px 4px;
    text-decoration: none;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0;
    transition: none;
}

.schedule-tabs .nav-tabs li a:hover {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-color: #ddd;
}

.schedule-tabs .nav-tabs li a:focus {
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-color: #ddd;
    outline: none;
}

.schedule-tabs .nav-tabs li.active a,
.schedule-tabs .nav-tabs li.active a:hover,
.schedule-tabs .nav-tabs li.active a:focus {
    background-color: #e8569b !important;
    color: white !important;
    border-color: #e8569b !important;
}

/* Schedule Responsive */
@media (max-width: 767px) {
    .schedule-tabs .nav-tabs {
        gap: 1px;
    }

    .schedule-tabs .nav-tabs li a {
        padding: 6px 2px;
        font-size: 11px;
        line-height: 1.2;
        min-height: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .schedule-tabs .nav-tabs li a .date-number {
        font-size: 9px;
        font-weight: normal;
        line-height: 1;
        display: block;
        margin-bottom: 2px;
    }

    .schedule-tabs .nav-tabs li a .date-weekday {
        font-size: 10px;
        font-weight: normal;
        line-height: 1;
        display: block;
    }

    .schedule-tabs .nav-tabs li.active a .date-number,
    .schedule-tabs .nav-tabs li.active a .date-weekday {
        color: white !important;
    }
}

@media (max-width: 320px) {
    .schedule-tabs .nav-tabs li a {
        padding: 4px 1px;
        min-height: 45px;
        font-size: 10px;
    }

    .schedule-tabs .nav-tabs li a .date-number {
        font-size: 8px;
    }

    .schedule-tabs .nav-tabs li a .date-weekday {
        font-size: 9px;
    }
}

/* ==========================================================================
   STAFF PAGE STYLES (from staff.php)
   ========================================================================== */

.staff_list_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.staff_list {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.staff_list:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.staff_list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.staff_list__img {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.staff_list__img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.staff_list__img:hover img {
    transform: scale(1.05);
    border-color: #667eea;
}

.staff_name {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.staff_name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.staff_faq {
    display: grid;
    gap: 15px;
}

.staff_info_item {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.staff_info_item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.staff_info_icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.staff_info_icon i {
    color: white;
    font-size: 12px;
}

.staff_info_content {
    flex: 1;
}

.staff_info_label {
    font-weight: bold;
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.staff_info_value {
    color: #333;
    line-height: 1.5;
    font-size: 12px;
}

.staff_highlight {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 15px;
}

.staff_highlight .staff_info_label {
    color: rgba(255,255,255,0.9);
}

.staff_highlight .staff_info_value {
    color: white;
    font-weight: 500;
}

.staff_highlight:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a42a0) !important;
    transform: translateX(0) !important;
}

.staff_faq dt {
    display: none;
}

.staff_faq dd {
    margin: 0;
    padding: 0;
}

.staff_recruit_section {
    text-align: center;
    margin-top: 50px;
    padding: 30px 20px;
}

.staff_recruit_btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.staff_recruit_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
    color: white;
    text-decoration: none;
}

.staff_recruit_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.staff_recruit_btn:hover::before {
    left: 100%;
}

.staff_recruit_btn i {
    margin-right: 10px;
    font-size: 16px;
}

/* Staff Responsive */
@media (max-width: 768px) {
    .staff_list_content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .staff_list {
        padding: 20px;
    }

    .staff_list__img img {
        width: 100px;
        height: 100px;
    }

    .staff_name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .staff_list {
        padding: 15px;
    }

    .staff_info_item {
        padding: 10px;
    }

    .staff_info_icon {
        width: 30px;
        height: 30px;
        margin-right: 12px;
    }

    .staff_info_icon i {
        font-size: 12px;
    }
}

/* ==========================================================================
   RESERVATION FORM STYLES (from mypage_reserve.php)
   ========================================================================== */

.disabled-option {
    background-color: #f0f0f0 !important;
    color: #999 !important;
}

/* ==========================================================================
   POINT TRANSACTION STYLES (from mypage_point.php)
   ========================================================================== */

.transaction-header {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.transaction-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
}

.month-header {
    padding: 12px 16px;
    font-size: 15px;
    color: #666;
    background: #f8f8f8;
}

.transaction-list {
    background: #fff;
}

.transaction-item {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.transaction-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transaction-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.transaction-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.transaction-amount {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.unit {
    font-size: 12px;
    margin-left: 2px;
}

.sign {
    font-size: 12px;
    margin-right: 1px;
}

.minus-point {
    color: #007AFF; /* 青色 */
}

.transaction-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.transaction-location {
    font-size: 13px;
}

.transaction-status {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    color: #fff;
    background: #36B37E;
    border-radius: 4px;
}

.status-badge-minus {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    color: #fff;
    background: #007AFF; /* 青色 */
    border-radius: 4px;
}

.payment-type {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #666;
    padding: 4px 8px;
    background: #f5f5f5;
    border-radius: 4px;
    gap: 4px;
}

.payment-type i {
    margin-right: 2px;
}

/* ==========================================================================
   FOOTER STYLES (from parts/footer2.php)
   ========================================================================== */

.tel-area-inner {
    display: flex;
    justify-content: center;
}

.female-recruit-btn {
    background-color: #FF69B4 !important; /* ピンク色 */
    color: white !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.female-recruit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
}

.pulse {
    animation: pulse 1.5s infinite;
    display: inline-block;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.eyecatch {
  position: relative;
  min-height: 30px;
}

/* Question Box (used in multiple pages) */
.question_Box {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.question_image {
    text-align: center;
    margin-bottom: 10px;
}

.question_image img {
    border-radius: 50%;
    max-width: 60px;
    height: auto;
}

.arrow_question {
    text-align: center;
}

.arrow_question p {
    margin: 0;
    color: #333;
    font-weight: bold;
}

/* Time Restriction Display */
.time-restriction {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
}

/* ==========================================================================
   END OF FILE
   ========================================================================== */