/* ========================================
   RESET CSS - ブラウザのデフォルトスタイルをリセット
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   DYNAMIC TYPE SUPPORT - iPhone自動テキストサイズ変更対応
   ======================================== */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 16px; /* ベースフォントサイズを16pxに固定 */
}

/* フォントサイズを固定してDynamic Typeの影響を制限 */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

p, span, div, a, button, input, textarea, select {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* ========================================
   CSS VARIABLES - カラーとスタイルの基本設定
   ======================================== */
:root {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #d4a574;
    --accent-dark: #c1965f;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 1000px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER STYLES - ヘッダーとナビゲーション
   ======================================== */
.header {
    background-color: #F1EDE9 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    width: 100%;
    transition: var(--transition);
}

.navbar {
    padding: 10px 0;
    position: relative;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-menu-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 15px;
}

.logo {
    text-align: center;
    margin-bottom: 15px;
}

.logo-link {
    text-decoration: none;
    color: var(--text-color);
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.logo p {
    font-size: 18px;
    color: var(--light-text);
    text-align: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-bottom: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.header-reservation-btn {
    position: absolute;
    right: 80px;
    top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3);
}

.header-reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4);
    background: linear-gradient(135deg, #00A000, #00B900);
}

.header-reservation-btn i {
    font-size: 16px;
}

/* ========================================
   HAMBURGER MENU - モバイル用ハンバーガーメニュー
   ======================================== */
.hamburger {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10001;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ハンバーガーメニューのアクティブ状態 */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* モバイルメニューの表示 */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--shadow);
        padding: 120px 20px 20px 20px;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 9999;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        display: flex;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    body .nav-menu li {
        display: block !important;
        margin: 0 !important;
        text-align: center !important;
    }
    
    body .nav-menu a {
        font-size: 18px !important;
        padding: 4px 20px !important;
        display: block !important;
    }
    
    .nav-menu-container {
        flex-direction: column;
        gap: 20px;
    }
    
    /* モバイル時はヘッダーの予約ボタンを非表示 */
    .header-reservation-btn {
        display: none;
    }
    
    /* モバイルメニュー内の予約ボタン */
    body .nav-menu .mobile-reservation-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin: 4px 0 !important;
        padding: 8px 20px !important;
        background: linear-gradient(135deg, #00B900, #00A000);
        color: var(--white);
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3);
    }
    
    .nav-menu .mobile-reservation-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4);
        background: linear-gradient(135deg, #00A000, #00B900);
    }
    
    .nav-menu .mobile-reservation-btn i {
        margin-right: 8px;
        font-size: 16px;
    }
    
    /* モバイル用SNSアイコン */
    body .nav-menu .mobile-sns-item {
        display: block !important;
        margin-top: 2px !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1000 !important;
    }
    
    body .nav-menu .mobile-sns-icons {
        display: flex !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 0 15px !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    body .nav-menu .mobile-sns-icon {
        width: 40px !important;
        height: 40px !important;
        background-color: var(--accent-color) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: var(--white) !important;
        text-decoration: none !important;
        font-size: 16px !important;
        transition: var(--transition) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        flex-shrink: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1002 !important;
    }
    
    .nav-menu .mobile-sns-icon:hover {
        background-color: var(--text-color) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    }
    

    
    /* デバッグ用：強制的に表示 */
    .mobile-sns-item,
    .mobile-sns-icons,
    .mobile-sns-icon {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-sns-icons {
        display: flex !important;
    }
    
    .mobile-sns-icon {
        display: flex !important;
    }
}

/* PCデザインではメニュー内の予約ボタンを非表示 */
@media (min-width: 769px) {
    .nav-menu .mobile-reservation-btn {
        display: none;
    }
    
    /* モバイル用SNSアイコン（PCでは非表示） */
    .mobile-sns-item {
        display: none;
    }
}

/* ========================================
   HERO SECTION - メインビジュアルとスライドショー
   ======================================== */

/* PC版専用クラス */
.hero-pc-only {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* PC版でスマホ版を非表示 */
.hero-mobile-only {
    display: none;
}

/* PC版メイン画像セクション */
.main-image-pc-only {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* PC版メイン画像 */
.main-image-pc-only img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    padding: 120px 0 0 0;
    box-sizing: border-box;
}

/* PC版スライドショーセクション */
.slideshow-pc-only {
    width: 100%;
    height: 30vh;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* PC版スライドショーコンテナ */
.slideshow-container-pc {
    width: 100%;
    height: 100%;
    position: relative;
}

/* ========================================
   SLIDESHOW - PCデザイン用スライドショー設定
   ======================================== */
/* PC版スライドショースクロール */
.slideshow-scroll-pc {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
    z-index: 1;
}

.slideshow-scroll-pc::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* PC版スライドショー画像コンテナ */
.slideshow-image-container-pc {
    display: flex;
    gap: 0;
    min-width: max-content;
    height: 100%;
    animation: scrollImagesPC 60s linear infinite;
}

/* PC版スライドショー画像 */
.slideshow-image-pc {
    width: auto;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes scrollImagesPC {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* コンテナ全体の幅でシームレスループ */
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--light-text);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 185, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 185, 0, 0.4);
    background: linear-gradient(135deg, #00A000, #00B900);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

/* ========================================
   CONCEPT SECTION - コンセプトとブランドメッセージ
   ======================================== */
.concept-section {
    background-color: #F1EDE9;
}

.concept-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.concept-main-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--light-text);
    margin-bottom: 20px;
}

.concept-main-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 30px;
}

.concept-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 40px auto;
}

