/* /*
Theme Name: Suzu Salon
Description: Custom theme for Salons de Suzu
Version: 1.0
Author: Your Name
*/

/* ===========================================
   RESET & BASE STYLES
=========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Yu Mincho', '游明朝', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f0e8;
}

/* 全体のスムーススクロール */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================================
   HEADER NAVIGATION STYLES
=========================================== */
.site-header {
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(245, 240, 232, 0.95);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 35px;
}

.home-icon {
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.4));
    transform: scale(1.1);
}

.home-icon svg {
    fill: white !important;
    filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.4));
}

.home-icon:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

/* デスクトップメニュー */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.desktop-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    letter-spacing: 1px;
}

.desktop-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.line-icon, .instagram-icon {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.line-icon:hover, .instagram-icon:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.instagram-icon svg {
    fill: white !important;
    filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.4));
}

/* ===========================================
   ハンバーガーメニュー
=========================================== */

/* ハンバーガーボタン */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    position: absolute;
}

/* ハンバーガーアニメーション（✖マーク） */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
}

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

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
}

/* 非アクティブ時の位置 */
.hamburger-btn:not(.active) .hamburger-line:nth-child(1) {
    transform: translateY(-8px);
}

.hamburger-btn:not(.active) .hamburger-line:nth-child(2) {
    transform: translateY(0);
}

.hamburger-btn:not(.active) .hamburger-line:nth-child(3) {
    transform: translateY(8px);
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.98) 0%, rgba(139, 111, 71, 0.95) 100%);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-menu > li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-menu > li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-menu > li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-menu > li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-menu > li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-menu > li:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-menu > li > a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    display: block;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 auto;
    max-width: 250px;
}

.mobile-nav-menu > li > a:hover,
.mobile-nav-menu > li > a.active {
    background-color: rgba(139, 111, 71, 0.2);
    color: #8b6f47;
    transform: scale(1.05);
}

/* スクロール時の色変更 */
.site-header.scrolled .hamburger-line {
    background-color: #333;
    box-shadow: none;
}

.site-header.scrolled .home-icon:hover,
.site-header.scrolled .desktop-menu a:hover,
.site-header.scrolled .line-icon:hover,
.site-header.scrolled .instagram-icon:hover {
    color: #8b6f47;
    transform: translateY(-2px);
}

.site-header.scrolled .home-icon:hover svg,
.site-header.scrolled .instagram-icon:hover svg {
    fill: #8b6f47 !important;
}

/* アクティブメニューのスタイル */
.desktop-menu a.active {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.desktop-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: white;
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.site-header.scrolled .desktop-menu a.active {
    color: #8b6f47 !important;
    text-shadow: none;
}

.site-header.scrolled .desktop-menu a.active::after {
    background-color: #8b6f47;
    box-shadow: none;
}


/* ===========================================
   サブメニュー（階層化メニュー）
=========================================== */

/* デスクトップ用サブメニュー */
.desktop-menu .menu-item-has-children {
    position: relative;
}

/* 親メニューに下向き矢印を追加 */
.desktop-menu .menu-item-has-children > a::after {
    content: ' ▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.desktop-menu .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* サブメニューのスタイル */
.desktop-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 15px 0;
    margin: 10px 0 0 0;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

/* ホバー時にサブメニューを表示 */
.desktop-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-menu .sub-menu li {
    margin: 0;
}

.desktop-menu .sub-menu a {
    display: block;
    padding: 12px 25px;
    color: #333 !important;
    text-shadow: none !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.desktop-menu .sub-menu a:hover {
    background-color: rgba(139, 111, 71, 0.1);
    color: #8b6f47 !important;
    padding-left: 30px;
}

/* スクロール時のサブメニュー */
.site-header.scrolled .sub-menu {
    background-color: rgba(255, 255, 255, 0.98);
}

/* スクロール時の親メニュー矢印の色 */
.site-header.scrolled .menu-item-has-children > a::after {
    color: #333;
}

/* ===========================================
   モバイル用サブメニュー
=========================================== */

/* モバイルメニューの親項目 */
.mobile-nav-menu .menu-item-has-children {
    position: relative;
}

/* 親メニューに下向き矢印を追加 */
.mobile-nav-menu .menu-item-has-children > a::after {
    content: ' ▼';
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
    opacity: 0.6;
}

.mobile-nav-menu .menu-item-has-children.active > a::after {
    transform: rotate(180deg);
}

/* モバイル用サブメニュー - 背景なし */
.mobile-nav-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.mobile-nav-menu .menu-item-has-children.active > .sub-menu {
    max-height: 500px;
    opacity: 1;
    padding: 20px 0 5px 0;
}

.mobile-nav-menu .sub-menu li {
    margin: 0 0 12px 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s ease;
}

.mobile-nav-menu .menu-item-has-children.active > .sub-menu li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-menu .sub-menu li:last-child {
    margin-bottom: 0;
}

/* サブメニューのアニメーション遅延 */
.mobile-nav-menu .menu-item-has-children.active > .sub-menu li:nth-child(1) { 
    transition-delay: 0.05s; 
}
.mobile-nav-menu .menu-item-has-children.active > .sub-menu li:nth-child(2) { 
    transition-delay: 0.1s; 
}
.mobile-nav-menu .menu-item-has-children.active > .sub-menu li:nth-child(3) { 
    transition-delay: 0.15s; 
}
.mobile-nav-menu .menu-item-has-children.active > .sub-menu li:nth-child(4) { 
    transition-delay: 0.2s; 
}

.mobile-nav-menu .sub-menu a {
    font-size: 17px;
    padding: 12px 20px;
    max-width: 250px;
    width: 250px;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.mobile-nav-menu .sub-menu a:hover,
.mobile-nav-menu .sub-menu a.active {
    background-color: rgba(139, 111, 71, 0.2);
    transform: scale(1.02);
}



/* ===========================================
   HERO SECTION STYLES
=========================================== */
.hero-section {
    height: 100vh !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8ddd4 100%) !important;
}

.hero-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
}

.hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* PC用画像とモバイル用画像の切り替え */
.hero-image-mobile {
    display: none !important;
}

.hero-image-desktop {
    display: block !important;
    object-position: center center !important;
}

.hero-placeholder {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8ddd4 100%) !important;
}

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(139, 111, 71, 0.3) !important;
    z-index: 1 !important;
}

.hero-content {
    position: relative !important;
    text-align: center !important;
    max-width: 700px !important;
    padding: 0 20px !important;
    margin-top: -50px !important;
    z-index: 9999 !important;
}

.hero-title {
    font-size: 5rem !important;
    font-weight: 300 !important;
    letter-spacing: 5px !important;
    margin-bottom: 30px !important;
    font-family: 'Times New Roman', serif !important;
    line-height: 1.1 !important;
}

.hero-subtitle {
    font-size: 1.4rem !important;
    font-weight: 300 !important;
    letter-spacing: 2px !important;
    margin-bottom: 50px !important;
    opacity: 0.95 !important;
    line-height: 1.6 !important;
    font-family: 'Times New Roman', serif !important;
}

.hero-btn {
    display: inline-block !important;
    padding: 20px 50px !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    letter-spacing: 4px !important;
    font-weight: 300 !important;
    transition: all 0.4s ease !important;
    background-color: rgba(255,255,255,0.1) !important;
}

.hero-btn:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: #8b6f47 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}


/* Hero Section Responsive */
@media (max-width: 768px) {
    /* モバイル用画像に切り替え */
    .hero-image-mobile {
        display: block !important;
        object-position: center center !important;
    }
    
    .hero-image-desktop {
        display: none !important;
    }
    
    .hero-title {
        font-size: 3.2rem !important;
        letter-spacing: 2px !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        letter-spacing: 1px !important;
    }
    
    .hero-btn {
        padding: 18px 40px !important;
        font-size: 1.1rem !important;
        letter-spacing: 3px !important;
    }
}

/* より小さい画面用 */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem !important;
        letter-spacing: 1px !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-btn {
        padding: 15px 35px !important;
        font-size: 1rem !important;
        letter-spacing: 2px !important;
    }
}

/* 横向きモバイル用 */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-image-mobile {
        object-position: center 30% !important;
    }
    
    .hero-content {
        margin-top: -30px !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }
}

/* タブレット用 */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 4rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
    }
}



/* ===========================================
   SERVICES MENU STYLES
=========================================== */
#services {
    scroll-margin-top: 100px;
}

.menu-services {
    padding: 0 0 100px;
    transition: all 0.3s ease;
}

.menu-main-title {
    font-size: 4rem;
    color: #8b6f47;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 50px 0;
    font-family: 'Times New Roman', serif;
    text-align: center;
}

.menu-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-service-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 3/5;
    position: relative;
}

.menu-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.2);
}

.menu-service-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.menu-service-image img,
.placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-service-overlay {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.menu-service-title {
    color: rgb(0, 0, 0);
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.menu-service-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.menu-service-btn:hover {
    background-color: rgba(139, 111, 71, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}



/* Menu Services Responsive */
@media (max-width: 1024px) {
    .menu-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .menu-main-title {
        font-size: 3.5rem;
        margin: 40px 0;
    }
    
    .menu-service-card {
        aspect-ratio: 3/4;
    }
    
    .menu-service-overlay {
        padding: 25px 15px;
    }
    
    .menu-service-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .menu-service-btn {
        padding: 9px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .menu-services {
        padding: 0 0 80px;
    }
    
    .menu-main-title {
        font-size: 3rem;
        letter-spacing: 2px;
        margin: 30px 0;
    }
    
    .menu-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .menu-service-card {
        aspect-ratio: 1/1;
        border-radius: 10px;
    }
    
    .menu-service-image::after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 45%);
        opacity: 0.7;
    }
    
    .menu-service-card:hover .menu-service-image::after {
        opacity: 0.85;
    }
    
    .menu-service-overlay {
        padding: 20px 12px;
    }
    
    .menu-service-title {
        font-size: 1rem;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
    }
    
    .menu-service-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
        backdrop-filter: blur(8px);
    }
}

@media (max-width: 480px) {
    .menu-services {
        padding: 0 0 60px;
    }
    
    .menu-main-title {
        font-size: 2.5rem;
        letter-spacing: 1.5px;
        margin: 25px 0;
    }
    
    .menu-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .menu-service-card {
        aspect-ratio: 4/5;
        border-radius: 12px;
    }
    
    .menu-service-image::after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
        opacity: 0.75;
    }
    
    .menu-service-overlay {
        padding: 25px 15px;
    }
    
    .menu-service-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
        white-space: normal;
        max-width: 100%;
    }
    
    .menu-service-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .menu-main-title {
        font-size: 2.2rem;
    }
    
    .menu-services-grid {
        max-width: 300px;
        padding: 0 10px;
    }
    
    .menu-service-card {
        aspect-ratio: 3/4;
    }
    
    .menu-service-overlay {
        padding: 20px 12px;
    }
    
    .menu-service-title {
        font-size: 1rem;
    }
    
    .menu-service-btn {
        padding: 7px 15px;
        font-size: 0.75rem;
    }
}

/* 横向きスマートフォン対応 */
@media (max-width: 768px) and (orientation: landscape) {
    .menu-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .menu-service-card {
        aspect-ratio: 3/4;
    }
    
    .menu-service-overlay {
        padding: 15px 10px;
    }
    
    .menu-service-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .menu-service-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* ホバーエフェクトの最適化（タッチデバイス対応） */
@media (hover: hover) and (pointer: fine) {
    .menu-service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(139, 111, 71, 0.25);
    }
    
    .menu-service-card:hover .menu-service-btn {
        background-color: rgba(139, 111, 71, 0.95);
        transform: translateY(-2px);
    }
}

