/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本スタイル */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

/* パーティクル背景 */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.particle.pink {
    background: rgba(255, 182, 193, 0.6);
    box-shadow: 0 0 10px rgba(255, 182, 193, 0.4);
}

.particle.purple {
    background: rgba(221, 160, 221, 0.6);
    box-shadow: 0 0 10px rgba(221, 160, 221, 0.4);
}

.particle.blue {
    background: rgba(173, 216, 230, 0.6);
    box-shadow: 0 0 10px rgba(173, 216, 230, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ナビゲーション */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 28px;
    width: auto;
    filter: brightness(1.2);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #8b4f6b;
}

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

.nav-link {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FFD700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* セクション共通 */
.section {
    padding: 100px 0;
    position: relative;
}

.section.bg-light {
    background: rgba(248, 249, 250, 0.8);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #8b4f6b;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ヒーローセクション */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
}

/* パララックス背景 */
.hero-bg-enhanced {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1) saturate(1.2);
}

/* 動的グラデーションオーバーレイ */
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

/* 浮遊パーティクル効果 */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.gold-particle {
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFED4E);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    animation: floatGold 6s ease-in-out infinite;
}

.silver-particle {
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #C0C0C0, #E8E8E8, #F5F5F5);
    box-shadow: 0 0 6px rgba(192, 192, 192, 0.5);
    animation: floatSilver 8s ease-in-out infinite;
}

@keyframes floatGold {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(0.5) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-60px) translateX(8px) scale(1.2) rotate(180deg);
        opacity: 0.7;
    }
}

@keyframes floatSilver {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(0.8) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-40px) translateX(-6px) scale(1.1) rotate(360deg);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-main {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    }
    to {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin: 30px 0 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* サロンセクション - 白背景、パーティクルなし */
#salon {
    background: #ffffff;
}

/* プロデュースセクション - 白背景、パーティクルなし */
#produce {
    background: #ffffff;
}

/* サロンセクション */
.salon-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.salon-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8b4f6b;
    margin-bottom: 30px;
}

.salon-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.salon-intro-text .english-text {
    color: #777;
    font-style: italic;
}

.salon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.salon-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8b4f6b;
    margin-bottom: 30px;
    text-align: center;
}

.salon-work-description {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.work-essence, .international-work {
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.work-essence h4, .international-work h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8b4f6b;
    margin-bottom: 20px;
}

.work-essence p, .international-work p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.english-text {
    color: #777;
    font-style: italic;
    font-size: 0.95rem;
}

/* ギャラリー */
.salon-gallery {
    position: relative;
}

.gallery-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-image.active {
    opacity: 1;
}

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

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.gallery-btn {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    border: 3px solid transparent;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.gallery-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.gallery-btn.active {
    border-color: #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.gallery-btn.active img {
    opacity: 1;
}

.gallery-btn:hover img {
    opacity: 0.9;
}

/* 受賞歴セクション */
.awards-section {
    background: #333;
    color: white;
    padding: 40px;
    margin: 60px 0;
    border-radius: 15px;
}

.awards-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.award-item {
    text-align: center;
    padding: 20px;
}

.award-year {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
}

.award-title {
    font-size: 1rem;
    margin-bottom: 8px;
}

.award-english {
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
}

/* サロン情報セクション */
.salon-info {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.salon-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
}

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

.info-item {
    text-align: center;
    padding: 15px;
}

.info-item h5 {
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.info-item p {
    font-size: 0.85rem;
    color: #ddd;
    line-height: 1.4;
}

.line-booking {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 20px;
}

.line-booking p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

.line-btn {
    display: inline-block;
    background: #06C755;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.line-btn:hover {
    background: #05a048;
    transform: translateY(-2px);
}

/* コンサルティングセクション */
.consulting-title, .consulting-title-en {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.salon-coach-title {
    font-size: 1.4rem;
    color: #FFD700;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.consulting-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.consulting-subtitle p {
    color: #666;
    margin-bottom: 5px;
}

.consulting-overview {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    text-align: center;
}

.consulting-overview h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b4f6b;
    margin-bottom: 20px;
}

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

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #8b4f6b;
    margin-bottom: 15px;
}

.consulting-programs {
    margin-bottom: 40px;
}

.consulting-programs h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.program-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #8b4f6b;
    margin-bottom: 10px;
}

.program-purpose {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.program-item li {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.program-item li:before {
    content: "•";
    color: #FFD700;
    position: absolute;
    left: 0;
}

.consulting-benefits {
    margin-bottom: 40px;
}

.consulting-benefits h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.benefit-item h5 {
    font-weight: 600;
    color: #8b4f6b;
    margin-bottom: 10px;
}

.consulting-pricing {
    margin-bottom: 40px;
}

.consulting-pricing h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #FFD700;
    text-align: center;
}

.price-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.price-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

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

.discount {
    font-size: 0.8rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.price-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.price-item li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.price-item li:before {
    content: "✓";
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.consulting-flow {
    background: #333;
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.consulting-flow h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.flow-step {
    text-align: center;
}

.flow-step .step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #FFD700;
    color: #333;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.flow-step h5 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.flow-step p {
    font-size: 0.85rem;
    color: #ccc;
}

/* プロデュースセクション */
.produce-title, .produce-title-en {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.produce-program-title {
    font-size: 1.2rem;
    color: #FFD700;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.produce-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.produce-subtitle p {
    color: #666;
    margin-bottom: 5px;
}

.produce-overview {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.produce-overview h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b4f6b;
    text-align: center;
    margin-bottom: 20px;
}

.produce-overview-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
}

.service-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #8b4f6b;
    margin-bottom: 15px;
}

.service-feature p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.produce-flow {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.produce-flow h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b4f6b;
    text-align: center;
    margin-bottom: 30px;
}

.produce-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.produce-step {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.produce-step .step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #FFD700;
    color: #333;
    border-radius: 50%;
    line-height: 40px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.produce-step h5 {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #333;
}

.produce-step p {
    font-size: 0.8rem;
    color: #666;
}

.produce-target {
    background: #333;
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.produce-target h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
}

.target-audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.target-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.target-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* プロフィールセクション */
.profile-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.profile-image {
    text-align: center;
}

.profile-image img {
    width: 100%;
    height: 514px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profile-text {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.profile-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: 600;
}

.profile-description p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    background: #333;
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: white;
}

.profile-activities {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.activity-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.activity-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b4f6b;
    margin-bottom: 10px;
    text-align: center;
}

.english-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.activity-section ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.activity-section li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.activity-section li:before {
    content: "•";
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.international-activities p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* お問い合わせセクション */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.contact-item h4 {
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.salon-location h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 30px;
}

.salon-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.salon-info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.salon-note {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 15px;
}

.salon-address {
    font-size: 1rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.5;
}

.salon-details p {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 8px;
}

.salon-details strong {
    color: #FFD700;
    font-weight: 600;
}

.visit-note {
    text-align: center;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.visit-note p {
    font-size: 0.85rem;
    color: #ccc;
    margin: 0;
}



/* お問い合わせセクションの背景色を調整 */
#contact {
    background: #333;
    color: white;
}

/* フッター */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-text {
    color: #ccc;
    font-size: 0.9rem;
}

/* アニメーション */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .hero-content,
    .salon-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title-main {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .consulting-steps {
        grid-template-columns: 1fr;
    }
    
    .produce-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        gap: 40px;
        grid-template-columns: 1fr;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .profile-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .salon-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .profile-image img {
        width: 250px;
        height: 250px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}