.concept-text p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 20px;
}

.concept-text p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* ========================================
   MENU SECTION - 施術メニューとサービス紹介
   ======================================== */
.menu-section {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 50px;
    width: 100%;
}

.menu-item {
    display: flex;
    flex-direction: row; /* デフォルト設定 */
    background-color: var(--white);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 0;
    width: 100%;
    position: relative;
}

/* PCデザインでの左右交互レイアウト - orderプロパティで制御 */
@media (min-width: 769px) {
    /* 1番目（フェイシャル）: 画像左、テキスト右 */
    .menu-item-1 .menu-image {
        order: 1;
    }
    .menu-item-1 .menu-content {
        order: 2;
    }
    
    /* 2番目（痩身）: テキスト左、画像右 */
    .menu-item-2 .menu-image {
        order: 2;
    }
    .menu-item-2 .menu-content {
        order: 1;
    }
    
    /* 3番目（脱毛）: 画像左、テキスト右 */
    .menu-item-3 .menu-image {
        order: 1;
    }
    .menu-item-3 .menu-content {
        order: 2;
    }
    
    /* 4番目（ホワイトニング）: テキスト左、画像右 */
    .menu-item-4 .menu-image {
        order: 2;
    }
    .menu-item-4 .menu-content {
        order: 1;
    }

    /* 5番目（ヘッドスパ）: 画像左、テキスト右 */
    .menu-item-5 .menu-image {
        order: 1;
    }
    .menu-item-5 .menu-content {
        order: 2;
    }

    /* 6番目（フットケア）: テキスト左、画像右 */
    .menu-item-6 .menu-image {
        order: 2;
    }
    .menu-item-6 .menu-content {
        order: 1;
    }
}

/* モバイルではすべて縦並び - orderプロパティで制御 */
@media (max-width: 768px) {
    /* モバイルでは画像を上、テキストを下に配置 */
    .menu-item-1 .menu-image,
    .menu-item-2 .menu-image,
    .menu-item-3 .menu-image,
    .menu-item-4 .menu-image,
    .menu-item-5 .menu-image,
    .menu-item-6 .menu-image {
        order: 1;
    }
    .menu-item-1 .menu-content,
    .menu-item-2 .menu-content,
    .menu-item-3 .menu-content,
    .menu-item-4 .menu-content,
    .menu-item-5 .menu-content,
    .menu-item-6 .menu-content {
        order: 2;
    }
}

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

.menu-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    min-width: 0;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.menu-item:hover .menu-image img {
    transform: scale(1.05);
}

.menu-content {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
    position: relative;
}

/* 奇数番目（1番目、3番目）: 左側が薄いグレー */
.menu-item:nth-child(odd) .menu-content {
    background-color: #f8f9fa;
}

/* 偶数番目（2番目、4番目）: 右側が濃いグレー */
.menu-item:nth-child(even) .menu-content {
    background-color: #e9ecef;
}

.menu-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #495057;
    margin-bottom: 15px;
}

.menu-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 20px;
}

.menu-description {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 30px;
}