/* タッチデバイス用（ホバーなし） */
@media (hover: none) and (pointer: coarse) {
    .menu-service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .menu-service-card:hover {
        transform: none;
    }
}

/* 高解像度ディスプレイ対応 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .menu-service-card {
        box-shadow: 0 8px 30px rgba(139, 111, 71, 0.12);
    }
    
    .menu-service-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}



/* ===========================================
   INSTAGRAM GALLERY STYLES
=========================================== */
.instagram-section {
    padding: 100px 0;
    background-color: white;
}

.instagram-header {
    text-align: center;
    margin-bottom: 60px;
}

.instagram-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2.5rem;
    color: #333;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Times New Roman', serif;
    margin: 0;
}

.instagram-icon {
    fill: #333;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.1));
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    padding: 0 20px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    background: white;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.12);
    transition: all 0.3s ease;
}

.instagram-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 111, 71, 0.2);
}

.instagram-item img,
.instagram-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.instagram-placeholder {
    background: linear-gradient(135deg, #f5f0e8 0%, #e8ddd4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #8b6f47;
    font-size: 0.8rem;
    opacity: 0.8;
    text-align: center;
    padding: 20px;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-content p {
    margin: 0;
    line-height: 1.2;
}

.instagram-overlay-minimal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 111, 71, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
    pointer-events: none;
}

.instagram-item:hover .instagram-overlay-minimal {
    opacity: 1;
    background: rgba(139, 111, 71, 0.4);
}

.instagram-item img {
    transition: all 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.instagram-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.instagram-item a:focus {
    outline: 3px solid #8b6f47;
    outline-offset: 2px;
    border-radius: 15px;
}

.instagram-item a:focus .instagram-overlay-minimal {
    opacity: 1;
    background: rgba(139, 111, 71, 0.3);
}

.instagram-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.instagram-view-btn,
.instagram-booking-btn {
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: inherit;
}

.instagram-view-btn {
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
}

.instagram-view-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

.instagram-booking-btn {
    background-color: #8b6f47;
    color: white;
    border: 2px solid #8b6f47;
}

.instagram-booking-btn:hover {
    background-color: #6d5435;
    border-color: #6d5435;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.4);
}

.instagram-item {
    animation: fadeInScale 0.6s ease-out both;
}

.instagram-item:nth-child(1) { animation-delay: 0.1s; }
.instagram-item:nth-child(2) { animation-delay: 0.2s; }
.instagram-item:nth-child(3) { animation-delay: 0.3s; }
.instagram-item:nth-child(4) { animation-delay: 0.4s; }
.instagram-item:nth-child(5) { animation-delay: 0.5s; }
.instagram-item:nth-child(6) { animation-delay: 0.6s; }
.instagram-item:nth-child(7) { animation-delay: 0.7s; }
.instagram-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================================
   CEO MESSAGE STYLES
=========================================== */
.ceo-message-section {
    padding: 100px 0;
    background-color: white;
}

.ceo-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.ceo-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
}

.ceo-image img,
.ceo-placeholder {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.ceo-text {
    padding: 20px 40px 20px 20px;
}

.ceo-title {
    font-size: 3.8rem;
    color: #8b6f47;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 3px;
    font-family: 'Times New Roman', serif;
    line-height: 1.1;
}

.ceo-quote {
    font-size: 1.3rem;
    line-height: 2;
    color: #333;
    margin-bottom: 50px;
    font-style: normal;
    position: relative;
    font-weight: 300;
}

.ceo-signature {
    margin-bottom: 40px;
    margin-left: 30px;
}

.ceo-role {
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: 1px;
}

.ceo-name {
    font-size: 1.8rem;
    color: #8b6f47;
    font-weight: 400;
    letter-spacing: 2px;
}

.ceo-staff-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.ceo-staff-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

/* ===========================================
   CONTACT ACCESS STYLES
=========================================== */
.contact-access-section {
    padding: 100px 0;
    background-color: #f5f0e8;
}

.contact-access-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-info {
    padding: 40px 60px 40px 0;
}

.contact-title {
    font-size: 3rem;
    color: #8b6f47;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 3px;
    font-family: 'Times New Roman', serif;
}

.contact-item {
    margin-bottom: 50px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-info {
    font-size: 1.1rem;
    color: #8b6f47;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.contact-info:hover {
    color: #6d5435;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #8b6f47;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.social-icon:hover {
    background-color: #6d5435;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

.social-icon svg {
    fill: white;
    stroke: white;
    width: 24px;
    height: 24px;
}

.map-section {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}

.map-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.map-image:hover {
    transform: scale(1.02);
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8ddd4 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    text-align: center;
    padding: 40px;
}

.map-pin {
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-placeholder p {
    margin: 5px 0;
    font-size: 1.1rem;
}

/* ===========================================
   脱毛 PAGE STYLES
=========================================== */

/* メインヒーローセクション（3つのカード） */

.datsumou-main-hero {
    padding: 80px 0 100px 0;
    background-color: #f8f6f3;
    margin: auto;
}

.hero-content {
    text-align: center;
    max-width: 1600px;
    margin: 0 auto; /* 中央配置を追加 */    
    padding: 0 20px;
}

.main-page-title {
    font-size: 4rem;
    color: #8b6f47;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 80px;
    font-family: 'Times New Roman', serif;
    margin-top: 80px;
    text-align: center;
    /* アニメーション用の初期設定 */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease-out;
}

/* アニメーション実行後のスタイル */
.main-page-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1300px; /* さらに幅を拡大 */
    margin: 0 auto;
    justify-content: center; /* グリッド内容を中央配置 */    
}

.hero-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 350px; /* 最小幅を指定 */
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.hero-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
}

.hero-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-card .hero-card-content h3,
.hero-card .hero-card-content p {
    color: inherit;
}


.placeholder-hero-image {
    width: 100%;
    height: 100%;
}

.woman-placeholder {
    background: linear-gradient(135deg, #f5f0e8 0%, #e8ddd4 100%);
}

.men-placeholder {
    background: linear-gradient(135deg, #e8f0f5 0%, #d4e8f0 100%);
}

.kids-placeholder {
    background: linear-gradient(135deg, #f0f5e8 0%, #e8f0d4 100%);
}

.hero-card-content {
    padding: 30px 35px; /* 左右のパディングを増加 */
}

.hero-card-content h3 {
    font-size: 1.8rem;
    color: #8b6f47;
    margin: 0 0 15px 0;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Times New Roman', serif;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.hero-card-content p {
    font-size: 1rem;
    color: #999;
    margin: 15px 0 0 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===========================================
   メインセクション（画像付き）
=========================================== */
.woman-main-section,
.men-main-section,
.kids-main-section {
    padding: 100px 0;
    background-color: white;
}

.woman-main-section {
    background-color: rgba(211, 211, 211, 0.3);
}

.men-main-section {
    background-color: rgba(245, 222, 179, 0.3);
}

.kids-main-section {
    background-color: rgba(245, 240, 232, 0.5);
}

.main-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-content-wrapper.reverse {
    direction: rtl;
}

.main-content-wrapper.reverse > * {
    direction: ltr;
}

.main-text-content {
    padding: 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Times New Roman', serif;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 1px;
}

.main-price-list {
    margin-bottom: 40px;
}

.main-price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

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

.service-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 300;
    flex: 1;
}

.service-price {
    font-size: 1.2rem;
    color: #8b6f47;
    font-weight: 400;
    margin: 0 20px;
    min-width: 120px;
    text-align: right;
}

.booking-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}

.booking-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-1px);
}

.options-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.options-link:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

.main-image-content {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
}

.main-image-content img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

/* ===========================================
   オプションセクション（テキストのみ）
=========================================== */
.woman-options-section,
.men-options-section,
.kids-options-section {
    padding: 80px 0;
    background-color: white;
}

.woman-options-section {
    background-color: rgba(211, 211, 211, 0.2);
    scroll-margin-top: 100px;
}

.men-options-section {
    background-color: rgba(245, 222, 179, 0.2);
    scroll-margin-top: 100px;
}

.kids-options-section {
    background-color: rgba(237, 232, 223, 0.3);
    scroll-margin-top: 100px;
}

.options-content {
    margin: 0;
    padding: 0 20px;
    text-align: left;
}

.options-title {
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Times New Roman', serif;
    text-align: left;
}

.options-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
    text-align: left;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

/* .options-category {
    
} */

.category-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: left;
}

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

.option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

.option-row:last-child {
    border-bottom: none;
}

.option-label {
    font-size: 1rem;
    color: #333;
    font-weight: 300;
    flex: 1;
}

.option-price {
    font-size: 1.1rem;
    color: #8b6f47;
    font-weight: 400;
    margin-right: 20px;
    min-width: 120px;
    text-align: right;
}

.option-btn {
    padding: 6px 15px;
    background-color: transparent;
    border: 1px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 300;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
}

.option-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-1px);
}

/* セット価格の特別スタイル */
.set-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
}

.set-info {
    width: 100%;
    margin-bottom: 15px;
}

.price-calculation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.arrow {
    color: #8b6f47;
    font-weight: bold;
    font-size: 1rem;
}

.final-price {
    font-size: 1.3rem;
    color: #8b6f47;
    font-weight: 500;
}

.set-row .option-btn {
    align-self: flex-end;
}


