/* =============================================
   リセットと基本設定
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C8B7E6;
    --accent-color: #A7C7E7;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-light: #e0e0e0;
    --hover-opacity: 0.9;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 80px;
    --mobile-header-height: 60px;
}

/* SVG Sprite Hidden */
.svg-sprite-hidden {
    display: none;
}

.sp-br {
    display: none;
}

.pc-br {
    display: block;
}

.sp-only {
    display: none;
}

.pc-only {
    display: block;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    background: var(--bg-white);
    overflow-x: hidden;
}

/* =============================================
   スクロールアニメーション
   ============================================= */

/* アニメーション用の基本クラス */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* フェードイン */
.fade-in {
    opacity: 0;
}

.fade-in.animated {
    animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* スライドイン（左から） */
.slide-in-left {
    opacity: 0;
    transform: translateX(-80px);
}

.slide-in-left.animated {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-80px);
        opacity: 0;
    }
    40%, 100% {
        opacity: 1;
    }
    100% {
        transform: translateX(0);
    }
}

/* スライドイン（右から） */
.slide-in-right {
    opacity: 0;
    transform: translateX(80px);
}

.slide-in-right.animated {
    animation: slideInRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInRight {
    0% {
        transform: translateX(80px);
        opacity: 0;
    }
    40%, 100% {
        opacity: 1;
    }
    100% {
        transform: translateX(0);
    }
}

/* スライドイン（下から） */
.slide-in-up {
    opacity: 0;
    transform: translateY(60px);
}

.slide-in-up.animated {
    animation: slideInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInUp {
    0% {
        transform: translateY(60px);
        opacity: 0;
    }
    40%, 100% {
        opacity: 1;
    }
    100% {
        transform: translateY(0);
    }
}

/* ズームイン */
.zoom-in {
    opacity: 0;
    transform: scale(0.8);
}

.zoom-in.animated {
    animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* バウンス */
.bounce-in {
    opacity: 0;
    transform: translateY(60px) scale(0.3);
}

.bounce-in.animated {
    animation: bounceIn 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes bounceIn {
    0% {
        transform: translateY(60px) scale(0.3);
        opacity: 0;
    }
    60% {
        transform: translateY(-18px) scale(1.05);
        opacity: 1;
    }
    80% {
        transform: translateY(6px) scale(0.98);
    }
    100% {
        transform: translateY(0) scale(1.0);
        opacity: 1;
    }
}

/* 回転フェードイン */
.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.8);
}

.rotate-in.animated {
    animation: rotateIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes rotateIn {
    0% {
        transform: rotate(-10deg) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

/* スケールバウンス */
.scale-bounce {
    opacity: 0;
    transform: scale(0.5);
}

.scale-bounce.animated {
    animation: scaleBounce 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes scaleBounce {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* アニメーション遅延クラス */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* ぷよぷよアニメーション */
.poyoyon {
    opacity: 0;
    transform: translateX(-140px);
}

.poyoyon.animated {
    animation: poyoyon 0.6s cubic-bezier(0.12, 0, 0.39, 0) forwards;
}

@keyframes poyoyon {
    0% {
        transform: translateX(-140px);
        opacity: 0;
    }
    50% {
        transform: translateX(0);
    }
    65% {
        transform: translateX(-30px);
    }
    100% {
        transform: translateX(0);
    }
    20%, 100% {
        opacity: 1;
    }
}

/* キラーンエフェクト（ホバー時） */
.kiran-effect {
    position: relative;
    overflow: hidden;
}

.kiran-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.kiran-effect:hover::before {
    left: 100%;
}

/* アニメーションボーダー */
.animated-border {
    position: relative;
}

.animated-border::before,
.animated-border::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animated-border::before {
    top: 0;
    right: 0;
    width: 0;
    height: 2px;
}

.animated-border::after {
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
}

.animated-border.animated::before,
.animated-border.animated::after {
    width: calc(100% - 10px);
}

/* ウェーブアニメーション */
.wave-animation {
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* パルスアニメーション */
.pulse-subtle {
    animation: pulseSubtle 2s ease-in-out infinite;
}

@keyframes pulseSubtle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.95;
    }
}

/* グローエフェクト */
.glow-on-hover {
    position: relative;
    transition: all 0.3s ease;
}

.glow-on-hover:hover {
    filter: brightness(1.1);
}

/* 3D回転ホバー */
.hover-3d {
    transition: transform 0.3s ease;
}

.hover-3d:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.02);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    opacity: var(--hover-opacity);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   ヘッダー
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: -15px;
    letter-spacing: 0.2em;
}

/* ナビゲーション */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    display: block;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* ドロップダウンメニュー */
.has-dropdown {
    position: relative;
}

.dropdown-menu,
.dropdown-mega {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 15px;
    min-width: 200px;
    padding: 10px 0;
}

.dropdown-mega {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 600px;
    padding: 30px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:hover .dropdown-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .dropdown-mega {
    transform: translateX(-50%) translateY(0);
}

.dropdown-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dropdown-column {
    padding: 0 15px;
}

.dropdown-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.dropdown-list {
    list-style: none;
}

.dropdown-list li {
    margin-bottom: 8px;
}

.dropdown-list a {
    font-size: 13px;
    color: var(--text-dark);
    display: block;
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
}

.dropdown-list a:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 11px;
}

.dropdown-list a:hover {
    color: var(--accent-color);
    padding-left: 20px;
}

/* CTAボタン */
.header-cta {
    display: flex;
    gap: 15px;
}

.cta-btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cta-line {
    background: #06C755;
    color: #fff;
    border-color: #06C755;
}

.cta-tel {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.cta-tel:hover {
    background: var(--accent-color);
    color: white;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* =============================================
   ヒーローセクション
   ============================================= */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    margin-top: var(--header-height);
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(60, 40, 100, 0.75) 0%, 
        rgba(40, 60, 100, 0.7) 50%,
        rgba(60, 80, 120, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    backdrop-filter: blur(2px);
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 0.03em;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: white;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 3px 16px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ヒーローCTA内ボタンを等幅に */
.hero-cta .btn {
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
    word-break: keep-all;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
}

/* ボタンスタイル */
.btn {
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 8px;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

/* キラーンエフェクト */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    z-index: 1;
}

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

.btn span,
.btn svg {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* =============================================
   原因を知るセクション
   ============================================= */
.question-section {
    padding: 100px 0;
    background: white;
}

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

.question-text {
    padding-right: 20px;
}

.question-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    opacity: 0.7;
    text-transform: lowercase;
    transition: var(--transition);
}

.question-title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.question-text:hover .question-title {
    color: var(--primary-color);
}

.question-description {
    font-size: 16px;
    line-height: 2;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.question-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: var(--transition);
}

.question-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* =============================================
   独自開発リフティングマシンセクション
   ============================================= */
.feature-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: var(--transition);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.feature-text {
    padding-left: 20px;
}

.feature-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    opacity: 0.7;
    text-transform: lowercase;
    transition: var(--transition);
}

.feature-title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.feature-text:hover .feature-title {
    color: var(--primary-color);
}

.feature-description {
    font-size: 16px;
    line-height: 2;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    margin-bottom: 40px;
}

.feature-highlight {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.feature-highlight:hover {
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}

.highlight-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.highlight-detail {
    font-size: 14px;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.highlight-credit {
    font-size: 13px;
    color: var(--text-light);
    text-align: right;
    margin-bottom: 0;
}

/* =============================================
   悩みカテゴリーセクション
   ============================================= */
.concerns {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    position: relative;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-top: -30px;
    margin-bottom: 40px;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.concern-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    transform: translateY(0);
    display: flex;
    flex-direction: column; /* 高さ揃え */
    height: 100%;
}

.concern-card:nth-child(2) {
    margin-top: 0;
}

.concern-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.concern-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.concern-card:hover .concern-image img {
    transform: scale(1.1);
}

.concern-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(200, 183, 230, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.concern-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1; /* 本文を伸ばす */
}

.concern-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.concern-link {
    color: var(--accent-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    margin-top: auto; /* ボタンを下に寄せる */
}

.concern-link:hover {
    gap: 10px;
}

.concern-caption {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #E0E0E0;
}

/* =============================================
   原因セクション（たるみ・ニキビ共通）
   ============================================= */
.causes,
.acne-causes {
    padding: 80px 0;
    background: white;
}

/* 原因リスト */
.causes-list {
    max-width: 1000px;
    margin: 50px auto 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.cause-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    align-items: flex-start;
    height: 100%;
}

.cause-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.cause-content {
    flex: 1;
}

.cause-item-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.cause-item-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* ニキビセクション専用：テキスト高さ統一 */
.acne-causes .cause-item-text {
    min-height: 108px; /* 4行分の高さ（15px × 1.8 × 4行） */
    display: flex;
    align-items: flex-start;
}

.cause-item-recommend {
    font-size: 14px;
    color: #347AC0;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

/* 個別設定用クラス */
.cause-recommend-1 {
    height: 42px; /* ボワールリフティング（2行） */
}

.cause-recommend-2 {
    height: 63px; /* ホワイトハーブピーリング（3行） */
    margin-top: 42px; /* 上に余白を追加 */
}

.cause-recommend-3 {
    height: 63px; /* ボワールリフティング（3行） */
}

.cause-recommend-4 {
    height: 42px; /* ホームケアプログラム（2行） */
}

/* ニキビセクション用個別設定 */
.acne-recommend-1 {
    /* 皮脂の過剰分泌 */
}

.acne-recommend-2 {
    /* 肌のターンオーバーの乱れ */
    margin-top: 67px; /* 上に余白を追加 */
}

.acne-recommend-3 {
    /* 菌バランスの乱れ */
    margin-top: 46px; /* 上に余白を追加 */
}

.acne-recommend-4 {
    /* ホルモンバランス・ストレス */
}

/* まとめセクション */
.causes-summary {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.8) 100%), 
        url('img/backimage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    text-align: center;
}

.summary-icon {
    margin-bottom: 15px;
    color: #347AC0;
}

.summary-icon svg {
    display: inline-block;
}

.summary-title {
    font-size: 35px;
    font-weight: 700;
    color: #8A68C9;
    margin-bottom: 20px;
}

.summary-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.summary-message {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* =============================================
   施術比較セクション
   ============================================= */
.comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(200, 183, 230, 0.05) 0%, 
        rgba(167, 199, 231, 0.05) 100%);
    position: relative;
}

.comparison-wrapper {
    position: relative;
}

.comparison-bg {
    display: none;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: stretch; /* 高さ揃え */
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 25px 35px 35px;
    border: 2px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column; /* 高さ揃え */
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    z-index: 0;
}

.comparison-card > * {
    position: relative;
    z-index: 1;
}

.comparison-left { 
    transform: none;
    background-image: url('img/カード背景１.png');
}

.comparison-left::before {
    background: rgba(255, 255, 255, 0.5);
}

.comparison-center { 
    transform: none;
    background-image: url('img/カード背景4.png');
}

.comparison-center::before {
    background: rgba(255, 255, 255, 0.5);
}

.comparison-right { 
    transform: none; 
    grid-column: 1 / -1; /* 2列にまたがる */
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    background-image: url('img/カード背景5.png');
}

.comparison-right::before {
    background: rgba(255, 255, 255, 0.9);
}

.comparison-card:hover {
    transform: rotate(0) scale(1.02);
    border-color: var(--primary-color);
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.comparison-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-badge {
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.comparison-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.comparison-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.comparison-item p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.comparison-item.price .price-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.comparison-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px 30px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: 600;
    margin-top: auto;
    transition: var(--transition);
}

.comparison-btn:hover {
    transform: translateY(-2px);
}

/* =============================================
   Before/Afterセクション
   ============================================= */
.before-after {
    padding: 80px 0;
    background: white;
}

.ba-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.ba-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--border-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.ba-arrow:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.ba-arrow-prev {
    left: -70px;
}

.ba-arrow-next {
    right: -70px;
}

.ba-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.ba-slide.active {
    display: block;
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ba-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.ba-container img {
    width: 100%;
    height: auto;
}

.ba-slide:nth-child(3) .ba-container img {
    width: 70%;
    margin: 0 auto;
    display: block;
}

.ba-labels {
    display: none;
}

.ba-label-before,
.ba-label-after {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

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

.ba-label-after {
    color: var(--primary-color);
}

.ba-info {
    margin-top: 30px;
    text-align: center;
}

.ba-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.ba-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.ba-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.ba-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.ba-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* =============================================
   料金セクション
   ============================================= */
.price {
    padding: 80px 0;
    background: var(--bg-light);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column; /* 高さ揃え */
    transform-style: preserve-3d;
}

.price-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px -8px rgba(200, 183, 230, 0.25);
}

.price-header {
    background: linear-gradient(135deg, 
        rgba(200, 183, 230, 0.1) 0%, 
        rgba(167, 199, 231, 0.1) 100%);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* タイトルとバッジを同一行に固定 */
.price-header-inline {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.price-header-inline .price-title {
    display: inline-block;
    font-size: 16px;
    white-space: nowrap;
    letter-spacing: 0;
}

.price-header-inline .price-badge {
    white-space: nowrap;
    flex-shrink: 0;
}

.price-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(200, 183, 230, 0.2);
    padding: 6px 16px;
    border-radius: 9999px;
    letter-spacing: 0.08em;
}

.price-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.price-badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.price-badge-new {
    background: var(--accent-color);
}

.price-body {
    padding: 30px;
    flex: 1; /* 高さ揃え：本文を伸縮 */
}

.price-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: left;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.price-item-trial {
    background: linear-gradient(135deg, 
        rgba(200, 183, 230, 0.15) 0%, 
        rgba(167, 199, 231, 0.15) 100%);
    border: 2px solid var(--primary-color);
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.price-course {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.course-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.course-discount {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.course-discount strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.course-example {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
}

.course-example strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.course-highlight {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-top: 20px;
}

.course-highlight-header {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(200, 183, 230, 0.6);
    margin-bottom: 18px;
}

.course-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary-color);
}

.course-highlight-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.08em;
}

.course-highlight-lead {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0 0 18px 0;
}

.course-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.course-highlight-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(200, 183, 230, 0.5);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 10px 25px -18px rgba(150, 120, 200, 0.6);
}

.course-highlight-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 9999px;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.course-highlight-badge-accent {
    background: linear-gradient(135deg, #f6a4c9, #d66ad2);
}

.course-highlight-badge-soft {
    background: linear-gradient(135deg, rgba(255, 210, 165, 0.9), rgba(255, 170, 120, 0.9));
}

.course-highlight-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
}

.course-note {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 0;
}

/* ピーリングメニューセクション */
.peeling-menu {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px dashed var(--border-light);
}

.peeling-menu:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.peeling-menu-light {
    background: linear-gradient(135deg, 
        rgba(200, 183, 230, 0.05) 0%, 
        rgba(167, 199, 231, 0.05) 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.peeling-menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.peeling-menu-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.peeling-subtitle {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

/* コースリスト */
.course-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.course-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 15px;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.course-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.course-discount-badge {
    font-size: 11px;
    font-weight: 700;
    color: white;
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
}

.course-detail {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.course-detail strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

/* 全幅表示の料金カード */
.price-card-fullwidth,
.price-card-homecare {
    grid-column: 1 / -1;
    max-width: 100%;
}

.price-card-homecare .homecare-intro {
    display: block;
}

.homecare-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin: 10px 0 0 0;
    letter-spacing: 0.05em;
}

.homecare-intro {
    margin-bottom: 30px;
}

.homecare-intro p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 18px;
    text-align: left;
}

.homecare-intro p:last-child {
    margin-bottom: 0;
}

.homecare-program {
    background: linear-gradient(135deg, 
        rgba(200, 183, 230, 0.08) 0%, 
        rgba(167, 199, 231, 0.08) 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.homecare-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.homecare-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0 0 20px 0;
}

.homecare-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 15px 15px 15px 50px;
    margin-bottom: 12px;
    background: white;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
}

.homecare-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.homecare-note-highlight {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.homecare-note-highlight strong {
    color: var(--primary-color);
    font-size: 15px;
}

.homecare-pricing {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.homecare-pricing-subtitle {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin: -10px 0 20px 0;
}

.homecare-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.homecare-price-table th,
.homecare-price-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.homecare-price-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.homecare-price-table td {
    color: var(--text-dark);
}

.homecare-price-table tr:last-child td {
    border-bottom: none;
}

.homecare-price-table .price-discount {
    color: #d32f2f;
    font-weight: 600;
}

.homecare-price-table .price-total-row {
    background: linear-gradient(135deg, 
        rgba(200, 183, 230, 0.1) 0%, 
        rgba(167, 199, 231, 0.1) 100%);
}

.homecare-price-table .price-total-row td {
    font-size: 16px;
    padding: 15px;
}

.homecare-price-table .price-total-row strong {
    color: var(--primary-color);
}

.homecare-notes {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.homecare-notes p {
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 8px 0;
    text-align: left;
}

.homecare-notes p:last-child {
    margin-bottom: 0;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 25px;
}

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

.price-tax {
    font-size: 14px;
    color: var(--text-light);
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.price-option {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.option-label {
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.price-features {
    list-style: none;
    margin-bottom: 25px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-tickets {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.ticket-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ticket-list {
    list-style: none;
}

.ticket-list li {
    font-size: 13px;
    color: var(--text-dark);
    padding: 5px 0;
}

.price-note {
    margin-top: 20px;
}

.price-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.price-btn {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 25px;
    padding: 14px 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.price-btn:hover {
    transform: translateY(-2px);
}

/* =============================================
   施術の流れ
   ============================================= */
.flow {
    padding: 80px 0;
    background: white;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}

.flow-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.flow-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.flow-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.flow-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.flow-image {
    margin-top: 15px;
    border-radius: 10px;
    max-height: 120px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.flow-arrow {
    position: absolute;
    top: 40px;
    width: 60px;
    height: 2px;
    background: var(--border-light);
}

/* 矢印を各ステップの間に配置 */
.flow-steps {
    position: relative;
}

.flow-steps > .flow-arrow {
    position: absolute;
    top: 40px;
    width: 60px;
    height: 2px;
    background: var(--border-light);
    transform: translateX(-50%);
}

/* 01→02の矢印 */
.flow-steps > .flow-arrow:nth-child(2) { left: 25%; }
/* 02→03の矢印 */
.flow-steps > .flow-arrow:nth-child(4) { left: 50%; }
/* 03→04の矢印 */
.flow-steps > .flow-arrow:nth-child(6) { left: 75%; }

.flow-arrow::after {
    content: "";
    position: absolute;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--border-light);
    border-right: 2px solid var(--border-light);
    transform: rotate(45deg);
}

/* =============================================
   よくある質問
   ============================================= */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* =============================================
   信頼性セクション
   ============================================= */
.trust {
    padding: 60px 0;
    background: linear-gradient(135deg, 
        rgba(200, 183, 230, 0.08) 0%, 
        rgba(167, 199, 231, 0.08) 100%);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    transition: var(--transition);
}

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

.trust-icon {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.trust-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trust-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

/* =============================================
   アクセス
   ============================================= */
.access {
    padding: 60px 0 120px 0;
    background: white;
    position: relative;
}

.access-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    opacity: 0.3;
}

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

.access-content {
    display: flex;
    gap: 40px;
    margin-top: 0;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
    flex: 1 1 0;
}

.access-item {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.access-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.access-item p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.8;
}

.access-item:last-child {
    margin-top: auto;
}

.access-item a {
    color: var(--accent-color);
    font-weight: 500;
}

.access-note {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.access-map {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-height: 100%;
}

.access-map iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
}

.access-map-summary {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.access-map-summary p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* =============================================
   CTAセクション
   ============================================= */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-align: center;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

.btn-icon {
    font-size: 20px;
    vertical-align: middle;
    flex-shrink: 0;
    display: inline-block;
    width: 1em;
    height: 1em;
}

/* SVGアイコンの高さ揃え */
.btn svg,
.cta-btn svg {
    display: block;
}

/* =============================================
   フッター
   ============================================= */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

/* LINE公式カラー適用（全ページ共通） */
a[href*="lin.ee"],
a[href*="line.me"],
a[href^="line://"],
.social-link[href*="lin.ee"] {
    background: #06C755 !important;
    border-color: #06C755 !important;
    color: #fff !important;
}

/* テキストリンク型のLINE（フッター等） */
.footer .social-link[href*="lin.ee"] {
    background: transparent !important;
    color: #06C755 !important;
    border-color: #06C755 !important;
    font-weight: 700;
}

/* Instagram公式カラー適用 */
.social-link[href*="instagram.com"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: #e1306c !important;
    color: #fff !important;
    font-weight: 700;
}

/* TikTok公式カラー適用 */
.social-link[href*="tiktok.com"] {
    background: #000000 !important;
    border-color: #ff0050 !important;
    color: #fff !important;
    font-weight: 700;
}

.mobile-sticky-bar a[href*="lin.ee"] {
    background: #06C755 !important;
    color: #fff !important;
    border-color: #06C755 !important;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* =============================================
   モバイル固定バー
   ============================================= */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-light);
    z-index: 999;
    padding: 10px;
}

.mobile-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    background: white;
    transition: var(--transition);
}

.mobile-btn:first-child {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.mobile-btn:last-child {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.mobile-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: var(--primary-color);
}

/* =============================================
   アニメーション
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   施術詳細セクション
   ============================================= */
.service-detail {
    padding: 80px 0;
    background: white;
}

.service-detail-alt {
    background: var(--bg-light);
}

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

.service-hero {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
}

.service-hero img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.service-intro {
    text-align: center;
    margin-bottom: 50px;
}

.service-intro h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-features {
    margin-bottom: 50px;
}

.service-features h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
}

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

/* おすすめ 2×2 固定 */
.feature-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    text-align: center;
}

.feature-item:hover {
    transform: translateX(10px);
    background: white;
    border: 1px solid var(--accent-color);
}

.feature-icon {
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-process {
    margin-bottom: 50px;
}

.service-process h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.process-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.process-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.service-detail-alt .process-list li {
    background: var(--bg-light);
}

.process-list strong {
    color: var(--primary-color);
}

.service-options {
    margin-bottom: 50px;
}

.service-options h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.option-card {
    padding: 30px;
    background: white;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

/* ボワールリフティングの料金カード内で説明文を下寄せ */
#voil-lifting .option-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#voil-lifting .option-card p:last-of-type {
    margin-top: auto;
    color: var(--text-light);
}

/* ホワイトハーブピーリングの期待できる効果をオプションカードと同じ幅に */
#herb-peeling .feature-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

#herb-peeling .feature-item {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    padding: 15px 30px;
    text-align: center;
    transition: var(--transition);
}

/* ボワールリフティングのこんな方におすすめをオプションカードと同じ幅に */
#voil-lifting .feature-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

#voil-lifting .feature-item {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    padding: 15px 30px;
    text-align: center;
    transition: var(--transition);
}

#herb-peeling .feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: white;
}

/* ホワイトハーブピーリングの期待できる効果の文字を大きくする */
#herb-peeling .service-features .feature-item p {
    font-size: 16px;
    font-weight: 500;
}

/* ボワールリフティングセクションのボタン横幅を揃える */
#voil-lifting .service-cta .btn {
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
}

/* ホワイトハーブピーリングセクションのボタン横幅を揃える */
#herb-peeling .service-cta .btn {
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
}

/* 初めての方へセクションのボタン横幅を揃える */
#first .service-cta .btn {
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
}

/* ホームケアセットセクションのボタン横幅を少し大きくする */
#homecare .service-cta .btn {
    min-width: 400px;
    text-align: center;
}

/* まずは無料相談からセクションのボタン横幅を揃える */
.cta-section .cta-buttons .btn {
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
}

/* ホームケアセクションのセット内容とボタンの間にスペースを追加 */
#homecare .homecare-features {
    margin-bottom: 60px;
}

/* 施術前後の画像表示 */
.service-before-after {
    margin-bottom: 50px;
}

.service-before-after h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.before-after-notes {
    text-align: center;
    margin-top: 20px;
}

.before-after-notes p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.before-after-notes p:last-child {
    margin-bottom: 0;
}

.before-after-item {
    position: relative;
}

.before-after-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-light);
    height: 500px;
}

.before-after-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.before-after-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(200, 183, 230, 0.95);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.option-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.option-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 700px; /* 価格カードと同じ幅に揃える */
    margin: 0 auto;   /* 中央寄せ */
}

/* ホームケアセクション */
.homecare-content {
    max-width: 1000px;
    margin: 0 auto;
}

.homecare-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.homecare-intro img {
    width: 100%;
    border-radius: 15px;
}

.homecare-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.homecare-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.homecare-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.homecare-price .price-label {
    font-size: 14px;
    color: var(--text-light);
}

.homecare-price .price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.homecare-features h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.homecare-features .feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.homecare-features .feature-item {
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    display: block; /* サービス用の.flex継承を無効化して縦積みに */
    text-align: left;
    min-height: 120px;
}

.homecare-features .feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.homecare-features .feature-item p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* お悩み別詳細セクション（カードグリッド） */
.concern-cards-section {
    padding: 80px 0;
    background: linear-gradient(rgba(200, 183, 230, 0.1), rgba(167, 199, 231, 0.1)), 
                url('img/10_bg_access_hachioji_sky_21x9.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.concern-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.concern-detail-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.concern-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.concern-card-header {
    padding: 25px 25px 0;
}

.concern-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.concern-card-content {
    padding: 15px 25px;
}

.concern-card-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0;
}

.concern-card-menu {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 12px;
    margin-bottom: 0;
}

.concern-card-footer {
    padding: 0 25px 25px;
    margin-top: 15px;
}

.concern-card-footer .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
}

/* お悩み別ケア - リスト形式 */
.concern-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.concern-list-item {
    background: white;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.concern-list-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.concern-number-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
}

.concern-list-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.concern-list-menu {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0;
}

/* 初めての方へセクション */
.first-visit {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(200, 183, 230, 0.05) 0%, 
        rgba(167, 199, 231, 0.05) 100%);
}

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

.first-message {
    margin-bottom: 60px;
}

.first-message h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.message-box {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
}

.message-image {
    width: 100%;
    border-radius: 15px;
}

.message-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.message-signature {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

/* サロンに込めた想い */
.salon-philosophy {
    margin-bottom: 60px;
}

.salon-philosophy h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.philosophy-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(200, 183, 230, 0.08) 0%, 
        rgba(167, 199, 231, 0.08) 100%);
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.philosophy-box:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.philosophy-box p {
    font-size: 16px;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.philosophy-box p:last-child {
    margin-bottom: 0;
}

.philosophy-box strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(transparent 60%, rgba(200, 183, 230, 0.3) 60%);
    padding: 2px 4px;
}

.first-policy {
    margin-bottom: 50px;
}

.first-policy h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

    .policy-item {
        padding: 30px;
        background: white;
        border-radius: 15px;
        text-align: center;
    }

.policy-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.policy-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.first-guarantee {
    margin-bottom: 50px;
}

.first-guarantee h3 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.guarantee-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.guarantee-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    color: var(--text-dark);
}

.guarantee-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

.guarantee-list li:last-child {
    border-bottom: none;
}

/* お客様の声セクション */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column; /* 高さ揃え */
}

.testimonial-card:nth-child(odd) {
    transform: none;
}

.testimonial-card:nth-child(even) {
    transform: none;
}

.testimonial-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: white;
    border: 2px solid var(--primary-color);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-stars {
    display: inline-flex;
    gap: 2px;
    color: #FFD700;
}

.testimonial-age {
    font-size: 13px;
    color: var(--text-light);
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 0;
    flex: 1; /* 本文を伸ばして高さ調整 */
}

.testimonial-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.testimonial-menu .testimonial-stars {
    gap: 2px;
    color: #FFD700;
}

/* =============================================
   メディアクエリ
   ============================================= */
@media (max-width: 768px) {
    .sp-br {
        display: block;
    }

    .pc-br {
        display: none;
    }

    .sp-only {
        display: inline-flex;
    }

    .pc-only {
        display: none;
    }

    /* ヘッダー */
    .header {
        height: var(--mobile-header-height);
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--mobile-header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--mobile-header-height));
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-link {
        padding: 15px 10px;
        font-size: 16px;
    }
    
    .dropdown-menu,
    .dropdown-mega {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0;
        padding: 0 20px 10px;
        background: var(--bg-light);
        border: none;
        border-radius: 0;
    }
    
    .dropdown-mega {
        width: 100%;
    }
    
    .dropdown-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .header-cta {
        width: 100%;
        margin-top: 30px;
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
    }
    
    .hamburger {
        display: block;
    }
    
    /* ヒーローセクション */
    .hero {
        margin-top: var(--mobile-header-height);
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-sub {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
    }
    
    /* 原因を知るセクション */
    .question-section {
        padding: 60px 0;
    }
    
    .question-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .question-text {
        padding-right: 0;
    }
    
    .question-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .question-description {
        font-size: 15px;
        line-height: 1.9;
    }
    
    /* 独自開発リフティングマシンセクション */
    .feature-section {
        padding: 60px 0;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    
    .feature-image {
        order: 2;
    }
    
    .feature-text {
        order: 1;
        padding-left: 0;
    }
    
    .feature-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .feature-description {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 30px;
    }
    
    .feature-highlight {
        padding: 25px;
    }
    
    .highlight-text {
        font-size: 15px;
    }
    
    .highlight-detail {
        font-size: 13px;
    }
    
    .highlight-credit {
        font-size: 12px;
    }
    
    /* 悩みカテゴリー */
    .concerns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .concern-card {
        padding: 20px;
    }

    .concern-image {
        height: 200px;
        border-radius: 12px;
    }

    .concern-content {
        padding: 20px 0 0;
    }

    .concern-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .concern-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .concern-card:nth-child(2) {
        margin-top: 0;
    }
    
    /* 原因セクション */
    .causes-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cause-item {
        flex-direction: column;
        padding: 25px;
        gap: 15px;
    }
    
    .cause-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .cause-item-title {
        font-size: 18px;
    }
    
    .cause-item-text {
        font-size: 14px;
        min-height: auto !important;
        margin-bottom: 10px;
    }

    .cause-item-recommend {
        margin-top: 0 !important;
        height: auto !important;
    }
    
    .causes-summary {
        padding: 30px 20px;
    }
    
    .summary-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .summary-title {
        font-size: 20px;
    }
    
    .summary-text {
        font-size: 14px;
    }
    
    .summary-message {
        font-size: 13px;
    }
    
    /* 施術比較 */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-left,
    .comparison-center,
    .comparison-right {
        transform: none;
        margin-top: 0;
        grid-column: 1;
        max-width: 100%;
    }

    .comparison-title {
        font-size: 16px;
        white-space: nowrap;
    }

    .comparison-header {
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    /* 料金 */
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .price-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-subtitle {
        font-size: 13px;
    }
    
    .price-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 15px;
    }
    
    .price-course {
        padding: 15px;
    }
    
    .course-title {
        font-size: 14px;
    }
    
    .course-discount {
        font-size: 13px;
    }
    
    .course-example {
        font-size: 13px;
    }
    
    .course-note {
        font-size: 11px;
    }
    
    .course-highlight {
        padding: 0;
        margin-top: 18px;
    }
    
    .course-highlight-header {
        margin-bottom: 14px;
    }
    
    .course-highlight-lead {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .course-highlight-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    /* ピーリングメニュー */
    .peeling-menu {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .peeling-menu-light {
        padding: 15px;
    }
    
    .peeling-menu-title {
        font-size: 16px;
    }
    
    .peeling-subtitle {
        font-size: 12px;
    }
    
    .course-list {
        gap: 10px;
        margin: 15px 0;
    }
    
    .course-item {
        padding: 12px;
    }
    
    .course-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .course-name {
        font-size: 14px;
    }
    
    .course-discount-badge {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .course-detail {
        font-size: 13px;
    }
    
    .course-detail strong {
        font-size: 15px;
    }
    
    /* 全幅表示の料金カード */
    .price-card-fullwidth,
    .price-card-homecare {
        grid-column: 1;
    }
    
    .homecare-subtitle {
        font-size: 14px;
    }
    
    .homecare-intro p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .homecare-program {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .homecare-section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .homecare-steps li {
        padding: 12px 12px 12px 45px;
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .homecare-steps li::before {
        width: 26px;
        height: 26px;
        font-size: 13px;
        left: 12px;
    }
    
    .homecare-note-highlight {
        font-size: 13px;
        padding: 12px;
    }
    
    .homecare-note-highlight strong {
        font-size: 14px;
    }
    
    .homecare-pricing {
        padding: 20px;
    }
    
    .homecare-pricing-subtitle {
        font-size: 12px;
        margin: -8px 0 15px 0;
    }
    
    .homecare-price-table th,
    .homecare-price-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .homecare-price-table .price-total-row td {
        font-size: 15px;
        padding: 12px;
    }
    
    .homecare-notes {
        padding: 12px;
    }
    
    .homecare-notes p {
        font-size: 11px;
    }
    
    /* 施術の流れ */
    .flow {
        padding: 60px 0;
    }
    
    .flow-steps {
        flex-direction: column !important;
        gap: 0;
        position: relative;
        display: flex;
        align-items: stretch;
        max-width: 100%;
        margin: 30px auto 0;
    }
    
    .flow-step {
        flex: none !important;
        width: 100% !important;
        position: relative;
        padding: 30px 20px !important;
        background: white;
        border-radius: 15px;
        margin-bottom: 25px;
        margin-left: 0;
        margin-right: 0;
        border-left: 4px solid var(--accent-color);
        min-height: 200px;
        max-height: none;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
        box-sizing: border-box;
    }
    
    .flow-step::before {
        position: absolute;
        top: 15px;
        right: 20px;
        background: var(--accent-color);
        color: white;
        padding: 6px 16px;
        border-radius: 15px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.05em;
    }
    
    .flow-step:nth-of-type(1)::before {
        content: "STEP 01";
    }
    
    .flow-step:nth-of-type(2)::before {
        content: "STEP 02";
    }
    
    .flow-step:nth-of-type(3)::before {
        content: "STEP 03";
    }
    
    .flow-step:nth-of-type(4)::before {
        content: "STEP 04";
    }
    
    .flow-icon {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        min-height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
        margin: 0 auto 20px !important;
        flex-shrink: 0 !important;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
    }
    
    .flow-icon svg {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0 !important;
    }
    
    .flow-title {
        font-size: 20px !important;
        font-weight: 700 !important;
        margin: 0 0 12px 0 !important;
        padding: 0 !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }
    
    .flow-text {
        font-size: 14px !important;
        line-height: 1.8 !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .flow-arrow {
        display: none;
    }
    
    /* 信頼性 */
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-item {
        padding: 25px 15px;
    }
    
    .trust-title {
        font-size: 14px;
    }
    
    .trust-value {
        font-size: 18px;
    }
    
    /* アクセス */
    .access-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .access-info {
        padding-bottom: 20px;
    }
    
    .access-item:last-child {
        margin-top: 0;
    }
    
    .access-map {
        min-height: 300px;
    }
    
    .access-map iframe {
        min-height: 300px;
    }
    
    /* フッター */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* モバイル固定バー */
    .mobile-sticky-bar {
        display: flex;
    }
    
    /* 施術詳細セクション */
    .service-detail,
    .service-detail-alt {
        padding: 30px 0;
    }
    
    .service-intro h3 {
        font-size: 20px;
    }

    .service-intro p {
        text-align: left;
    }
    
    .feature-grid,
    .feature-grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .option-cards {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    /* ホームケア */
    .homecare-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .homecare-features .feature-list {
        grid-template-columns: 1fr;
    }
    
    /* 初めての方へ */
    /* 初めての方へセクション */
    .first-visit {
        padding: 30px 0;
    }

    .message-box {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .salon-philosophy h3 {
        font-size: 20px;
    }
    
    .philosophy-box {
        padding: 30px 20px;
        text-align: left;
    }
    
    .philosophy-box p {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 20px;
    }
    
    .philosophy-box strong {
        font-size: 16px;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .policy-item {
        text-align: left;
    }
    
    /* お客様の声 */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card:nth-child(odd),
    .testimonial-card:nth-child(even) {
        transform: none;
    }
    
    /* お悩み別カード */
    .concern-cards-section {
        padding: 30px 0;
    }

    .concern-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* お悩み別ケア - リスト */
    .concern-list-item {
        padding: 20px;
    }
    
    .concern-list-title {
        font-size: 16px;
    }
    
    .concern-number-circle {
        min-width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .concern-list-text {
        font-size: 14px;
    }
    
    /* 施術前後の画像 */
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .before-after-image-wrapper {
        height: 400px;
    }
    
    /* Before/Afterスライダーの矢印 */
    .ba-arrow {
        width: 40px;
        height: 40px;
    }
    
    .ba-arrow-prev {
        left: 10px;
    }
    
    .ba-arrow-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    /* タイトル調整 */
    .hero-title {
        font-size: 28px;
        white-space: nowrap !important;
    }
    
    .hero-title .title-line {
        font-size: clamp(24px, 7vw, 28px);
        white-space: nowrap !important;
        display: block !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* サロンに込めた想い */
    .salon-philosophy h3 {
        font-size: 18px;
    }
    
    .philosophy-box {
        padding: 25px 15px;
    }
    
    .philosophy-box p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .philosophy-box strong {
        font-size: 15px;
    }
    
    /* 原因を知るセクション */
    .question-section {
        padding: 50px 0;
    }
    
    .question-title {
        font-size: 22px;
    }
    
    .question-description {
        font-size: 14px;
    }
    
    /* 独自開発リフティングマシンセクション */
    .feature-section {
        padding: 50px 0;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .feature-highlight {
        padding: 20px;
    }
    
    .highlight-text {
        font-size: 14px;
    }
    
    .highlight-detail {
        font-size: 13px;
    }
    
    /* パディング調整 */
    section {
        padding: 30px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* カードの調整 */
    .concern-card,
    .cause-card,
    .price-card {
        padding: 20px;
    }
    
    /* 料金カードの詳細調整 */
    .price-description {
        font-size: 13px;
    }
    
    .price-item {
        padding: 10px 12px;
    }
    
    .price-label {
        font-size: 13px;
    }
    
    .price-value {
        font-size: 24px;
    }
    
    .price-course {
        padding: 12px;
    }
    
    .course-title {
        font-size: 13px;
    }
    
    .course-discount {
        font-size: 12px;
    }
    
    .course-example {
        font-size: 12px;
    }
    
    .course-note {
        font-size: 10px;
    }
    
    /* ピーリングメニュー（小型スマホ） */
    .peeling-menu {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .peeling-menu-light {
        padding: 12px;
    }
    
    .peeling-menu-title {
        font-size: 15px;
    }
    
    .peeling-subtitle {
        font-size: 11px;
    }
    
    .peeling-menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .course-list {
        gap: 8px;
        margin: 12px 0;
    }
    
    .course-item {
        padding: 10px;
    }
    
    .course-name {
        font-size: 13px;
    }
    
    .course-discount-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .course-detail {
        font-size: 12px;
    }
    
    .course-detail strong {
        font-size: 14px;
    }
    
    .course-highlight {
        padding: 0;
    }
    
    .course-highlight-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 8px 12px;
    }
    
    .course-highlight-icon {
        font-size: 10px;
    }
    
    .course-highlight-title {
        font-size: 12px;
    }
    
    .course-highlight-lead {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .course-highlight-grid {
        gap: 10px;
    }
    
    .course-highlight-item {
        padding: 12px;
    }
    
    .course-highlight-badge {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .course-highlight-item p {
        font-size: 12px;
    }
    
    /* ホームケア応援プログラム（小型スマホ） */
    .homecare-subtitle {
        font-size: 13px;
    }
    
    .homecare-intro p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .homecare-program {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .homecare-section-title {
        font-size: 15px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .homecare-steps li {
        padding: 10px 10px 10px 40px;
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .homecare-steps li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
        left: 10px;
    }
    
    .homecare-note-highlight {
        font-size: 12px;
        padding: 10px;
    }
    
    .homecare-note-highlight strong {
        font-size: 13px;
    }
    
    .homecare-pricing {
        padding: 15px;
    }
    
    .homecare-pricing-subtitle {
        font-size: 11px;
        margin: -6px 0 12px 0;
    }
    
    .homecare-price-table th,
    .homecare-price-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .homecare-price-table .price-total-row td {
        font-size: 14px;
        padding: 10px;
    }
    
    .homecare-notes {
        padding: 10px;
    }
    
    .homecare-notes p {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .homecare-price .price-value {
        font-size: 18px;
    }
    
    /* 施術の流れ */
    .flow-step {
        padding: 25px 15px !important;
        margin-bottom: 20px !important;
        min-height: 180px !important;
        width: 100% !important;
        flex: none !important;
    }
    
    .flow-step::before {
        top: 12px !important;
        right: 15px !important;
        font-size: 11px !important;
        padding: 5px 14px !important;
    }
    
    .flow-icon {
        width: 70px !important;
        height: 70px !important;
        min-width: 70px !important;
        min-height: 70px !important;
        max-width: 70px !important;
        max-height: 70px !important;
        margin: 0 auto 15px !important;
    }
    
    .flow-icon svg {
        width: 28px !important;
        height: 28px !important;
        flex-shrink: 0 !important;
    }
    
    .flow-title {
        font-size: 18px !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
        line-height: 1.4 !important;
    }
    
    .flow-text {
        font-size: 13px !important;
        line-height: 1.7 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* ボタンサイズ調整 */
    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    /* 信頼性セクション */
    .trust-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-item {
        padding: 20px 15px;
    }
    
    .trust-title {
        font-size: 13px;
    }
    
    .trust-value {
        font-size: 16px;
    }
    
    /* 施術前後の画像 */
    .before-after-image-wrapper {
        height: 300px;
    }

    .before-after-notes {
        text-align: left;
    }
    
    /* Before/Afterスライダーの矢印 */
    .ba-arrow {
        width: 35px;
        height: 35px;
    }
    
    .ba-arrow svg {
        width: 18px;
        height: 18px;
    }
}