.menu-button {
    display: inline-block;
    color: #495057;
    text-decoration: underline;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: 10px;
}

.menu-button:hover {
    color: var(--accent-color);
    text-decoration: none;
    transform: translateY(-2px);
    font-weight: 600;
}

/* Products Section */
.products-section {
    background-color: #F1EDE9;
    padding: 80px 0;
}

.products-content {
    text-align: center;
    margin: 0 auto;
}

.products-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    text-align: left;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.product-description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--light-text);
    margin-bottom: 20px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.product-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--text-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
}

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

/* 商品ボタンコンテナ */
.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 注文ボタン */
.order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3);
}

.order-button:hover {
    background: linear-gradient(135deg, #00C900, #00B000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4);
}

.order-button i {
    font-size: 16px;
}

/* 商品詳細ページのレイアウト */
.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image-container {
    width: 100%;
}

.product-detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.product-header {
    margin-bottom: 30px;
}

.product-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-header h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.5;
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.product-price {
    margin-bottom: 30px;
}

.product-price .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.product-price .tax-included {
    font-size: 16px;
    color: var(--light-text);
    margin-left: 10px;
}

.product-cta {
    margin-bottom: 30px;
}

.product-notes {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.product-notes h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
}

.product-notes ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-notes li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
}

.product-notes li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 商品カテゴリセクション */
.products-categories {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}



/* ========================================
   PRODUCT CATEGORIES GRID - 商品カテゴリのグリッドレイアウト
   ======================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.category-card {
    background-color: var(--white) !important;
    padding: 30px 25px !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-shadow: var(--shadow) !important;
    transition: var(--transition) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 240px !important; /* 統一された高さ */
    justify-content: space-between !important; /* 要素を均等に配置 */
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* アイコン関連のスタイルは削除済み */

.category-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    margin-top: 0;
    flex-shrink: 0 !important; /* タイトルの高さを固定 */
}

.category-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 20px;
    flex: 1 !important; /* 説明文が残りのスペースを埋める */
    display: flex !important;
    align-items: flex-start !important; /* 上揃え */
    min-height: 60px !important; /* 最小高さを設定 */
}

.category-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0 !important; /* ボタンの高さを固定 */
    align-self: center !important; /* 中央揃え */
    margin-top: auto !important; /* ボタンを下部に配置 */
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.category-link:hover {
    background-color: #c1965f;
    border-color: #c1965f;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

/* ========================================
   PRODUCT CATEGORIES SECTION - 商品カテゴリ一覧
   ======================================== */
.products-category-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.products-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.category-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex !important;
    flex-direction: column !important;
    height: 500px !important; /* 統一された高さを強制 */
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 250px !important;
    overflow: hidden;
    flex-shrink: 0 !important; /* 画像の高さを固定 */
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-item:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 30px;
    flex: 1 !important; /* 残りのスペースを埋める */
    display: flex !important;
    flex-direction: column !important;
}

.category-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
    flex-shrink: 0 !important; /* タイトルの高さを固定 */
}

.category-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 25px;
    flex: 1 !important; /* 説明文が残りのスペースを埋める */
    display: flex !important;
    align-items: flex-start !important; /* 上揃え */
}

.category-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    flex-shrink: 0 !important; /* ボタンの高さを固定 */
    align-self: flex-start; /* 左揃え */
}

.category-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
}

/* Shop Info Section */
.shop-info-section {
    background-color: #FFFFFF;
}

.shop-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.shop-info-text {
    display: grid;
    gap: 30px;
}

.info-item h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.info-item i {
    color: var(--accent-color);
    font-size: 20px;
    width: 20px;
}

.info-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    padding-left: 35px;
}

.shop-image {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.shop-image:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background-color: #F1EDE9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-left {
    text-align: left;
}

.contact-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--light-text);
}

.contact-item i {
    color: var(--accent-color);
    font-size: 18px;
    width: 20px;
}

.line-contact {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.line-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00B900, #00A000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.line-logo i {
    font-size: 30px;
    color: var(--white);
}

.line-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.line-description {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 25px;
}

.line-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

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

.feature-item i {
    color: #00B900;
    font-size: 14px;
    width: 16px;
}

.line-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3);
}

.line-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4);
    background: linear-gradient(135deg, #00A000, #00B900);
}

