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

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.9;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================
   共通クラス
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #222;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #c06bff);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.highlight {
    background: linear-gradient(transparent 60%, #ffd6e8 60%);
    padding: 0 0.2em;
}

.sp-only {
    display: none;
}

/* ==========================================
   ボタン
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ff6b9d;
    border: 2px solid #ff6b9d;
}

.btn-outline:hover {
    background: #ff6b9d;
    color: #fff;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ==========================================
   ヘッダー
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0.1em;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    position: relative;
}

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

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

.btn-header {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ==========================================
   ヒーローセクション
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.85) 0%, rgba(192, 107, 255, 0.85) 100%);
    z-index: 1;
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    color: #fff;
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #ff6b9d;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 1rem;
    color: #fff;
}

.hero-description {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   USPセクション
   ========================================== */
.usp {
    padding: 4rem 0;
    background: #fff;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.usp-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.usp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffeef5, #f0e7ff);
    border-radius: 50%;
    font-size: 2rem;
    color: #ff6b9d;
    overflow: hidden;
}

.usp-icon i {
    font-size: 2rem;
}

.usp-icon-image {
    background: none;
    padding: 0;
}

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

.usp-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.usp-description {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ==========================================
   お悩みセクション
   ========================================== */
.problems {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffeef5 0%, #f0e7ff 100%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: #333;
}

.problem-item i {
    font-size: 1.5rem;
    color: #ff6b9d;
}

.problems-solution {
    text-align: center;
    font-size: 1.2rem;
    color: #222;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.problems-solution strong {
    color: #ff6b9d;
}

/* ==========================================
   特徴セクション
   ========================================== */
.features {
    padding: 5rem 0;
    background: #fff;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffeef5 0%, #f0e7ff 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item-reverse {
    grid-template-columns: 200px 1fr 80px;
}

.feature-item-reverse .feature-number {
    order: 3;
}

.feature-item-reverse .feature-content {
    order: 2;
}

.feature-item-reverse .feature-image {
    order: 1;
}

.feature-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.feature-description {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

.feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.feature-image i {
    font-size: 4rem;
    color: #ff6b9d;
}

/* ==========================================
   効果セクション
   ========================================== */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffeef5 0%, #f0e7ff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    border-radius: 50%;
    font-size: 2rem;
    color: #fff;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.benefit-description {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ==========================================
   ギャラリーセクション
   ========================================== */
.gallery {
    padding: 5rem 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* ==========================================
   料金セクション
   ========================================== */
.price {
    padding: 5rem 0;
    background: #fff;
}

.price-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin: 3rem 0 2rem;
    color: #222;
    position: relative;
}

.price-section-title::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #c06bff);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.campaign-banner {
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.campaign-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #fff;
}

.campaign-banner-content i {
    font-size: 2rem;
}

.campaign-banner-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.campaign-banner-text {
    font-size: 1.1rem;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

.campaign-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto 4rem;
}

.price-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff6b9d;
}

.price-card-recommend {
    border: 3px solid #ff6b9d;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.recommend-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.price-card-header {
    margin-bottom: 2rem;
}

.price-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}

.price-card-subtitle {
    color: #999;
    font-size: 1rem;
}

.price-card-price {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 1.2rem;
    color: #666;
}

.price-card-features {
    text-align: left;
    margin-bottom: 2rem;
}

.price-card-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 0;
    color: #666;
    font-size: 1.05rem;
}

.price-card-features i {
    color: #ff6b9d;
    font-size: 1.1rem;
}