/* Datsumou Page Responsive */
/* タブレット */
@media (max-width: 1024px) {
    .hero-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .main-page-title {
        font-size: 3.5rem;
        margin-bottom: 60px; /* 余白調整 */
        margin-top: 60px;
    }
    
    .hero-card {
        min-width: auto; /* 最小幅制限を解除 */
    }
    
    .main-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }
    
    .main-content-wrapper.reverse {
        direction: ltr;
    }
    
    .main-image-content {
        order: 1;
    }
    
    .main-text-content {
        order: 2;
        text-align: center;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .datsumou-page {
        margin-top: 70px;
    }
    
    .datsumou-main-hero {
        padding: 60px 0;
    }
    
    .main-page-title {
        font-size: 3rem;
        margin-top: 40px;
        letter-spacing: 2px;
    }
    
    .hero-card-image {
        height: 250px; /* 画像高さ調整 */
    }
    
    .hero-card-content {
        padding: 25px 30px; /* パディング調整 */
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .main-content-wrapper {
        padding: 0 20px;
        gap: 40px;
    }
    
    .main-text-content {
        padding: 10px;
    }
    
    .main-price-item {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 8px;
        margin-bottom: 15px;
        border: 1px solid rgba(139, 111, 71, 0.2);
    }
    
    .service-label {
        font-size: 1rem;
        font-weight: 400;
    }
    
    .service-price {
        margin: 0;
        text-align: left;
        font-size: 1.3rem;
        color: #8b6f47;
        font-weight: 500;
    }
    
    .booking-btn {
        align-self: center;
        padding: 10px 25px;
        font-size: 0.95rem;
        min-width: 80px;
    }
    
    .main-image-content img {
        height: 300px;
        border-radius: 10px;
    }
    
    .woman-main-section,
    .men-main-section,
    .kids-main-section,
    .woman-options-section,
    .men-options-section,
    .kids-options-section {
        padding: 50px 0;
    }
    
    .options-link {
        display: block;
        text-align: center;
        margin: 30px auto 0;
        max-width: 200px;
    }
    
    .options-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .options-subtitle {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .category-title {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .option-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 8px;
        margin-bottom: 15px;
        border: 1px solid rgba(139, 111, 71, 0.2);
    }
    
    .option-price {
        margin: 0;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 500;
    }
    
    .option-btn {
        align-self: center;
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .set-row .option-btn {
        align-self: center;
    }
}

/* 小さなスマートフォン */
@media (max-width: 480px) {
    .main-page-title {
        font-size: 2.5rem;
        margin-top: 30px;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-card-content h3 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero-card-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .main-content-wrapper {
        padding: 0 15px;
        gap: 30px;
    }
    
    .options-grid {
        gap: 25px;
    }
    
    .category-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .set-row {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .price-calculation {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .original-price,
    .arrow,
    .final-price {
        font-size: 0.9rem;
    }
    
    .final-price {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .main-image-content img {
        height: 250px;
    }
    
    .woman-main-section,
    .men-main-section,
    .kids-main-section,
    .woman-options-section,
    .men-options-section,
    .kids-options-section {
        padding: 40px 0;
    }
}


/* ===========================================
   K-BEAUTY PAGE STYLES
=========================================== */

/* K-beautyヒーローセクション */
.k-beauty-main-hero {
    padding: 80px 0 100px 0;
    background-color: #f8f6f3;
    margin: auto;
}

.k-beauty-main-hero .main-page-title {
    font-size: 4rem;
    color: #8b6f47;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 80px;
    font-family: 'Times New Roman', serif;
    margin-top: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease-out;
}

.k-beauty-main-hero .main-page-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.k-beauty-main-hero .hero-content {
    text-align: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.k-beauty-main-hero .hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.k-beauty-main-hero .hero-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 280px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.k-beauty-main-hero .hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.k-beauty-main-hero .hero-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.k-beauty-main-hero .hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.k-beauty-main-hero .hero-card:hover .hero-card-image img {
    transform: scale(1.1);
}

.k-beauty-main-hero .placeholder-hero-image {
    width: 100%;
    height: 100%;
}

.k-beauty-main-hero .return10-placeholder {
    background: linear-gradient(135deg, #f5e8d4 0%, #e8d4c4 100%);
}

.k-beauty-main-hero .whitening-placeholder {
    background: linear-gradient(135deg, #f5f0f8 0%, #e8d4f0 100%);
}

.k-beauty-main-hero .herb-placeholder {
    background: linear-gradient(135deg, #e8f5f0 0%, #d4f0e8 100%);
}

.k-beauty-main-hero .rejuran-placeholder {
    background: linear-gradient(135deg, #f8f0e8 0%, #e8ddd4 100%);
}

.k-beauty-main-hero .hero-card-content {
    padding: 30px 25px;
}

.k-beauty-main-hero .hero-card-content h3 {
    font-size: 1.4rem;
    color: #8b6f47;
    margin: 0 0 15px 0;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Yu Mincho', '游明朝', serif;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.k-beauty-main-hero .hero-card-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 15px 0 0 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* スムーススクロール用のマージン */
.return10-section,
.whitening-section,
.herb-peeling-section,
.rejuran-section {
    scroll-margin-top: 100px;
}



/* K-BEAUTY （ヒーローセクション RESPONSIVE） */

/* デスクトップ - 大画面（1400px以上） */
@media (min-width: 1400px) {
    .k-beauty-main-hero .hero-cards-grid {
        max-width: 1500px;
        gap: 25px;
    }
    
    .k-beauty-main-hero .hero-card {
        min-width: 320px;
    }
    
    .k-beauty-main-hero .hero-card-image {
        height: 300px;
    }
}

/* デスクトップ - 中画面（1200px - 1399px） */
@media (min-width: 1200px) and (max-width: 1399px) {
    .k-beauty-main-hero .hero-cards-grid {
        max-width: 1200px;
        gap: 20px;
    }
    
    .k-beauty-main-hero .hero-card {
        min-width: 260px;
    }
}

/* タブレット - 大（1024px - 1199px） - 4列維持 */
@media (min-width: 1024px) and (max-width: 1199px) {
    .k-beauty-main-hero .hero-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        max-width: 1000px;
    }
    
    .k-beauty-main-hero .hero-card {
        min-width: auto;
    }
    
    .k-beauty-main-hero .hero-card-image {
        height: 240px;
    }
    
    .k-beauty-main-hero .hero-card-content {
        padding: 25px 20px;
    }
    
    .k-beauty-main-hero .hero-card-content h3 {
        font-size: 1.2rem;
    }
    
    .k-beauty-main-hero .hero-card-content p {
        font-size: 0.85rem;
    }
    
    .k-beauty-main-hero .main-page-title {
        font-size: 3.8rem;
        margin-bottom: 70px;
        margin-top: 70px;
    }
}

/* タブレット - 中（768px - 1023px） - 2列表示 */
@media (min-width: 768px) and (max-width: 1023px) {
    .k-beauty-main-hero {
        padding: 70px 0 90px 0;
    }
    
    .k-beauty-main-hero .main-page-title {
        font-size: 3.5rem;
        margin-bottom: 60px;
        margin-top: 60px;
        letter-spacing: 2.5px;
    }
    
    .k-beauty-main-hero .hero-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }
    
    .k-beauty-main-hero .hero-card {
        min-width: auto;
    }
    
    .k-beauty-main-hero .hero-card-image {
        height: 260px;
    }
    
    .k-beauty-main-hero .hero-card-content {
        padding: 28px 22px;
    }
    
    .k-beauty-main-hero .hero-card-content h3 {
        font-size: 1.35rem;
        letter-spacing: 0.8px;
    }
    
    .k-beauty-main-hero .hero-card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* スマートフォン - 大（481px - 767px） - 1列表示 */
@media (min-width: 481px) and (max-width: 767px) {
    .k-beauty-main-hero {
        padding: 60px 0 80px 0;
    }
    
    .k-beauty-main-hero .main-page-title {
        font-size: 3rem;
        margin-top: 40px;
        letter-spacing: 2px;
        margin-bottom: 50px;
    }
    
    .k-beauty-main-hero .hero-content {
        padding: 0 20px;
    }
    
    .k-beauty-main-hero .hero-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .k-beauty-main-hero .hero-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .k-beauty-main-hero .hero-card-image {
        height: 280px;
    }
    
    .k-beauty-main-hero .hero-card-content {
        padding: 30px 25px;
    }
    
    .k-beauty-main-hero .hero-card-content h3 {
        font-size: 1.4rem;
        letter-spacing: 1px;
        padding-bottom: 12px;
    }
    
    .k-beauty-main-hero .hero-card-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* スマートフォン - 小（320px - 480px） - 1列表示 */
@media (max-width: 480px) {
    .k-beauty-main-hero {
        padding: 50px 0 70px 0;
    }
    
    .k-beauty-main-hero .main-page-title {
        font-size: 2.5rem;
        margin-top: 30px;
        letter-spacing: 1.5px;
        line-height: 1.2;
    }
    
    .k-beauty-main-hero .hero-content {
        padding: 0 15px;
    }
    
    .k-beauty-main-hero .hero-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }
    
    .k-beauty-main-hero .hero-card {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .k-beauty-main-hero .hero-card-image {
        height: 240px;
    }
    
    .k-beauty-main-hero .hero-card-content {
        padding: 25px 20px;
    }
    
    .k-beauty-main-hero .hero-card-content h3 {
        font-size: 1.25rem;
        letter-spacing: 0.8px;
        padding-bottom: 10px;
    }
    
    .k-beauty-main-hero .hero-card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-top: 12px;
    }
}

/* 超小型スマートフォン（320px以下） */
@media (max-width: 320px) {
    .k-beauty-main-hero {
        padding: 40px 0 60px 0;
    }
    
    .k-beauty-main-hero .main-page-title {
        font-size: 2rem;
        margin-top: 25px;
        letter-spacing: 1px;
        margin-bottom: 35px;
    }
    
    .k-beauty-main-hero .hero-content {
        padding: 0 10px;
    }
    
    .k-beauty-main-hero .hero-cards-grid {
        gap: 20px;
    }
    
    .k-beauty-main-hero .hero-card {
        max-width: 100%;
    }
    
    .k-beauty-main-hero .hero-card-image {
        height: 200px;
    }
    
    .k-beauty-main-hero .hero-card-content {
        padding: 20px 15px;
    }
    
    .k-beauty-main-hero .hero-card-content h3 {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .k-beauty-main-hero .hero-card-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* 横向きスマートフォン対応 */
@media (max-height: 500px) and (orientation: landscape) {
    .k-beauty-main-hero {
        padding: 40px 0 50px 0;
    }
    
    .k-beauty-main-hero .main-page-title {
        font-size: 2.5rem;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .k-beauty-main-hero .hero-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 90%;
    }
    
    .k-beauty-main-hero .hero-card-image {
        height: 180px;
    }
    
    .k-beauty-main-hero .hero-card-content {
        padding: 20px 15px;
    }
}

/* ホバーエフェクトの最適化（タッチデバイス対応） */
@media (hover: hover) and (pointer: fine) {
    .k-beauty-main-hero .hero-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(139, 111, 71, 0.2);
    }
    
    .k-beauty-main-hero .hero-card:hover .hero-card-image img {
        transform: scale(1.1);
    }
}

/* タッチデバイス用（ホバーなし） */
@media (hover: none) and (pointer: coarse) {
    .k-beauty-main-hero .hero-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* 高解像度ディスプレイ対応 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .k-beauty-main-hero .hero-card {
        box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    }
    
    .k-beauty-main-hero .hero-card-content h3 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}


/* ===========================================
   RETURN10セクション専用スタイル
=========================================== */
.return10-section {
    padding: 100px 0;
    background-color: rgba(139, 111, 71, 0.15);
}

.return10-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.return10-section .text-content {
    padding: 20px;
}

.return10-section .section-title {
    font-size: 2.8rem;
    color: #8b6f47;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Times New Roman', serif;
    line-height: 1.3;
}

.return10-section .section-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 40px;
    font-weight: 300;
}

.return10-section .detail-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.return10-section .detail-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

/* 2画像レイアウト */
.return10-section .image-content-double {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.return10-section .image-top,
.return10-section .image-bottom {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.15);
    transition: all 0.3s ease;
}

.return10-section .image-top:hover,
.return10-section .image-bottom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.25);
}

.return10-section .image-top img,
.return10-section .image-bottom img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.return10-section .image-top:hover img,
.return10-section .image-bottom:hover img {
    transform: scale(1.05);
}

.return10-section .placeholder-image-small {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #f5e8d4 0%, #e8d4c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* RETURN10セクション RESPONSIVE */

/* タブレット */
@media (max-width: 1024px) {
    .return10-section .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }
    
    .return10-section .text-content {
        order: 2;
        text-align: center;
    }
    
    .return10-section .image-content-double {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .return10-section .section-title {
        font-size: 2.5rem;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .return10-section {
        padding: 60px 0;
    }
    
    .return10-section .content-wrapper {
        gap: 40px;
        padding: 0 20px;
    }
    
    .return10-section .text-content {
        padding: 10px;
    }
    
    .return10-section .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .return10-section .section-description {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .return10-section .image-content-double {
        gap: 15px;
        max-width: 450px;
    }
    
    .return10-section .image-top img,
    .return10-section .image-bottom img,
    .return10-section .placeholder-image-small {
        height: 200px;
    }
    
    .return10-section .detail-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* 小さなスマートフォン */
@media (max-width: 480px) {
    .return10-section {
        padding: 50px 0;
    }
    
    .return10-section .content-wrapper {
        padding: 0 15px;
        gap: 30px;
    }
    
    .return10-section .section-title {
        font-size: 1.8rem;
    }
    
    .return10-section .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .return10-section .image-content-double {
        gap: 12px;
        max-width: 100%;
    }
    
    .return10-section .image-top img,
    .return10-section .image-bottom img,
    .return10-section .placeholder-image-small {
        height: 180px;
    }
}

/* 横向きスマートフォン */
@media (max-height: 500px) and (orientation: landscape) {
    .return10-section {
        padding: 40px 0;
    }
    
    .return10-section .image-content-double {
        flex-direction: row;
        gap: 15px;
    }
    
    .return10-section .image-top,
    .return10-section .image-bottom {
        flex: 1;
    }
    
    .return10-section .image-top img,
    .return10-section .image-bottom img,
    .return10-section .placeholder-image-small {
        height: 200px;
    }
}


/* ===========================================
   白玉ピーリング&水分爆弾セクション専用スタイル（完全版）
=========================================== */
.whitening-section {
    padding: 100px 0;
    background-color: white;
}

/* デスクトップ：2画像横並び + テキスト */
.whitening-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 25px 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.whitening-section .image-left {
    order: 1;
}

.whitening-section .image-right {
    order: 2;
}

.whitening-section .text-content {
    order: 3;
    padding: 20px;
}

.whitening-section .section-title {
    font-size: 2.8rem;
    color: #8b6f47;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Times New Roman', serif;
    line-height: 1.3;
}

.whitening-section .section-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 40px;
    font-weight: 300;
}

.whitening-section .detail-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.whitening-section .detail-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

.whitening-section .image-left,
.whitening-section .image-right {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.15);
    transition: all 0.3s ease;
}

.whitening-section .image-left:hover,
.whitening-section .image-right:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.25);
}

.whitening-section .image-left img,
.whitening-section .image-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.whitening-section .image-left:hover img,
.whitening-section .image-right:hover img {
    transform: scale(1.05);
}

.whitening-section .placeholder-image-horizontal {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f5f0f8 0%, #e8d4f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===========================================
   白玉ピーリング&水分爆弾セクション RESPONSIVE
=========================================== */

/* タブレット（768px - 1023px）*/
@media (min-width: 768px) and (max-width: 1023px) {
    .whitening-section .content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 30px;
    }
    
    .whitening-section .image-left {
        order: 1;
    }
    
    .whitening-section .image-right {
        order: 2;
    }
    
    .whitening-section .text-content {
        order: 3;
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .whitening-section .section-title {
        font-size: 2.5rem;
    }
    
    .whitening-section .image-left img,
    .whitening-section .image-right img,
    .whitening-section .placeholder-image-horizontal {
        height: 350px;
    }
}

/* スマートフォン（767px以下）- 画像を横並びに */
@media (max-width: 767px) {
    .whitening-section {
        padding: 60px 0;
    }
    
    .whitening-section .content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "img1 img2"
            "text text";
        gap: 15px 15px;
        padding: 0 20px;
    }
    
    .whitening-section .image-left {
        grid-area: img1;
    }
    
    .whitening-section .image-right {
        grid-area: img2;
    }
    
    .whitening-section .text-content {
        grid-area: text;
        padding: 10px;
        text-align: center;
        margin-top: 15px;
    }
    
    .whitening-section .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .whitening-section .section-description {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    /* 画像の高さを統一 */
    .whitening-section .image-left img,
    .whitening-section .image-right img,
    .whitening-section .placeholder-image-horizontal {
        height: 280px;
    }
    
    .whitening-section .detail-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* 小さなスマートフォン（480px以下） */
@media (max-width: 480px) {
    .whitening-section {
        padding: 50px 0;
    }
    
    .whitening-section .content-wrapper {
        padding: 0 15px;
        gap: 12px 12px;
    }
    
    .whitening-section .section-title {
        font-size: 1.8rem;
    }
    
    .whitening-section .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .whitening-section .image-left img,
    .whitening-section .image-right img,
    .whitening-section .placeholder-image-horizontal {
        height: 220px;
    }
}

/* 超小型スマートフォン（375px以下） */
@media (max-width: 375px) {
    .whitening-section .content-wrapper {
        gap: 10px 10px;
    }
    
    .whitening-section .image-left img,
    .whitening-section .image-right img,
    .whitening-section .placeholder-image-horizontal {
        height: 200px;
    }
}

/* スマホ横向き */
@media (max-width: 767px) and (orientation: landscape) {
    .whitening-section {
        padding: 40px 0;
    }
    
    .whitening-section .image-left img,
    .whitening-section .image-right img,
    .whitening-section .placeholder-image-horizontal {
        height: 200px;
    }
}

/* ホバーエフェクトの最適化 */
@media (hover: hover) and (pointer: fine) {
    .whitening-section .image-left:hover,
    .whitening-section .image-right:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(139, 111, 71, 0.3);
    }
}

/* タッチデバイス用 */
@media (hover: none) and (pointer: coarse) {
    .whitening-section .image-left:active,
    .whitening-section .image-right:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* ===========================================
   ハーブピーリングセクション専用スタイル（完全版）
=========================================== */
.herb-peeling-section {
    padding: 100px 0;
    background-color: rgba(232, 240, 245, 0.3);
}

/* デスクトップ：3カラムレイアウト */
.herb-peeling-section .content-wrapper-three {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* デスクトップでは画像コンテナを無効化 */
.herb-peeling-section .images-horizontal-mobile {
    display: contents;
}

.herb-peeling-section .text-content {
    padding: 20px;
}

.herb-peeling-section .section-title {
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Times New Roman', serif;
    line-height: 1.3;
}

.herb-peeling-section .section-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 40px;
    font-weight: 300;
}

.herb-peeling-section .detail-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.herb-peeling-section .detail-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

/* 左側の大きい画像 */
.herb-peeling-section .image-left-large {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
    transition: all 0.3s ease;
}

.herb-peeling-section .image-left-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.25);
}

.herb-peeling-section .image-left-large img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.herb-peeling-section .image-left-large:hover img {
    transform: scale(1.05);
}

.herb-peeling-section .placeholder-image-large {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, #e8f5f0 0%, #d4f0e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 右側の小さい画像 */
.herb-peeling-section .image-right-small {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.12);
    transition: all 0.3s ease;
}

.herb-peeling-section .image-right-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.2);
}

.herb-peeling-section .image-right-small img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.herb-peeling-section .image-right-small:hover img {
    transform: scale(1.05);
}

.herb-peeling-section .placeholder-image-small {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #e8f5f0 0%, #d4f0e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ===========================================
   ハーブピーリングセクション RESPONSIVE
=========================================== */

/* タブレット - 大（1024px - 1199px） */
@media (min-width: 1024px) and (max-width: 1199px) {
    .herb-peeling-section .content-wrapper-three {
        grid-template-columns: 1fr 1.3fr 0.9fr;
        gap: 30px;
    }
    
    .herb-peeling-section .section-title {
        font-size: 2.2rem;
    }
    
    .herb-peeling-section .section-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .herb-peeling-section .image-left-large img,
    .herb-peeling-section .placeholder-image-large {
        height: 450px;
    }
    
    .herb-peeling-section .image-right-small img,
    .herb-peeling-section .placeholder-image-small {
        height: 320px;
    }
}

/* タブレット - 中（768px - 1023px）画像を横並びに */
@media (min-width: 768px) and (max-width: 1023px) {
    .herb-peeling-section .content-wrapper-three {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "img1 img2"
            "text text";
        gap: 20px 20px;
        padding: 0 30px;
    }
    
    .herb-peeling-section .image-left-large {
        grid-area: img1;
    }
    
    .herb-peeling-section .image-right-small {
        grid-area: img2;
    }
    
    .herb-peeling-section .text-content {
        grid-area: text;
        text-align: center;
        margin-top: 20px;
    }
    
    .herb-peeling-section .section-title {
        font-size: 2.3rem;
    }
    
    /* 画像の高さを統一 */
    .herb-peeling-section .image-left-large img,
    .herb-peeling-section .placeholder-image-large,
    .herb-peeling-section .image-right-small img,
    .herb-peeling-section .placeholder-image-small {
        height: 350px;
    }
}

/* スマートフォン（767px以下）- 画像を横並びに */
@media (max-width: 767px) {
    .herb-peeling-section {
        padding: 60px 0;
    }
    
    .herb-peeling-section .content-wrapper-three {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "img1 img2"
            "text text";
        gap: 15px 15px;
        padding: 0 20px;
    }
    
    .herb-peeling-section .image-left-large {
        grid-area: img1;
    }
    
    .herb-peeling-section .image-right-small {
        grid-area: img2;
    }
    
    .herb-peeling-section .text-content {
        grid-area: text;
        padding: 10px;
        text-align: center;
        margin-top: 15px;
    }
    
    /* 画像の高さを統一 */
    .herb-peeling-section .image-left-large img,
    .herb-peeling-section .placeholder-image-large,
    .herb-peeling-section .image-right-small img,
    .herb-peeling-section .placeholder-image-small {
        height: 280px;
    }
    
    .herb-peeling-section .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .herb-peeling-section .section-description {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .herb-peeling-section .detail-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* 小さなスマートフォン（480px以下） */
@media (max-width: 480px) {
    .herb-peeling-section {
        padding: 50px 0;
    }
    
    .herb-peeling-section .content-wrapper-three {
        padding: 0 15px;
        gap: 25px;
    }
    
    .herb-peeling-section .images-horizontal-mobile {
        gap: 12px;
    }
    
    .herb-peeling-section .section-title {
        font-size: 1.8rem;
    }
    
    .herb-peeling-section .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* 小画面用に画像の高さを調整 */
    .herb-peeling-section .image-left-large img,
    .herb-peeling-section .placeholder-image-large,
    .herb-peeling-section .image-right-small img,
    .herb-peeling-section .placeholder-image-small {
        height: 220px;
    }
}

/* 超小型スマートフォン（375px以下） */
@media (max-width: 375px) {
    .herb-peeling-section .images-horizontal-mobile {
        gap: 10px;
    }
    
    .herb-peeling-section .image-left-large img,
    .herb-peeling-section .placeholder-image-large,
    .herb-peeling-section .image-right-small img,
    .herb-peeling-section .placeholder-image-small {
        height: 200px;
    }
}

/* タブレット横向き（768px - 1023px） */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
    .herb-peeling-section .content-wrapper-three {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 25px;
    }
    
    .herb-peeling-section .images-horizontal-mobile {
        display: contents;
    }
    
    .herb-peeling-section .image-left-large,
    .herb-peeling-section .image-right-small {
        max-width: none;
    }
    
    .herb-peeling-section .image-left-large {
        order: 1;
    }
    
    .herb-peeling-section .text-content {
        order: 2;
        text-align: left;
    }
    
    .herb-peeling-section .image-right-small {
        order: 3;
    }
    
    .herb-peeling-section .image-left-large img,
    .herb-peeling-section .placeholder-image-large {
        height: 350px;
    }
    
    .herb-peeling-section .image-right-small img,
    .herb-peeling-section .placeholder-image-small {
        height: 280px;
    }
}

/* スマホ横向き（767px以下） */
@media (max-width: 767px) and (orientation: landscape) {
    .herb-peeling-section {
        padding: 40px 0;
    }
    
    .herb-peeling-section .images-horizontal-mobile {
        gap: 12px;
    }
    
    .herb-peeling-section .image-left-large img,
    .herb-peeling-section .placeholder-image-large,
    .herb-peeling-section .image-right-small img,
    .herb-peeling-section .placeholder-image-small {
        height: 200px;
    }
}

/* ホバーエフェクトの最適化 */
@media (hover: hover) and (pointer: fine) {
    .herb-peeling-section .image-left-large:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(139, 111, 71, 0.3);
    }
    
    .herb-peeling-section .image-right-small:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(139, 111, 71, 0.25);
    }
}

/* タッチデバイス用 */
@media (hover: none) and (pointer: coarse) {
    .herb-peeling-section .image-left-large:active,
    .herb-peeling-section .image-right-small:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}





/* ===========================================
   リジュランセクション専用スタイル
=========================================== */
.rejuran-section {
    padding: 100px 0;
    background-color: rgba(245, 240, 232, 0.4);
}

.rejuran-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.rejuran-section .text-content {
    padding: 20px;
}

.rejuran-section .section-title {
    font-size: 2.8rem;
    color: #8b6f47;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Times New Roman', serif;
    line-height: 1.3;
}

.rejuran-section .section-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 40px;
    font-weight: 300;
}

.rejuran-section .detail-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.rejuran-section .detail-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

.rejuran-section .image-content {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    max-width: 400px; /* 画像の横幅に合わせる */
}

.rejuran-section .image-content img {
    width: 100%;
    height: 600px; /* 縦長に変更 */
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.rejuran-section .image-content:hover img {
    transform: scale(1.05);
}

.rejuran-section .placeholder-image {
    width: 100%;
    height: 600px; /* 縦長に変更 */
    background: linear-gradient(135deg, #f8f0e8 0%, #e8ddd4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===========================================
   リジュランセクション RESPONSIVE
=========================================== */

/* タブレット */
@media (max-width: 1024px) {
    .rejuran-section .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }
    
    .rejuran-section .image-content {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .rejuran-section .text-content {
        order: 2;
        text-align: center;
    }
    
    .rejuran-section .section-title {
        font-size: 2.5rem;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .rejuran-section {
        padding: 60px 0;
    }
    
    .rejuran-section .content-wrapper {
        gap: 40px;
        padding: 0 20px;
    }
    
    .rejuran-section .text-content {
        padding: 10px;
    }
    
    .rejuran-section .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .rejuran-section .section-description {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .rejuran-section .image-content {
        max-width: 450px;
    }
    
    .rejuran-section .image-content img,
    .rejuran-section .placeholder-image {
        height: 350px;
    }
    
    .rejuran-section .detail-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* 小さなスマートフォン */
@media (max-width: 480px) {
    .rejuran-section {
        padding: 50px 0;
    }
    
    .rejuran-section .content-wrapper {
        padding: 0 15px;
        gap: 30px;
    }
    
    .rejuran-section .section-title {
        font-size: 1.8rem;
    }
    
    .rejuran-section .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .rejuran-section .image-content {
        max-width: 100%;
    }
    
    .rejuran-section .image-content img,
    .rejuran-section .placeholder-image {
        height: 300px;
    }
}

/* タブレット横向き */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .rejuran-section .content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .rejuran-section .image-content {
        order: 2;
        max-width: none;
    }
    
    .rejuran-section .text-content {
        order: 1;
        text-align: left;
    }
    
    .rejuran-section .image-content img,
    .rejuran-section .placeholder-image {
        height: 400px;
    }
}

/* スマホ横向き */
@media (max-width: 768px) and (max-height: 500px) and (orientation: landscape) {
    .rejuran-section {
        padding: 40px 0;
    }
    
    .rejuran-section .content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .rejuran-section .image-content {
        order: 2;
    }
    
    .rejuran-section .text-content {
        order: 1;
        text-align: left;
    }
    
    .rejuran-section .image-content img,
    .rejuran-section .placeholder-image {
        height: 280px;
    }
    
    .rejuran-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .rejuran-section .section-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}

/* ホバーエフェクトの最適化 */
@media (hover: hover) and (pointer: fine) {
    .rejuran-section .image-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(139, 111, 71, 0.25);
    }
}

/* タッチデバイス用 */
@media (hover: none) and (pointer: coarse) {
    .rejuran-section .image-content:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* 高解像度ディスプレイ対応 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .rejuran-section .image-content {
        box-shadow: 0 15px 45px rgba(139, 111, 71, 0.18);
    }
    
    .rejuran-section .section-title,
    .rejuran-section .section-description {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}


/* ===========================================
   FACIAL & BODY PAGE STYLES
=========================================== */

/* ===========================================
   ヒーローセクション（4つのカード）
=========================================== */
.facial-body-main-hero {
    padding: 80px 0 100px 0;
    background-color: #f8f6f3;
    margin: auto;
}

.facial-body-main-hero .main-page-title {
    font-size: 4rem;
    color: #8b6f47;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 80px;
    font-family: 'Times New Roman', serif;
    margin-top: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s ease-out;
}

.facial-body-main-hero .main-page-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.facial-body-main-hero .hero-content {
    text-align: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.facial-body-main-hero .hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.facial-body-main-hero .hero-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 280px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.facial-body-main-hero .hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.facial-body-main-hero .hero-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.facial-body-main-hero .hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.facial-body-main-hero .hero-card:hover .hero-card-image img {
    transform: scale(1.1);
}

.facial-body-main-hero .placeholder-hero-image {
    width: 100%;
    height: 100%;
}

.facial-body-main-hero .pore-placeholder {
    background: linear-gradient(135deg, #e8f5f8 0%, #d4e8f0 100%);
}

.facial-body-main-hero .lift-placeholder {
    background: linear-gradient(135deg, #f5e8f0 0%, #f0d4e8 100%);
}

.facial-body-main-hero .skin-placeholder {
    background: linear-gradient(135deg, #f8f5e8 0%, #f0e8d4 100%);
}

.facial-body-main-hero .lymph-placeholder {
    background: linear-gradient(135deg, #e8f8f0 0%, #d4f0e8 100%);
}

.facial-body-main-hero .hero-card-content {
    padding: 30px 25px;
}

.facial-body-main-hero .hero-card-content h3 {
    font-size: 1.4rem;
    color: #8b6f47;
    margin: 0 0 15px 0;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Yu Mincho', '游明朝', serif;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.facial-body-main-hero .hero-card-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 15px 0 0 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* ヒーローセクション - レスポンシブ */
@media (min-width: 1400px) {
    .facial-body-main-hero .hero-cards-grid {
        max-width: 1500px;
        gap: 25px;
    }
    
    .facial-body-main-hero .hero-card {
        min-width: 320px;
    }
    
    .facial-body-main-hero .hero-card-image {
        height: 300px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .facial-body-main-hero .hero-cards-grid {
        max-width: 1200px;
        gap: 20px;
    }
    
    .facial-body-main-hero .hero-card {
        min-width: 260px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .facial-body-main-hero .hero-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        max-width: 1000px;
    }
    
    .facial-body-main-hero .hero-card {
        min-width: auto;
    }
    
    .facial-body-main-hero .hero-card-image {
        height: 240px;
    }
    
    .facial-body-main-hero .hero-card-content {
        padding: 25px 20px;
    }
    
    .facial-body-main-hero .hero-card-content h3 {
        font-size: 1.2rem;
    }
    
    .facial-body-main-hero .hero-card-content p {
        font-size: 0.85rem;
    }
    
    .facial-body-main-hero .main-page-title {
        font-size: 3.8rem;
        margin-bottom: 70px;
        margin-top: 70px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .facial-body-main-hero {
        padding: 70px 0 90px 0;
    }
    
    .facial-body-main-hero .main-page-title {
        font-size: 3.5rem;
        margin-bottom: 60px;
        margin-top: 60px;
        letter-spacing: 2.5px;
    }
    
    .facial-body-main-hero .hero-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }
    
    .facial-body-main-hero .hero-card {
        min-width: auto;
    }
    
    .facial-body-main-hero .hero-card-image {
        height: 260px;
    }
    
    .facial-body-main-hero .hero-card-content {
        padding: 28px 22px;
    }
    
    .facial-body-main-hero .hero-card-content h3 {
        font-size: 1.35rem;
        letter-spacing: 0.8px;
    }
    
    .facial-body-main-hero .hero-card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .facial-body-main-hero {
        padding: 60px 0 80px 0;
    }
    
    .facial-body-main-hero .main-page-title {
        font-size: 3rem;
        margin-top: 40px;
        letter-spacing: 2px;
        margin-bottom: 50px;
    }
    
    .facial-body-main-hero .hero-content {
        padding: 0 20px;
    }
    
    .facial-body-main-hero .hero-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .facial-body-main-hero .hero-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .facial-body-main-hero .hero-card-image {
        height: 280px;
    }
    
    .facial-body-main-hero .hero-card-content {
        padding: 30px 25px;
    }
    
    .facial-body-main-hero .hero-card-content h3 {
        font-size: 1.4rem;
        letter-spacing: 1px;
        padding-bottom: 12px;
    }
    
    .facial-body-main-hero .hero-card-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .facial-body-main-hero {
        padding: 50px 0 70px 0;
    }
    
    .facial-body-main-hero .main-page-title {
        font-size: 2.5rem;
        margin-top: 30px;
        letter-spacing: 1.5px;
        margin-bottom: 40px;
        line-height: 1.2;
    }
    
    .facial-body-main-hero .hero-content {
        padding: 0 15px;
    }
    
    .facial-body-main-hero .hero-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }
    
    .facial-body-main-hero .hero-card {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .facial-body-main-hero .hero-card-image {
        height: 240px;
    }
    
    .facial-body-main-hero .hero-card-content {
        padding: 25px 20px;
    }
    
    .facial-body-main-hero .hero-card-content h3 {
        font-size: 1.25rem;
        letter-spacing: 0.8px;
        padding-bottom: 10px;
    }
    
    .facial-body-main-hero .hero-card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-top: 12px;
    }
}

@media (max-width: 320px) {
    .facial-body-main-hero {
        padding: 40px 0 60px 0;
    }
    
    .facial-body-main-hero .main-page-title {
        font-size: 2rem;
        margin-top: 25px;
        letter-spacing: 1px;
        margin-bottom: 35px;
    }
    
    .facial-body-main-hero .hero-content {
        padding: 0 10px;
    }
    
    .facial-body-main-hero .hero-cards-grid {
        gap: 20px;
    }
    
    .facial-body-main-hero .hero-card {
        max-width: 100%;
    }
    
    .facial-body-main-hero .hero-card-image {
        height: 200px;
    }
    
    .facial-body-main-hero .hero-card-content {
        padding: 20px 15px;
    }
    
    .facial-body-main-hero .hero-card-content h3 {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }
    
    .facial-body-main-hero .hero-card-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .facial-body-main-hero {
        padding: 40px 0 50px 0;
    }
    
    .facial-body-main-hero .main-page-title {
        font-size: 2.5rem;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .facial-body-main-hero .hero-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 90%;
    }
    
    .facial-body-main-hero .hero-card-image {
        height: 180px;
    }
    
    .facial-body-main-hero .hero-card-content {
        padding: 20px 15px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .facial-body-main-hero .hero-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(139, 111, 71, 0.2);
    }
    
    .facial-body-main-hero .hero-card:hover .hero-card-image img {
        transform: scale(1.1);
    }
}

@media (hover: none) and (pointer: coarse) {
    .facial-body-main-hero .hero-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .facial-body-main-hero .hero-card {
        box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    }
    
    .facial-body-main-hero .hero-card-content h3 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}


/* ===========================================
   毛穴クレンジングセクション
=========================================== */
.pore-cleansing-section {
    padding: 100px 0;
    background-color: rgba(232, 245, 248, 0.3);
    scroll-margin-top: 100px;
}

.pore-cleansing-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.pore-cleansing-section .text-content {
    padding: 20px;
}

.pore-cleansing-section .section-title {
    font-size: 2.8rem;
    color: #8b6f47;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Times New Roman', serif;
    line-height: 1.3;
}

.pore-cleansing-section .section-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 40px;
    font-weight: 300;
}

.pore-cleansing-section .detail-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.pore-cleansing-section .detail-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

.pore-cleansing-section .image-content {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    max-width: 350px;
}

.pore-cleansing-section .image-content img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.pore-cleansing-section .image-content:hover img {
    transform: scale(1.05);
}

.pore-cleansing-section .placeholder-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #e8f5f8 0%, #d4e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 毛穴クレンジングセクション - レスポンシブ */
@media (max-width: 1024px) {
    .pore-cleansing-section .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }
    
    .pore-cleansing-section .image-content {
        order: 1;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .pore-cleansing-section .text-content {
        order: 2;
        text-align: center;
    }
    
    .pore-cleansing-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pore-cleansing-section {
        padding: 60px 0;
    }
    
    .pore-cleansing-section .content-wrapper {
        gap: 40px;
        padding: 0 20px;
    }
    
    .pore-cleansing-section .text-content {
        padding: 10px;
    }
    
    .pore-cleansing-section .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .pore-cleansing-section .section-description {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }
    
    .pore-cleansing-section .image-content {
        max-width: 300px;
    }
    
    .pore-cleansing-section .image-content img,
    .pore-cleansing-section .placeholder-image {
        height: 430px;
    }
    
    .pore-cleansing-section .detail-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .pore-cleansing-section {
        padding: 50px 0;
    }
    
    .pore-cleansing-section .content-wrapper {
        padding: 0 15px;
        gap: 30px;
    }
    
    .pore-cleansing-section .section-title {
        font-size: 1.8rem;
    }
    
    .pore-cleansing-section .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .pore-cleansing-section .image-content {
        max-width: 280px;
    }
    
    .pore-cleansing-section .image-content img,
    .pore-cleansing-section .placeholder-image {
        height: 400px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .pore-cleansing-section .image-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(139, 111, 71, 0.25);
    }
}

@media (hover: none) and (pointer: coarse) {
    .pore-cleansing-section .image-content:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .pore-cleansing-section .image-content {
        box-shadow: 0 15px 45px rgba(139, 111, 71, 0.18);
    }
    
    .pore-cleansing-section .section-title,
    .pore-cleansing-section .section-description {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}


/* ===========================================
   リフトアップセクション（料金表形式）
=========================================== */
.lift-up-section {
    padding: 100px 0;
    background-color: rgba(232, 205, 189, 0.4);
    scroll-margin-top: 100px;
}

.lift-up-section .content-wrapper-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.lift-up-section .text-content-pricing {
    padding: 20px 40px 20px 20px;
}

.lift-up-section .section-title {
    font-size: 3rem;
    color: #8b6f47;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 3px;
    font-family: 'Times New Roman', serif;
    line-height: 1.3;
}

.lift-up-section .pricing-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lift-up-section .pricing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

.lift-up-section .pricing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lift-up-section .pricing-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lift-up-section .pricing-label {
    font-size: 1.1rem;
    color: #8b6f47;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.lift-up-section .pricing-amount {
    font-size: 1.2rem;
    color: #333;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.lift-up-section .pricing-btn {
    padding: 10px 35px;
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}

.lift-up-section .pricing-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

.lift-up-section .image-content-pricing {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    max-width: 550px;
}

.lift-up-section .image-content-pricing img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.lift-up-section .image-content-pricing:hover img {
    transform: scale(1.05);
}

.lift-up-section .placeholder-image-pricing {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, #f5e8f0 0%, #f0d4e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* リフトアップセクション - レスポンシブ */
@media (max-width: 1024px) {
    .lift-up-section .content-wrapper-pricing {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .lift-up-section .text-content-pricing {
        order: 2;
        padding: 20px;
        text-align: center;
    }
    
    .lift-up-section .image-content-pricing {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .lift-up-section .section-title {
        font-size: 2.8rem;
        margin-bottom: 50px;
    }
    
    .lift-up-section .pricing-item {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    
    .lift-up-section .pricing-info {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .lift-up-section {
        padding: 60px 0;
    }
    
    .lift-up-section .content-wrapper-pricing {
        gap: 40px;
        padding: 0 20px;
    }
    
    .lift-up-section .text-content-pricing {
        padding: 10px;
    }
    
    .lift-up-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    .lift-up-section .pricing-list {
        gap: 35px;
    }
    
    .lift-up-section .pricing-item {
        padding-bottom: 25px;
    }
    
    .lift-up-section .pricing-label {
        font-size: 1rem;
    }
    
    .lift-up-section .pricing-amount {
        font-size: 1.15rem;
    }
    
    .lift-up-section .pricing-btn {
        padding: 10px 30px;
        font-size: 0.95rem;
        min-width: 90px;
    }
    
    .lift-up-section .image-content-pricing {
        max-width: 450px;
    }
    
    .lift-up-section .image-content-pricing img,
    .lift-up-section .placeholder-image-pricing {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .lift-up-section {
        padding: 50px 0;
    }
    
    .lift-up-section .content-wrapper-pricing {
        padding: 0 15px;
        gap: 30px;
    }
    
    .lift-up-section .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
        letter-spacing: 1.5px;
    }
    
    .lift-up-section .pricing-list {
        gap: 30px;
    }
    
    .lift-up-section .pricing-item {
        padding-bottom: 20px;
    }
    
    .lift-up-section .pricing-label {
        font-size: 0.95rem;
    }
    
    .lift-up-section .pricing-amount {
        font-size: 1.1rem;
    }
    
    .lift-up-section .pricing-btn {
        padding: 8px 25px;
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .lift-up-section .image-content-pricing {
        max-width: 100%;
    }
    
    .lift-up-section .image-content-pricing img,
    .lift-up-section .placeholder-image-pricing {
        height: 380px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .lift-up-section .content-wrapper-pricing {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .lift-up-section .text-content-pricing {
        order: 1;
        text-align: left;
    }
    
    .lift-up-section .image-content-pricing {
        order: 2;
        max-width: none;
    }
    
    .lift-up-section .pricing-item {
        flex-direction: row;
        text-align: left;
    }
    
    .lift-up-section .pricing-info {
        align-items: flex-start;
    }
    
    .lift-up-section .image-content-pricing img,
    .lift-up-section .placeholder-image-pricing {
        height: 450px;
    }
}

@media (max-width: 768px) and (max-height: 500px) and (orientation: landscape) {
    .lift-up-section {
        padding: 40px 0;
    }
    
    .lift-up-section .content-wrapper-pricing {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .lift-up-section .text-content-pricing {
        order: 1;
        text-align: left;
    }
    
    .lift-up-section .image-content-pricing {
        order: 2;
    }
    
    .lift-up-section .pricing-item {
        flex-direction: row;
        text-align: left;
    }
    
    .lift-up-section .pricing-info {
        align-items: flex-start;
    }
    
    .lift-up-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .lift-up-section .pricing-list {
        gap: 25px;
    }
    
    .lift-up-section .pricing-item {
        padding-bottom: 15px;
    }
    
    .lift-up-section .image-content-pricing img,
    .lift-up-section .placeholder-image-pricing {
        height: 350px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .lift-up-section .image-content-pricing:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(139, 111, 71, 0.2);
    }
}

@media (hover: none) and (pointer: coarse) {
    .lift-up-section .image-content-pricing:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .lift-up-section .image-content-pricing {
        box-shadow: 0 15px 45px rgba(139, 111, 71, 0.18);
    }
    
    .lift-up-section .section-title,
    .lift-up-section .pricing-label,
    .lift-up-section .pricing-amount {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}


/* ===========================================
   肌質改善セクション（料金表形式）
=========================================== */
.skin-improvement-section {
    padding: 100px 0;
    background-color: rgba(248, 245, 232, 0.3);
    scroll-margin-top: 100px;
}

.skin-improvement-section .content-wrapper-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.skin-improvement-section .text-content-pricing {
    padding: 20px 40px 20px 20px;
}

.skin-improvement-section .section-title {
    font-size: 3rem;
    color: #8b6f47;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 3px;
    font-family: 'Times New Roman', serif;
    line-height: 1.3;
}

.skin-improvement-section .pricing-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.skin-improvement-section .pricing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

.skin-improvement-section .pricing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.skin-improvement-section .pricing-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skin-improvement-section .pricing-label {
    font-size: 1.1rem;
    color: #8b6f47;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.skin-improvement-section .pricing-amount {
    font-size: 1.2rem;
    color: #333;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.skin-improvement-section .pricing-btn {
    padding: 10px 35px;
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}

.skin-improvement-section .pricing-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

.skin-improvement-section .image-content-pricing {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    max-width: 550px;
}

.skin-improvement-section .image-content-pricing img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.skin-improvement-section .image-content-pricing:hover img {
    transform: scale(1.05);
}

.skin-improvement-section .placeholder-image-pricing {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, #f8f5e8 0%, #f0e8d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 肌質改善セクション - レスポンシブ */
@media (max-width: 1024px) {
    .skin-improvement-section .content-wrapper-pricing {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .skin-improvement-section .text-content-pricing {
        order: 2;
        padding: 20px;
        text-align: center;
    }
    
    .skin-improvement-section .image-content-pricing {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .skin-improvement-section .section-title {
        font-size: 2.8rem;
        margin-bottom: 50px;
    }
    
    .skin-improvement-section .pricing-item {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    
    .skin-improvement-section .pricing-info {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .skin-improvement-section {
        padding: 60px 0;
    }
    
    .skin-improvement-section .content-wrapper-pricing {
        gap: 40px;
        padding: 0 20px;
    }
    
    .skin-improvement-section .text-content-pricing {
        padding: 10px;
    }
    
    .skin-improvement-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    .skin-improvement-section .pricing-list {
        gap: 35px;
    }
    
    .skin-improvement-section .pricing-item {
        padding-bottom: 25px;
    }
    
    .skin-improvement-section .pricing-label {
        font-size: 1rem;
    }
    
    .skin-improvement-section .pricing-amount {
        font-size: 1.15rem;
    }
    
    .skin-improvement-section .pricing-btn {
        padding: 10px 30px;
        font-size: 0.95rem;
        min-width: 90px;
    }
    
    .skin-improvement-section .image-content-pricing {
        max-width: 450px;
    }
    
    .skin-improvement-section .image-content-pricing img,
    .skin-improvement-section .placeholder-image-pricing {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .skin-improvement-section {
        padding: 50px 0;
    }
    
    .skin-improvement-section .content-wrapper-pricing {
        padding: 0 15px;
        gap: 30px;
    }
    
    .skin-improvement-section .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
        letter-spacing: 1.5px;
    }
    
    .skin-improvement-section .pricing-list {
        gap: 30px;
    }
    
    .skin-improvement-section .pricing-item {
        padding-bottom: 20px;
    }
    
    .skin-improvement-section .pricing-label {
        font-size: 0.95rem;
    }
    
    .skin-improvement-section .pricing-amount {
        font-size: 1.1rem;
    }
    
    .skin-improvement-section .pricing-btn {
        padding: 8px 25px;
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .skin-improvement-section .image-content-pricing {
        max-width: 100%;
    }
    
    .skin-improvement-section .image-content-pricing img,
    .skin-improvement-section .placeholder-image-pricing {
        height: 380px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .skin-improvement-section .content-wrapper-pricing {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .skin-improvement-section .image-content-pricing {
        order: 1;
        max-width: none;
    }
    
    .skin-improvement-section .text-content-pricing {
        order: 2;
        text-align: left;
    }
    
    .skin-improvement-section .pricing-item {
        flex-direction: row;
        text-align: left;
    }
    
    .skin-improvement-section .pricing-info {
        align-items: flex-start;
    }
    
    .skin-improvement-section .image-content-pricing img,
    .skin-improvement-section .placeholder-image-pricing {
        height: 450px;
    }
}

@media (max-width: 768px) and (max-height: 500px) and (orientation: landscape) {
    .skin-improvement-section {
        padding: 40px 0;
    }
    
    .skin-improvement-section .content-wrapper-pricing {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .skin-improvement-section .image-content-pricing {
        order: 1;
    }
    
    .skin-improvement-section .text-content-pricing {
        order: 2;
        text-align: left;
    }
    
    .skin-improvement-section .pricing-item {
        flex-direction: row;
        text-align: left;
    }
    
    .skin-improvement-section .pricing-info {
        align-items: flex-start;
    }
    
    .skin-improvement-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .skin-improvement-section .pricing-list {
        gap: 25px;
    }
    
    .skin-improvement-section .pricing-item {
        padding-bottom: 15px;
    }
    
    .skin-improvement-section .image-content-pricing img,
    .skin-improvement-section .placeholder-image-pricing {
        height: 350px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .skin-improvement-section .image-content-pricing:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(139, 111, 71, 0.2);
    }
}

@media (hover: none) and (pointer: coarse) {
    .skin-improvement-section .image-content-pricing:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .skin-improvement-section .image-content-pricing {
        box-shadow: 0 15px 45px rgba(139, 111, 71, 0.18);
    }
    
    .skin-improvement-section .section-title,
    .skin-improvement-section .pricing-label,
    .skin-improvement-section .pricing-amount {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}


/* ===========================================
   リンパマッサージセクション（料金表形式）
=========================================== */
.lymph-massage-section {
    padding: 100px 0;
    background-color: white;
    scroll-margin-top: 100px;
}

.lymph-massage-section .content-wrapper-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.lymph-massage-section .text-content-pricing {
    padding: 20px 40px 20px 20px;
}

.lymph-massage-section .section-title {
    font-size: 3rem;
    color: #8b6f47;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 3px;
    font-family: 'Times New Roman', serif;
    line-height: 1.3;
}

.lymph-massage-section .pricing-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lymph-massage-section .pricing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

.lymph-massage-section .pricing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lymph-massage-section .pricing-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lymph-massage-section .pricing-label {
    font-size: 1.1rem;
    color: #8b6f47;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.lymph-massage-section .pricing-amount {
    font-size: 1.2rem;
    color: #333;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.lymph-massage-section .pricing-btn {
    padding: 10px 35px;
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
}

.lymph-massage-section .pricing-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
}

.lymph-massage-section .image-content-pricing {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    max-width: 550px;
}

.lymph-massage-section .image-content-pricing img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.lymph-massage-section .image-content-pricing:hover img {
    transform: scale(1.05);
}

.lymph-massage-section .placeholder-image-pricing {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, #e8f8f0 0%, #d4f0e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* リンパマッサージセクション - レスポンシブ */
@media (max-width: 1024px) {
    .lymph-massage-section .content-wrapper-pricing {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .lymph-massage-section .text-content-pricing {
        order: 2;
        padding: 20px;
        text-align: center;
    }
    
    .lymph-massage-section .image-content-pricing {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .lymph-massage-section .section-title {
        font-size: 2.8rem;
        margin-bottom: 50px;
    }
    
    .lymph-massage-section .pricing-item {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    
    .lymph-massage-section .pricing-info {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .lymph-massage-section {
        padding: 60px 0;
    }
    
    .lymph-massage-section .content-wrapper-pricing {
        gap: 40px;
        padding: 0 20px;
    }
    
    .lymph-massage-section .text-content-pricing {
        padding: 10px;
    }
    
    .lymph-massage-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    .lymph-massage-section .pricing-list {
        gap: 35px;
    }
    
    .lymph-massage-section .pricing-item {
        padding-bottom: 25px;
    }
    
    .lymph-massage-section .pricing-label {
        font-size: 1rem;
    }
    
    .lymph-massage-section .pricing-amount {
        font-size: 1.15rem;
    }
    
    .lymph-massage-section .pricing-btn {
        padding: 10px 30px;
        font-size: 0.95rem;
        min-width: 90px;
    }
    
    .lymph-massage-section .image-content-pricing {
        max-width: 450px;
    }
    
    .lymph-massage-section .image-content-pricing img,
    .lymph-massage-section .placeholder-image-pricing {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .lymph-massage-section {
        padding: 50px 0;
    }
    
    .lymph-massage-section .content-wrapper-pricing {
        padding: 0 15px;
        gap: 30px;
    }
    
    .lymph-massage-section .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
        letter-spacing: 1.5px;
    }
    
    .lymph-massage-section .pricing-list {
        gap: 30px;
    }
    
    .lymph-massage-section .pricing-item {
        padding-bottom: 20px;
    }
    
    .lymph-massage-section .pricing-label {
        font-size: 0.95rem;
    }
    
    .lymph-massage-section .pricing-amount {
        font-size: 1.1rem;
    }
    
    .lymph-massage-section .pricing-btn {
        padding: 8px 25px;
        font-size: 0.9rem;
        min-width: 80px;
    }
    
    .lymph-massage-section .image-content-pricing {
        max-width: 100%;
    }
    
    .lymph-massage-section .image-content-pricing img,
    .lymph-massage-section .placeholder-image-pricing {
        height: 380px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .lymph-massage-section .content-wrapper-pricing {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .lymph-massage-section .text-content-pricing {
        order: 1;
        text-align: left;
    }
    
    .lymph-massage-section .image-content-pricing {
        order: 2;
        max-width: none;
    }
    
    .lymph-massage-section .pricing-item {
        flex-direction: row;
        text-align: left;
    }
    
    .lymph-massage-section .pricing-info {
        align-items: flex-start;
    }
    
    .lymph-massage-section .image-content-pricing img,
    .lymph-massage-section .placeholder-image-pricing {
        height: 450px;
    }
}

@media (max-width: 768px) and (max-height: 500px) and (orientation: landscape) {
    .lymph-massage-section {
        padding: 40px 0;
    }
    
    .lymph-massage-section .content-wrapper-pricing {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .lymph-massage-section .text-content-pricing {
        order: 1;
        text-align: left;
    }
    
    .lymph-massage-section .image-content-pricing {
        order: 2;
    }
    
    .lymph-massage-section .pricing-item {
        flex-direction: row;
        text-align: left;
    }
    
    .lymph-massage-section .pricing-info {
        align-items: flex-start;
    }
    
    .lymph-massage-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .lymph-massage-section .pricing-list {
        gap: 25px;
    }
    
    .lymph-massage-section .pricing-item {
        padding-bottom: 15px;
    }
    
    .lymph-massage-section .image-content-pricing img,
    .lymph-massage-section .placeholder-image-pricing {
        height: 350px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .lymph-massage-section .image-content-pricing:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(139, 111, 71, 0.2);
    }
}

@media (hover: none) and (pointer: coarse) {
    .lymph-massage-section .image-content-pricing:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .lymph-massage-section .image-content-pricing {
        box-shadow: 0 15px 45px rgba(139, 111, 71, 0.18);
    }
    
    .lymph-massage-section .section-title,
    .lymph-massage-section .pricing-label,
    .lymph-massage-section .pricing-amount {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}


/*===========================================
  スタッフページ
=========================================== */

.staff-page {
    background-color: #f5f0e8;
    min-height: 100vh;
}

/* スタッフヒーローセクション */
.staff-hero-section {
    padding: 120px 0 60px;
    text-align: center;
    background-color: #f5f0e8;
}

.staff-hero-section .page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #2c2c2c;
    margin: 0;
}

/* スタッフグリッドセクション */
.staff-grid-section {
    padding: 60px 0 100px;
    background-color: #f5f0e8;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* スタッフカード（全体のコンテナ） */
.staff-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 60px;
}

/* 画像ラッパー */
.staff-image-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
}

.staff-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

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

.staff-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5e8d4 0%, #e8d4c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
    font-size: 1rem;
}

/* 情報ラッパー（画像の右下に重なる） */
.staff-info-wrapper {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 85%;
    z-index: 2;
}

.staff-info {
    padding: 28px 25px;
    text-align: left;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover .staff-info {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.staff-category {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b6f47;
    margin-bottom: 10px;
}

.staff-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c2c2c;
    margin: 8px 0 12px;
}

.staff-bio {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ホバーエフェクト */
.staff-card:hover .staff-image-wrapper {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

/* レスポンシブ対応 */

/* タブレット（横向き） */
@media (max-width: 1024px) {
    .staff-hero-section .page-title {
        font-size: 3.5rem;
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 55px 35px;
        padding: 0 30px;
    }

    .staff-card {
        padding-bottom: 55px;
    }

    .staff-image {
        height: 420px;
    }

    .staff-info-wrapper {
        bottom: -35px;
        width: 82%;
    }

    .staff-info {
        padding: 25px 22px;
    }
}

/* タブレット（縦向き） */
@media (max-width: 768px) {
    .staff-hero-section {
        padding: 100px 0 40px;
    }

    .staff-hero-section .page-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .staff-grid-section {
        padding: 40px 0 80px;
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 25px;
        padding: 0 20px;
    }

    .staff-card {
        padding-bottom: 50px;
    }

    .staff-image {
        height: 360px;
    }

    .staff-info-wrapper {
        bottom: -30px;
        width: 80%;
    }

    .staff-info {
        padding: 22px 20px;
    }

    .staff-category {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .staff-name {
        font-size: 1.2rem;
        margin: 6px 0 10px;
    }

    .staff-bio {
        font-size: 0.82rem;
        line-height: 1.6;
    }
}

/* スマートフォン */
@media (max-width: 600px) {
    .staff-hero-section {
        padding: 90px 0 35px;
    }

    .staff-hero-section .page-title {
        font-size: 2.8rem;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        gap: 55px;
        padding: 0 25px;
    }

    .staff-card {
        max-width: 450px;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    .staff-image {
        height: 420px;
    }

    .staff-info-wrapper {
        bottom: -35px;
        width: 85%;
    }

    .staff-info {
        padding: 24px 22px;
    }

    .staff-category {
        font-size: 0.75rem;
    }

    .staff-name {
        font-size: 1.35rem;
    }

    .staff-bio {
        font-size: 0.88rem;
        line-height: 1.7;
    }
}

/* 小さなスマートフォン */
@media (max-width: 480px) {
    .staff-hero-section .page-title {
        font-size: 2.5rem;
    }

    .staff-grid {
        padding: 0 20px;
        gap: 50px;
    }

    .staff-card {
        max-width: 400px;
        padding-bottom: 45px;
    }

    .staff-image {
        height: 380px;
    }

    .staff-info-wrapper {
        bottom: -32px;
        width: 83%;
    }

    .staff-info {
        padding: 22px 20px;
    }

    .staff-category {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .staff-name {
        font-size: 1.25rem;
    }

    .staff-bio {
        font-size: 0.82rem;
        line-height: 1.65;
    }
}

/* 極小スマートフォン */
@media (max-width: 380px) {
    .staff-grid {
        padding: 0 15px;
    }

    .staff-card {
        padding-bottom: 40px;
    }

    .staff-image {
        height: 350px;
    }

    .staff-info-wrapper {
        bottom: -30px;
        width: 82%;
    }

    .staff-info {
        padding: 20px 18px;
    }

    .staff-name {
        font-size: 1.2rem;
    }

    .staff-bio {
        font-size: 0.78rem;
        line-height: 1.6;
    }
}



/* ===========================================
   自動整体ページ専用スタイル
=========================================== */

/* ヒーローセクション */
.jidou-hero-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #a89b8c 0%, #b5a795 100%);
    position: relative;
    overflow: hidden;
}

.jidou-hero-section .hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.jidou-hero-section .hero-text-content {
    color: #2c2c2c;
}

.jidou-hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 4px;
    line-height: 1.2;
    color: #2c2c2c;
}

.jidou-hero-section .hero-description {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 50px;
    font-weight: 300;
    color: #2c2c2c;
}

.jidou-hero-section .hero-btn {
    display: inline-block;
    padding: 15px 45px;
    background-color: rgba(140, 120, 100, 0.7);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.jidou-hero-section .hero-btn:hover {
    background-color: rgba(140, 120, 100, 0.9);
    transform: translateY(-2px);
}

/* 画像コンテナ */
.jidou-hero-section .hero-images-container {
    position: relative;
}

/* Relaxテキスト - 左画像の右端上に配置 */
.jidou-hero-section .hero-relax-text {
    position: absolute;
    top: -20px;
    left: calc(40% - 30px);
    font-size: 7rem;
    font-weight: 400;
    color: #2c2c2c;
    letter-spacing: 4px;
    z-index: 3;
    font-family: 'Times New Roman', serif;
    line-height: 1;
}

/* 画像の重なり配置 */
.jidou-hero-section .hero-images-overlap {
    position: relative;
    width: 100%;
    height: 520px;
}

/* 左の画像（マッサージ）- 手前 */
.jidou-hero-section .hero-main-image {
    position: absolute;
    left: 50px;
    bottom: 0;
    width: 50%;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.jidou-hero-section .hero-main-image img,
.jidou-hero-section .placeholder-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 右の画像（花）- 奥、左の画像と同じサイズ、もっと上に */
.jidou-hero-section .hero-secondary-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.jidou-hero-section .hero-secondary-image img,
.jidou-hero-section .placeholder-hero-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jidou-hero-section .placeholder-hero-image,
.jidou-hero-section .placeholder-hero-secondary {
    background: linear-gradient(135deg, #d4c4b0 0%, #c4b4a0 100%);
}

/* 料金セクション */
.jidou-pricing-section {
    padding: 100px 0;
    background-color: #f9f7f5;
}

.jidou-pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.jidou-pricing-section .section-title {
    text-align: center;
    font-size: 3rem;
    color: #8b6f47;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 4px;
    font-family: 'Times New Roman', serif;
}

.jidou-pricing-section .pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.jidou-pricing-section .pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(139, 111, 71, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.jidou-pricing-section .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.2);
}

.jidou-pricing-section .pricing-card.featured {
    background: linear-gradient(135deg, #8b6f47 0%, #a68968 100%);
    color: white;
    transform: scale(1.05);
}

.jidou-pricing-section .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.jidou-pricing-section .pricing-card-header {
    margin-bottom: 30px;
}

.jidou-pricing-section .pricing-category {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.jidou-pricing-section .pricing-card.featured .pricing-category {
    color: white;
}

.jidou-pricing-section .pricing-note {
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
}

.jidou-pricing-section .pricing-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jidou-pricing-section .pricing-amount {
    margin-bottom: 30px;
}

.jidou-pricing-section .price {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    font-family: 'Times New Roman', serif;
}

.jidou-pricing-section .pricing-card.featured .price {
    color: white;
}

.jidou-pricing-section .currency {
    font-size: 1.2rem;
    margin-left: 5px;
}

.jidou-pricing-section .unit {
    font-size: 1rem;
    opacity: 0.7;
    margin-left: 5px;
}

.jidou-pricing-section .pricing-card-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #8b6f47;
    color: #8b6f47;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.jidou-pricing-section .pricing-card-btn:hover {
    background-color: #8b6f47;
    color: white;
    transform: translateY(-2px);
}

.jidou-pricing-section .pricing-card.featured .pricing-card-btn {
    border-color: white;
    color: white;
}

.jidou-pricing-section .pricing-card.featured .pricing-card-btn:hover {
    background-color: white;
    color: #8b6f47;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .jidou-hero-section .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    /* レスポンシブ時は画像を上に */
    .jidou-hero-section .hero-text-content {
        order: 2;
        text-align: center;
    }
    
    .jidou-hero-section .hero-images-container {
        order: 1;
    }
    
    /* Relaxテキスト - 2つの画像の上中央、もっと上に */
    .jidou-hero-section .hero-relax-text {
        font-size: 5.0rem;
        top: -90px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* 画像を左右に並べる */
    .jidou-hero-section .hero-images-overlap {
        display: flex;
        justify-content: center;
        gap: 20px;
        height: 400px;
    }
    
    .jidou-hero-section .hero-main-image {
        position: relative;
        left: 0;
        bottom: auto;
        width: 45%;
        height: 380px;
    }
    
    .jidou-hero-section .hero-secondary-image {
        position: relative;
        right: auto;
        top: auto;
        width: 45%;
        height: 380px;
    }
    
    .jidou-pricing-section .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .jidou-pricing-section .pricing-card.featured {
        transform: scale(1);
    }
    
    .jidou-pricing-section .pricing-card.featured:hover {
        transform: scale(1) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .jidou-hero-section {
        padding: 80px 0 60px;
    }
    
    .jidou-hero-section .hero-content-wrapper {
        padding: 0 20px;
        gap: 50px;
    }
    
    /* レスポンシブ時は画像を上に */
    .jidou-hero-section .hero-text-content {
        order: 2;
        text-align: center;
    }
    
    .jidou-hero-section .hero-images-container {
        order: 1;
    }
    
    .jidou-hero-section .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .jidou-hero-section .hero-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    /* Relaxテキスト - 2つの画像の上中央、もっと上に */
    .jidou-hero-section .hero-relax-text {
        font-size: 4rem;
        top: -65px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* 画像を左右に並べる（スマホ） */
    .jidou-hero-section .hero-images-overlap {
        display: flex;
        justify-content: center;
        gap: 15px;
        height: 320px;
    }
    
    .jidou-hero-section .hero-main-image {
        position: relative;
        left: 0;
        bottom: auto;
        width: 47%;
        height: 300px;
    }
    
    .jidou-hero-section .hero-secondary-image {
        position: relative;
        right: auto;
        top: auto;
        width: 47%;
        height: 300px;
    }
    
    .jidou-pricing-section {
        padding: 60px 0;
    }
    
    .jidou-pricing-section .container {
        padding: 0 20px;
    }
    
    .jidou-pricing-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .jidou-pricing-section .pricing-card {
        padding: 30px 20px;
    }
    
    .jidou-pricing-section .price {
        font-size: 2.8rem;
    }
}



/* ===========================================
   FOOTER STYLES
=========================================== */
.site-footer {
    background-color: #8b6f47;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

/* ===========================================
   RESPONSIVE DESIGN
=========================================== */

/* ハンバーガーメニュー */

/* タブレット表示 */
@media (max-width: 1024px) {
    .desktop-menu {
        gap: 30px;
    }
    
    .desktop-menu a {
        font-size: 16px;
    }
    
    .header-icons {
        gap: 20px;
    }
}

/* スマートフォン表示 */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    /* デスクトップメニューを非表示 */
    .desktop-menu {
        display: none;
    }
    
    /* ハンバーガーボタンを表示 */
    .hamburger-btn {
        display: flex;
    }
    
    .header-icons .line-icon,
    .header-icons .instagram-icon {
        display: none; /* モバイルでは一時的に非表示 */
    }
}

/* 非常に小さな画面 */
@media (max-width: 480px) {
    .mobile-nav-menu a {
        font-size: 18px;
        padding: 12px 15px;
    }
    
    .mobile-nav-menu li {
        margin: 20px 0;
    }
    
    .mobile-menu {
        padding: 70px 15px 15px;
    }
}

@media (max-width: 768px) and (max-height: 500px) {
    .mobile-menu {
        padding: 60px 20px 10px;
        overflow-y: auto; /* スクロール可能にする */
    }
    
    .mobile-nav-menu li {
        margin: 15px 0;
    }
    
    .mobile-nav-menu a {
        padding: 10px 15px;
        font-size: 16px;
    }
}




/* Header Navigation Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 25px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 16px;
    }
    
    .header-icons {
        gap: 20px;
    }
    
    .line-icon, .instagram-icon {
        font-size: 16px;
    }
}

/* Instagram Gallery Responsive */
@media (max-width: 1024px) {
    .instagram-section {
        padding: 80px 0;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding: 0 30px;
    }
    
    .instagram-title {
        font-size: 2.2rem;
    }
    
    .instagram-actions {
        gap: 25px;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 60px 0;
    }
    
    .instagram-header {
        margin-bottom: 40px;
    }
    
    .instagram-title {
        font-size: 2rem;
        letter-spacing: 1px;
        flex-direction: column;
        gap: 10px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .instagram-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }
    
    .instagram-view-btn,
    .instagram-booking-btn {
        width: 250px;
        text-align: center;
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .instagram-section {
        padding: 50px 0;
    }
    
    .instagram-title {
        font-size: 1.8rem;
        gap: 8px;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 15px;
        padding: 0 15px;
    }
    
    .instagram-view-btn,
    .instagram-booking-btn {
        width: 200px;
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}

/* CEO Section Responsive */
@media (max-width: 768px) {
    .ceo-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .ceo-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ceo-image img,
    .ceo-placeholder {
        height: 450px;
    }
    
    .ceo-text {
        order: 2;
        padding: 0;
        text-align: center;
    }
    
    .ceo-title {
        font-size: 2.5rem;
    }
    
    .ceo-signature {
        margin: 20px;       
    }

    .ceo-staff-btn {
        margin: auto;
    }
}

/* Contact Access Responsive */
@media (max-width: 768px) {
    .contact-access-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }
    
    .contact-info {
        order: 2;
        padding: 0;
        text-align: center;
    }
    
    .map-section {
        order: 1;
    }
    
    .contact-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }
    
    .contact-item {
        margin-bottom: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .map-image,
    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-access-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}