.line-button i {
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: #E0C4BE;
    color: var(--text-color);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 8px;
    color: var(--text-color);
    line-height: 1.6;
}

.social-media h4 {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-item {
    position: relative;
    display: inline-block;
    text-align: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 1;
}

.social-icon i {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 18px;
    line-height: 1;
    width: auto;
    height: auto;
    display: block;
}

/* アイコンの中央配置を確実にするための追加スタイル */
.social-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.social-icon:hover {
    transform: translateY(-2px);
    background-color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.qr-code {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}

.social-item:hover .qr-code {
    opacity: 1 !important;
    visibility: visible !important;
}

/* デバッグ用：QRコードの表示を確実にする */
.qr-code {
    position: absolute !important;
    bottom: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: var(--white) !important;
    padding: 12px !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: var(--transition) !important;
    z-index: 1000 !important;
    margin-bottom: 15px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

/* InstagramのQRコードを確実に表示 */
.social-item:hover .qr-code,
.social-item .qr-code:hover {
    opacity: 1 !important;
    visibility: visible !important;
}

/* 特定のSNSアイコンのQRコード表示を保証 */
.social-item[href*="instagram"]:hover .qr-code,
.social-item[href*="tiktok"]:hover .qr-code,
.social-item[href*="lin.ee"]:hover .qr-code {
    opacity: 1 !important;
    visibility: visible !important;
}

.qr-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    display: block;
    border: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: var(--text-color);
    font-size: 14px;
}

/* ===== レスポンシブデザイン ===== */

/* スマホ専用クラス - 完全に独立したクラス */
@media (max-width: 768px) {
    /* PC版を非表示 */
    .hero-pc-only {
        display: none !important;
    }
    
    /* Conceptセクションの上マージンを狭める */
    .concept-section {
        margin-top: -160px !important;
        padding-top: 90px !important;
    }
    
    /* スマホ専用ヒーローセクション */
    .hero-mobile-only {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        gap: 0;
        line-height: 0;
        font-size: 0;
        background: #f8f9fa;
    }
    
    /* スマホ専用メイン画像セクション */
    .main-image-mobile-only {
        width: 100%;
        height: 48vh;
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
        box-sizing: border-box;
        display: block;
        line-height: 0;
        font-size: 0;
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
    }
    
    /* スマホ専用メイン画像 */
    .main-image-mobile-only {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
        line-height: 0;
    }
    
    /* スマホ専用スライドショーセクション */
    .slideshow-mobile-only {
        width: 100%;
        height: 25vh;
        margin: -10px 0 -20px 0;
        padding: 0;
        border: none;
        outline: none;
        box-sizing: border-box;
        display: block;
        line-height: 0;
        font-size: 0;
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
    }
    
    /* スマホ専用スライドショーコンテナ */
    .slideshow-container-mobile {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    /* スマホ専用スライドショースクロール */
    .slideshow-scroll-mobile {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: hidden;
        position: relative;
        z-index: 1;
    }
    
    /* スマホ専用スライドショー画像コンテナ */
    .slideshow-image-container-mobile {
        display: flex;
        gap: 0;
        min-width: max-content;
        height: 100%;
        animation: scrollImagesMobile 60s linear infinite;
    }
    
    /* スマホ専用スライドショー画像 */
    .slideshow-image-mobile {
        width: auto;
        height: 100%;
        object-fit: cover;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    /* Conceptセクションの上マージンを狭める */
    .concept-section {
        margin-top: -160px !important;
        padding-top: 90px !important;
    }
    
    /* 小さいスマホ専用クラス */
    .hero-mobile-only {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        gap: 0;
        line-height: 0;
        font-size: 0;
        background: #f8f9fa;
    }
    
    /* 小さいスマホ専用メイン画像セクション */
    .main-image-mobile-only {
        width: 100%;
        height: 43vh;
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
        box-sizing: border-box;
        display: block;
        line-height: 0;
        font-size: 0;
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
    }
    
    /* 小さいスマホ専用メイン画像 */
    .main-image-mobile-only {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
        line-height: 0;
    }
    
    /* 小さいスマホ専用スライドショーセクション */
    .slideshow-mobile-only {
        width: 100%;
        height: 20vh;
        margin: -10px 0 -20px 0;
        padding: 0;
        border: none;
        outline: none;
        box-sizing: border-box;
        display: block;
        line-height: 0;
        font-size: 0;
        position: relative;
        overflow: hidden;
        background: #f8f9fa;
    }
    
    /* 小さいスマホ専用スライドショー画像コンテナ */
    .slideshow-image-container-mobile {
        animation: scrollImagesSmall 45s linear infinite;
    }
}

/* タブレット・スマートフォン用スライドショー設定 */
@media (max-width: 768px) {
    @keyframes scrollImagesMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%); /* コンテナ全体の幅でシームレスループ */
        }
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .shop-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
        gap: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        position: relative;
    }
    
    .social-icon i {
        font-size: 16px;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: auto;
        height: auto;
        display: block;
    }
    
    .social-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .line-contact {
        padding: 30px 20px;
    }
}

/* 小さいスマートフォン用スライドショー設定 */
@media (max-width: 480px) {
    
    @keyframes scrollImagesSmall {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%); /* コンテナ全体の幅でシームレスループ */
        }
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .menu-content {
        padding: 20px;
    }
    
    .price-buttons {
        grid-template-columns: 1fr;
    }
}