.price-card-recommend-text {
    background: linear-gradient(135deg, #ffeef5, #f0e7ff);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: left;
}

.price-card-recommend-text p {
    font-weight: 700;
    color: #222;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.price-card-recommend-text ul {
    list-style: none;
    padding: 0;
}

.price-card-recommend-text ul li {
    color: #666;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.price-card-recommend-text ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: 700;
}

.price-card .btn {
    margin-top: auto;
}

.price-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ==========================================
   体験の流れ
   ========================================== */
.flow {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffeef5 0%, #f0e7ff 100%);
}

.flow-list {
    max-width: 600px;
    margin: 0 auto;
}

.flow-item {
    position: relative;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.flow-step {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.flow-icon {
    width: 80px;
    height: 80px;
    margin: 1rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffeef5, #f0e7ff);
    border-radius: 50%;
    font-size: 2.5rem;
    color: #ff6b9d;
}

.flow-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.flow-description {
    text-align: center;
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

.flow-arrow {
    text-align: center;
    font-size: 2rem;
    color: #ff6b9d;
    margin: 1rem 0;
}

.flow-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* ==========================================
   お客様の声
   ========================================== */
.voice {
    padding: 5rem 0;
    background: #fff;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.voice-card {
    padding: 2rem;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff6b9d;
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.voice-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffeef5, #f0e7ff);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #ff6b9d;
}

.voice-name {
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}

.voice-rating {
    color: #ffc107;
}

.voice-text {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ==========================================
   CTAセクション
   ========================================== */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    color: #fff;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-campaign {
    margin-bottom: 2rem;
}

.cta-campaign-text {
    font-size: 1.3rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
}

.cta-campaign-text i {
    font-size: 1.5rem;
}

.cta-campaign-text strong {
    font-size: 1.5rem;
}

.btn-cta {
    background: #fff;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.btn-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.cta-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
}

.btn-contact {
    background: rgba(255, 255, 255, 0.95);
    color: #ff6b9d;
    border: 2px solid rgba(255, 255, 255, 0.95);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-contact:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* ==========================================
   FAQ
   ========================================== */
.faq {
    padding: 5rem 0;
    background: #fff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b9d;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #ffeef5, #f0e7ff);
    font-weight: 700;
    color: #222;
    cursor: pointer;
}

.faq-question i {
    color: #ff6b9d;
    font-size: 1.5rem;
}

.faq-answer {
    padding: 1.5rem 2rem;
    background: #fff;
    color: #666;
    line-height: 1.8;
}

/* ==========================================
   店舗一覧
   ========================================== */
.shops {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffeef5 0%, #f0e7ff 100%);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.shop-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.2);
}

.shop-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.shop-card-header i {
    color: #ff6b9d;
    font-size: 1.5rem;
}

.shop-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.shop-address {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    padding-left: 2.3rem;
    line-height: 1.7;
    flex: 1;
}

.shop-detail-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ==========================================
   店舗詳細モーダル
   ========================================== */
.shop-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.shop-modal.active {
    display: flex;
}

.shop-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.shop-modal-content {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.3s ease;
}

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

.shop-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.shop-modal-close:hover {
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.shop-modal-body {
    padding: 2.5rem;
}

.shop-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #f0f0f0;
}

.shop-modal-header i {
    color: #ff6b9d;
    font-size: 2rem;
}

.shop-modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.shop-modal-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.shop-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.shop-info-item > i {
    color: #ff6b9d;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.shop-info-item > div {
    flex: 1;
}

.shop-info-label {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.shop-info-value {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
}

.shop-info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b9d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-info-link:hover {
    color: #c06bff;
    gap: 0.8rem;
}

.shop-modal-actions {
    display: flex;
    justify-content: center;
}

.shop-modal-actions .btn {
    min-width: 250px;
}

/* ==========================================
   フッター
   ========================================== */
.footer {
    background: #222;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-sub {
    font-size: 0.9rem;
    color: #999;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-nav a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff6b9d;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.footer-contact-link i {
    font-size: 1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ==========================================
   トップへ戻るボタン
   ========================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #ff6b9d;
    border: 2px solid #ff6b9d;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    color: #fff;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* ==========================================
   追従体験予約バナー
   ========================================== */
.fixed-cta-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b9d, #c06bff);
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.fixed-cta-banner.show {
    transform: translateY(0);
}

.fixed-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.fixed-cta-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.fixed-cta-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.fixed-cta-title {
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.btn-fixed-cta {
    background: #fff;
    color: #ff6b9d;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-fixed-cta:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ==========================================
   レスポンシブデザイン - タブレット
   ========================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .usp-grid,
    .benefits-grid,
    .voice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item,
    .feature-item-reverse {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .feature-image {
        display: none;
    }

    .price-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 2rem;
    }

    .price-grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav ul {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==========================================
   レスポンシブデザイン - スマホ
   ========================================== */
@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }

    .sp-only {
        display: inline;
    }

    /* ヘッダー */
    .header-content {
        padding: 0.8rem 0;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        padding: 1.5rem 0;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .btn-header {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    /* ヒーロー */
    .hero {
        min-height: 500px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title-sub {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .campaign-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    /* USP */
    .usp {
        padding: 3rem 0;
    }

    .usp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* お悩み */
    .problems {
        padding: 3rem 0;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .problems-solution {
        font-size: 1rem;
        padding: 1.5rem;
    }

    /* 特徴 */
    .features {
        padding: 3rem 0;
    }

    .usp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* お悩み */
    .problems {
        padding: 3rem 0;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .problems-solution {
        font-size: 1rem;
        padding: 1.5rem;
    }

    /* 特徴 */
    .features {
        padding: 3rem 0;
    }

    .feature-item,
    .feature-item-reverse {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .feature-number {
        font-size: 2rem;
        text-align: center;
    }

    .feature-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .feature-description {
        text-align: center;
    }

    /* 効果 */
    .benefits {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* ギャラリー */
    .gallery {
        padding: 3rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* 料金 */
    .price {
        padding: 3rem 0;
    }

    .campaign-banner {
        padding: 1rem 1.5rem;
    }

    .campaign-banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .campaign-banner-title {
        font-size: 1rem;
    }

    .campaign-banner-text {
        font-size: 0.95rem;
    }

    /* 体験の流れ */
    .flow {
        padding: 3rem 0;
    }

    /* お客様の声 */
    .voice {
        padding: 3rem 0;
    }

    .voice-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-campaign-text {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .cta-phone {
        font-size: 1.5rem;
    }

    /* FAQ */
    .faq {
        padding: 3rem 0;
    }

    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    /* 店舗一覧 */
    .shops {
        padding: 2rem 0 3rem;
    }

    .shops-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .shop-card {
        padding: 1.5rem;
        min-height: 200px;
    }

    .shop-name {
        font-size: 1.1rem;
    }

    .shop-address {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .shop-detail-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }

    /* 店舗詳細モーダル */
    .shop-modal-content {
        width: 95%;
        max-width: none;
        margin: 1rem;
    }

    .shop-modal-title {
        font-size: 1.3rem;
    }

    .shop-info-label {
        font-size: 0.85rem;
    }

    .shop-info-value {
        font-size: 0.9rem;
    }

    .shop-modal-actions .btn {
        font-size: 0.95rem;
    }

    /* フッター */
    .footer {
        padding: 2rem 0 1rem;
    }

    /* トップへ戻るボタン */
    .scroll-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* 追従バナー */
    .fixed-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 0.5rem 20px;
    }

    .fixed-cta-text {
        flex-direction: column;
        gap: 0.5rem;
    }

    .fixed-cta-badge {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }

    .fixed-cta-title {
        font-size: 1rem;
    }

    .btn-fixed-cta {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }

    /* セクション共通 */
    section {
        padding: 3rem 0 !important;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}