/* ===================================
   店舗ページ専用スタイル
   ホットペッパービューティー風デザイン
   =================================== */

/* ===================================
   店舗ヒーローセクション
   =================================== */
.store-hero {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.store-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.store-hero-images {
    position: relative;
}

.store-main-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.store-main-image img {
    width: 100%;
    height: auto;
}

.store-hero-info {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.store-badges {
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 8px;
}

.badge-new {
    background-color: #FF6B6B;
    color: white;
}

.badge-popular {
    background-color: var(--highlight-color);
    color: var(--primary-color);
}

.store-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.store-rating-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.store-rating-main .rating-stars {
    font-size: 20px;
    color: var(--highlight-color);
}

.store-rating-main .rating-score {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
}

.store-rating-main .rating-count {
    font-size: 14px;
    color: var(--text-light);
}

.store-catchphrase {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.store-quick-info {
    margin-bottom: 25px;
}

.quick-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.quick-info-item i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.store-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.store-cta-buttons .btn-primary,
.store-cta-buttons .btn-secondary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===================================
   店舗タブナビゲーション
   =================================== */
.store-tabs {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: var(--shadow);
}

.tabs-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.tabs-list::-webkit-scrollbar {
    height: 4px;
}

.tabs-list::-webkit-scrollbar-track {
    background: var(--bg-light);
}

.tabs-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}

.tab-item {
    flex-shrink: 0;
}

.tab-item a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 20px 25px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-item a i.fa-external-link-alt {
    font-size: 12px;
}

.tab-item.active a,
.tab-item a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* ===================================
   店舗コンテンツレイアウト
   =================================== */
.store-content-wrapper {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.store-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.store-main-content {
    min-width: 0;
}

/* ===================================
   コンテンツセクション
   =================================== */
.content-section {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.content-section .section-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section .section-title i {
    font-size: 22px;
}

/* ===================================
   クーポンリスト
   =================================== */
.coupons-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.coupon-card {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.coupon-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.coupon-badge {
    background-color: var(--highlight-color);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
}

.coupon-content {
    padding: 25px;
}

.coupon-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.coupon-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.coupon-price {
    margin-bottom: 15px;
}

.price-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-left: 5px;
}

.coupon-conditions {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.8;
}

.coupon-conditions p {
    margin-bottom: 5px;
}

.btn-coupon {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.btn-coupon:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* ===================================
   メニューセクション
   =================================== */
.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-category-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: var(--bg-light);
    border-left: 5px solid var(--primary-color);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.menu-item.featured {
    border: 2px solid var(--highlight-color);
    background: linear-gradient(135deg, #ffffff 0%, #fffef5 100%);
}

.menu-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 5px 15px;
    background-color: var(--highlight-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
}

.menu-item-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    flex: 1;
}

.menu-item-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    white-space: nowrap;
}

.price-unit {
    font-size: 14px;
    font-weight: 400;
}

.menu-item-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.menu-item-duration,
.menu-item-validity {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-item-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.feature-tag {
    padding: 5px 12px;
    background-color: var(--bg-light);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===================================
   クーポンセクション
   =================================== */
.coupon-content {
    display: grid;
    gap: 20px;
}

.coupon-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.coupon-card:hover {
    border-color: var(--highlight-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.coupon-card.featured {
    border-color: var(--highlight-color);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.coupon-header {
    background-color: var(--bg-light);
    padding: 20px;
    border-bottom: 2px dashed var(--border-color);
    position: relative;
}

.coupon-card.featured .coupon-header {
    background: linear-gradient(135deg, var(--highlight-color) 0%, #ffd700 100%);
}

.coupon-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.coupon-card.featured .coupon-badge {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.coupon-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
}

.coupon-body {
    padding: 25px 20px;
}

.coupon-description {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.coupon-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 15px;
}

.coupon-price .price-amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
}

.coupon-card.featured .coupon-price .price-amount {
    color: #d4af37;
}

.coupon-price .price-unit {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
}

.coupon-footer {
    padding: 15px 20px;
    background-color: var(--bg-light);
    border-top: 2px dashed var(--border-color);
}

.coupon-expiry {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.coupon-conditions {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   口コミセクション
   =================================== */
.reviews-content {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
}

.reviews-placeholder {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.reviews-placeholder p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.placeholder-info {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.placeholder-info ol {
    margin-left: 20px;
}

.placeholder-info li {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Google口コミリンク表示 */
.reviews-google-link {
    text-align: center;
}

.reviews-notice {
    margin-bottom: 30px;
}

.reviews-notice p {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}

.reviews-notice i {
    color: var(--highlight-color);
    margin-right: 8px;
}

.store-rating-display {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border: 2px solid var(--highlight-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.rating-stars-large {
    font-size: 32px;
    color: var(--highlight-color);
    margin-bottom: 15px;
}

.rating-stars-large i {
    margin: 0 2px;
}

.rating-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rating-score-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-count-large {
    font-size: 18px;
    color: var(--text-light);
}

.reviews-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-google-reviews,
.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-google-reviews {
    background-color: #4285f4;
    color: var(--secondary-color);
}

.btn-google-reviews:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-write-review {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-write-review:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.reviews-plugin-notice {
    background-color: var(--bg-light);
    border-left: 4px solid #2196F3;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
}

.notice-info {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.notice-info i {
    color: #2196F3;
    margin-right: 8px;
}

.notice-steps {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.notice-steps strong {
    color: var(--primary-color);
}

/* Widget Google Reviews のスタイル調整 */
.reviews-content .wp-google-reviews {
    margin: 0;
}

/* Trustindex.io のスタイル調整 */
/* 「Trustindexによる検証」バッジを非表示 */
.reviews-content .ti-widget-container .ti-footer,
.reviews-content .ti-footer,
.reviews-content .ti-widget .ti-footer,
.reviews-content [class*="ti-"] .ti-footer,
.reviews-content a[href*="trustindex.io"],
.reviews-content .ti-review-item .ti-footer,
.reviews-content .ti-widget-footer {
    display: none !important;
}

/* Trustindexのロゴ・リンクを非表示 */
.reviews-content .ti-logo,
.reviews-content .ti-powered-by,
.reviews-content .ti-widget-container > a[target="_blank"],
.reviews-content .ti-widget > a[target="_blank"] {
    display: none !important;
}

/* もっと読み込むボタンの下のフッターも非表示 */
.reviews-content .ti-load-more + .ti-footer,
.reviews-content .ti-load-more ~ .ti-footer {
    display: none !important;
}

/* Trustindexウィジェット全体のマージン調整 */
.reviews-content .ti-widget-container {
    margin: 0 !important;
}

.reviews-content .ti-widget {
    border: none !important;
    box-shadow: none !important;
}

.reviews-content .wp-google-review {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.reviews-content .wp-google-review:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* ===================================
   フォトギャラリー
   =================================== */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.photo-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.05);
}

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

/* ===================================
   口コミセクション
   =================================== */
.reviews-summary {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 30px;
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-color);
}

.rating-stars-large {
    font-size: 32px;
    color: var(--highlight-color);
}

.rating-total {
    font-size: 16px;
    color: var(--text-light);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.review-card {
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--bg-white);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary-color);
}

.review-rating {
    color: var(--highlight-color);
    font-size: 18px;
}

.review-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 10px;
}

.review-date {
    font-size: 12px;
    color: var(--text-light);
}

.review-menu {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
}

.menu-label {
    color: var(--text-light);
}

.menu-name {
    color: var(--primary-color);
    font-weight: 700;
}

/* ===================================
   スタッフセクション
   =================================== */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.staff-card {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.staff-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.staff-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
}

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

.staff-name {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.staff-role {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.staff-experience {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.staff-description {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-color);
}

/* ===================================
   アクセスセクション
   =================================== */
.access-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.access-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.store-info-table {
    width: 100%;
    border-collapse: collapse;
}

.store-info-table th,
.store-info-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.store-info-table th {
    width: 150px;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.store-info-table td {
    font-size: 14px;
    line-height: 1.8;
}

.phone-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
}

/* ===================================
   サイドバー
   =================================== */
.store-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
}

.sidebar-widget {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.reservation-note {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 15px;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 3px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 13px;
    color: var(--text-light);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.features-list i {
    color: var(--success-color);
}