/* 料金表ページ用スタイル */
.page-header {
    background: var(--white);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-header-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.page-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.price-detail-section {
    padding: 80px 0;
    background: var(--white);
    margin-top: 20px;
}

.price-detail-content {
    width: 1000px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-category-section {
    margin-bottom: 60px;
    width: 1000px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.price-category-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.price-category-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.price-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 1000px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-image {
    height: 400px;
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.price-image:hover img {
    transform: scale(1.05);
}

.price-table {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 1000px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-row:not(.new-design) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.price-row:not(.new-design):last-child {
    border-bottom: none;
}

.price-row:not(.new-design):hover {
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 -15px;
}

/* 新しいデザインではホバー効果を無効化 */
.price-row.new-design:hover {
    background: #fff !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin: 0 !important;
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    transition: none !important;
}

/* 新しいデザインの子要素のホバー効果も無効化 */
.price-row.new-design:hover * {
    transform: none !important;
    transition: none !important;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-right: 30px;
}

.service-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 300;
    flex: 1;
    text-align: right;
}


.service-notes {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.service-notes h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

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

.service-notes li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-weight: 300;
}

.service-notes li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* スマートフォンでのご注意事項の幅調整 */
@media (max-width: 768px) {
    .service-notes {
        width: auto;
        max-width: none;
        margin: 20px 15px;
        padding: 20px;
        left: 0;
        transform: none;
        margin-left: 15px !important;
        margin-right: 15px !important;
    }
    
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00B900, #00A000);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 185, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 185, 0, 0.4);
    background: linear-gradient(135deg, #00C900, #00B000);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-color);
    padding: 15px 25px;
    border: 2px solid var(--text-color);
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
}

.back-button:hover {
    background: var(--text-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* 料金表ページのレスポンシブ対応 */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
        margin-top: 60px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .price-detail-section {
        padding: 60px 0;
    }
    
    .price-detail-grid {
        gap: 20px;
        width: auto;
        max-width: none;
    }
    
    .price-image {
        height: 250px;
        max-width: 100%;
    }
    
    .price-table {
        padding: 20px;
        width: auto;
        max-width: none;
    }
    
    .price-category-section {
        width: auto;
        max-width: none;
    }
    
    .price-detail-content {
        width: auto;
        max-width: none;
    }
    
    .container {
        width: auto;
        max-width: none;
    }
    
    .price-row:not(.new-design) {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-item {
        margin-right: 0;
        width: 100%;
    }
    
    .service-description {
        text-align: left;
        font-size: 0.85rem;
    }
    
    .cta-section {
        gap: 15px;
    }
    
    .cta-button,
    .back-button {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   PRICE PAGE STYLES - 料金ページ専用スタイル
   ======================================== */

/* 新しい料金テーブルデザイン */
.price-row.new-design {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 12px;
    padding: 20px;
    border: none;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 16px;
    position: relative;
}

/* 新しいコンパクト施術時間ボタン */
.compact-time-badge {
    background: #555 !important;
    color: white !important;
    padding: 4px 6px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    display: inline-block !important;
    margin-bottom: 6px !important;
    width: fit-content !important;
    min-width: fit-content !important;
    max-width: fit-content !important;
    box-sizing: border-box !important;
    line-height: 1.2 !important;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: left;
}


.price-row.new-design .price-display {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 8px;
    width: 100%;
}

.price-row.new-design .price-large {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: right;
}

.service-description-new {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.treatment-flow {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin: 12px 0;
    border-left: 4px solid #e74c3c;
}

.flow-step {
    font-size: 14px;
    color: #333;
    margin: 4px 0;
    font-weight: 500;
}

.flow-arrow {
    font-size: 16px;
    color: #e74c3c;
    margin: 2px 0;
    text-align: center;
    font-weight: bold;
}

/* レスポンシブ対応 - 他のページと統一 */
@media (max-width: 768px) {
    /* 料金ページ専用のコンテナ調整 */
    .price-detail-section .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }
    
    .price-detail-grid {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .price-category-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .price-table {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .price-row.new-design {
        padding: 20px !important;
        gap: 12px;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .service-title {
        font-size: 18px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .compact-time-badge {
        padding: 4px 6px !important;
        font-size: 12px !important;
        border-radius: 12px !important;
        margin-bottom: 6px !important;
    }
    
    .price-row.new-design .price-display {
        margin-top: 8px;
        width: 100%;
    }
    
    .price-row.new-design .price-large {
        font-size: 24px;
        text-align: right;
    }
    
    .service-description-new {
        font-size: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .treatment-flow {
        padding: 15px;
        margin: 10px 0;
    }
    
    .flow-step {
        font-size: 14px;
    }
    
    .flow-arrow {
        font-size: 14px;
    }
    
    .price-row.new-design:hover {
        background: #fff !important;
        border-radius: 8px !important;
        padding: 20px !important;
        margin: 0 !important;
        transform: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
        transition: none !important;
    }
    
    .price-row.new-design:hover * {
        transform: none !important;
        transition: none !important;
    }
}

/* 小型スマートフォン対応 (480px以下) - 他のページと統一 */
@media (max-width: 480px) {
    .price-detail-section .container {
        padding: 0 10px !important;
    }
    
    .price-table {
        padding: 20px !important;
    }
    
    .price-row.new-design {
        padding: 20px !important;
        gap: 12px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description-new {
        font-size: 13px;
    }
    
    .price-row.new-design .price-large {
        font-size: 24px;
    }
    
    .compact-time-badge {
        padding: 4px 6px !important;
        font-size: 12px !important;
    }
}

/* 超小型スマートフォン対応 (360px以下) - 他のページと統一 */
@media (max-width: 360px) {
    .price-detail-section .container {
        padding: 0 10px !important;
    }
    
    .price-table {
        padding: 18px !important;
    }
    
    .price-row.new-design {
        padding: 18px !important;
        gap: 10px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-description-new {
        font-size: 12px;
    }
    
    .price-row.new-design .price-large {
        font-size: 22px;
    }
    
    .compact-time-badge {
        padding: 3px 5px !important;
        font-size: 11px !important;
    }
}

/* ========================================
   NEWS SECTION - 新着情報セクション
   ======================================== */
.news-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.news-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-list {
    background: transparent;
    margin-bottom: 40px;
}

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

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

.news-item-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 8px;
}

.news-item-date {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    min-width: 80px;
    flex-shrink: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

.news-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    flex-grow: 1;
    font-family: 'Noto Sans JP', sans-serif;
}

.news-item-title a {
    color: inherit;
    text-decoration: none;
}

.news-item-title a:hover {
    color: #d4a574;
}

.news-item-description {
    margin-left: 100px;
    color: #333;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
}

.news-more {
    text-align: center;
}

.news-more .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.news-more .btn:hover {
    background: var(--accent-color);
    color: white;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-content {
        padding: 0 15px;
    }
    
    .news-item {
        padding: 15px 0;
    }
    
    .news-item-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .news-item-date {
        min-width: auto;
        font-size: 14px;
    }
    
    .news-item-title {
        font-size: 16px;
    }
    
    .news-item-description {
        margin-left: 0;
        font-size: 14px;
    }
}

/* ========================================
   写真ギャラリースライダー
   ======================================== */
.photo-gallery-section {
    padding: 80px 0 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 400;
}

.photo-slider {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    background: #fff;
}

.photo-slider .slides {
    margin: 0;
    padding: 0;
}

.photo-slider .slides li {
    position: relative;
    list-style: none;
}

.photo-slider .slides img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* FlexSlider2 カスタマイズ */
.flexslider {
    margin: 0;
    border: none;
    background: #fff;
    position: relative;
    touch-action: pan-y;
}

.flexslider .slides {
    zoom: 1;
}

.flexslider .slides > li {
    display: none;
    -webkit-backface-visibility: hidden;
}

.flexslider .slides > li:first-child {
    display: block;
}

.flexslider .flex-direction-nav a {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.flexslider .flex-direction-nav a:hover {
    background: var(--accent-color);
    color: white;
    opacity: 1;
}

.flexslider .flex-direction-nav .flex-prev {
    left: 20px;
}

.flexslider .flex-direction-nav .flex-next {
    right: 20px;
}

/* サムネイルナビゲーション - FlexSlider2のデフォルトを強制上書き */
.flexslider .flex-control-thumbs,
.flexslider .flex-control-thumbs ul,
.photo-slider .flex-control-thumbs {
    margin: 20px 0 20px 0 !important;
    padding: 10px 50px 20px 50px !important;
    display: flex !important;
    gap: 0px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    position: relative !important;
    touch-action: pan-x !important;
    /* スクロールバーのスタイリング */
    scrollbar-width: thin !important;
    scrollbar-color: var(--accent-color) transparent !important;
}

/* FlexSlider2のデフォルトスタイルを完全上書き */
.flexslider .flex-control-thumbs li,
.flexslider .flex-control-thumbs li:first-child,
.flexslider .flex-control-thumbs li:last-child,
.photo-slider .flex-control-thumbs li,
.photo-slider .flex-control-thumbs li:first-child,
.photo-slider .flex-control-thumbs li:last-child {
    margin: 0 !important;
    padding: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: auto !important;
    float: none !important;
    display: block !important;
}

/* FlexSlider2のデフォルトCSSを完全に無効化 */
.flexslider .flex-control-thumbs li {
    margin: 0 !important;
    padding: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: auto !important;
    float: none !important;
    display: block !important;
    list-style: none !important;
    background: none !important;
    border: none !important;
}

.flexslider .flex-control-thumbs::-webkit-scrollbar {
    height: 6px;
}

.flexslider .flex-control-thumbs::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
}

.flexslider .flex-control-thumbs::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.flexslider .flex-control-thumbs::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

.flexslider .flex-control-thumbs li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important; /* 縮小を防ぐ */
    width: auto !important;
    float: none !important;
    display: block !important;
}

.flexslider .flex-control-thumbs img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
    display: block;
}

.flexslider .flex-control-thumbs img:hover {
    border-color: var(--accent-color);
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.2);
}

.flexslider .flex-control-thumbs img.flex-active {
    border-color: var(--accent-color);
    border-width: 3px;
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

/* サムネイル用の左右矢印ナビゲーション（専用クラス） */
.thumb-nav-custom {
    position: absolute !important;
    top: auto !important;
    bottom: 20px !important;
    transform: none !important;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.thumb-nav-custom:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3);
}

.thumb-nav-custom.thumb-nav-left {
    left: 20px;
}

.thumb-nav-custom.thumb-nav-right {
    right: 20px;
}

.thumb-nav i {
    font-size: 14px;
    color: var(--accent-color);
    transition: color 0.3s ease;
    font-weight: bold;
}

.thumb-nav:hover i {
    color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .photo-gallery-section {
        padding: 60px 0 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .photo-slider {
        margin: 0 15px;
    }
    
    .photo-slider .slides img {
        height: 300px;
    }
    
    .flexslider .flex-direction-nav a {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
    
    .flexslider .flex-direction-nav .flex-prev {
        left: 10px;
    }
    
    .flexslider .flex-direction-nav .flex-next {
        right: 10px;
    }
    
    .flexslider .flex-control-thumbs {
        gap: 1px !important;
        padding: 10px 40px 20px 40px;
        margin: 20px 0 20px 0;
    }
    
    .flexslider .flex-control-thumbs img {
        width: 80px;
        height: 60px;
    }
    
    /* モバイルでのスクロールバー調整 */
    .flexslider .flex-control-thumbs::-webkit-scrollbar {
        height: 4px;
    }
    
    /* モバイルでのサムネイル用矢印ナビゲーション調整 */
    .thumb-nav-custom {
        width: 30px;
        height: 30px;
        bottom: 15px !important;
    }
    
    .thumb-nav-custom i {
        font-size: 11px;
    }
    
    .thumb-nav-custom.thumb-nav-left {
        left: 10px;
    }
    
    .thumb-nav-custom.thumb-nav-right {
        right: 10px;
    }
}

/* ギャラリージャンプボタン */
.gallery-jump-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.gallery-jump-section h3 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.gallery-jump-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-jump-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.gallery-jump-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.gallery-jump-btn:hover::before {
    left: 100%;
}

.gallery-jump-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    background: var(--accent-color);
    color: white;
}

.gallery-jump-btn i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.gallery-jump-btn:hover i {
    color: white;
}

.gallery-jump-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.ladies-btn:hover {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    border-color: #ff6b9d;
}

.mens-btn:hover {
    background: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
    border-color: #4a90e2;
}

/* ギャラリージャンプボタン レスポンシブ対応 */
@media (max-width: 768px) {
    .gallery-jump-section {
        padding: 40px 0;
    }
    
    .gallery-jump-section h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .gallery-jump-buttons {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .gallery-jump-btn {
        padding: 25px 20px;
        min-width: auto;
        width: 100%;
    }
    
    .gallery-jump-btn i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .gallery-jump-btn span {
        font-size: 1rem;
    }
}

/* ========================================
   料金セクションヘッダー
   ======================================== */

/* price-bodycare.html専用の初回料金セクション */
body .price-section-header.bodycare-first-time {
    margin: 25px 0 !important;
    padding: 20px 30px !important;
    background: #B4A38F !important;
    border: 2px solid #B4A38F !important;
    border-radius: 25px !important;
    position: relative !important;
    text-align: center !important;
}

body .price-section-header.bodycare-first-time:first-child {
    margin-top: 0 !important;
}

body .price-section-header.bodycare-first-time .section-title {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    text-align: center !important;
}

body .price-section-header.bodycare-first-time .section-title::before {
    display: none !important;
}

/* 通常料金セクション */
.price-section-header.regular-price {
    margin: 25px 0;
    padding: 20px 30px;
    background: #B4A38F;
    border: 2px solid #B4A38F;
    border-radius: 25px;
    position: relative;
    text-align: center;
}

.price-section-header.regular-price:first-child {
    margin-top: 0;
}

.price-section-header.regular-price .section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.price-section-header.regular-price .section-title::before {
    display: none;
}

/* フェイシャル用セクションヘッダー */
.price-section-header.facial-section {
    margin: 25px 0;
    padding: 20px 30px;
    background: #FEEEFE;
    border: 2px solid #FEEEFE;
    border-radius: 25px;
    position: relative;
    text-align: center;
}

.price-section-header.facial-section:first-child {
    margin-top: 0;
}

.price-section-header.facial-section .section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.price-section-header.facial-section .section-title::before {
    display: none;
}

/* 脱毛用セクションヘッダー - 白枠・白塗りつぶし・黒テキスト */
.price-section-header.epilation-section {
    margin: 25px 0;
    padding: 20px 30px;
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 25px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-section-header.epilation-section:first-child {
    margin-top: 0;
}

.price-section-header.epilation-section .section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.price-section-header.epilation-section .section-title::before {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    body .price-section-header.bodycare-first-time {
        margin: 20px 0 !important;
        padding: 15px 20px !important;
        text-align: center !important;
    }
    
    body .price-section-header.bodycare-first-time .section-title {
        font-size: 1.4rem !important;
        justify-content: center !important;
    }
    
    .price-section-header.regular-price {
        margin: 20px 0;
        padding: 15px 20px;
        text-align: center;
    }
    
    .price-section-header.regular-price .section-title {
        font-size: 1.4rem;
        justify-content: center;
    }
    
    .price-section-header.facial-section {
        margin: 20px 0;
        padding: 15px 20px;
        text-align: center;
    }
    
    .price-section-header.facial-section .section-title {
        font-size: 1.4rem;
        justify-content: center;
    }
    
    .price-section-header.epilation-section {
        margin: 20px 0;
        padding: 15px 20px;
        text-align: center;
    }
    
    .price-section-header.epilation-section .section-title {
        font-size: 1.4rem;
        justify-content: center;
    }
} 