/* ==========================================================================
   Fairytale Special Room Styles
   アンティークでお洒落な部屋専用スタイル
   ========================================================================== */

/* Fairytale Header Modern - モダンヴィンテージデザイン */
.fairytale-header-modern {
    background: linear-gradient(135deg, #f5f3f0 0%, #ebe7e2 50%, #e8e4df 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.fairytale-header-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(193, 127, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.fairytale-header-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 109, 82, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.fairytale-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fairytale-label {
    display: inline-block;
    background: linear-gradient(135deg, #c17f59 0%, #8b6d52 100%);
    color: #ffffff;
    padding: 0.5rem 1.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.fairytale-hero-title {
    font-size: 2.6rem;
    font-weight: 400;
    color: #3d3d3d;
    margin-bottom: 1.2rem;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 4px;
}

.fairytale-hero-subtitle {
    font-size: 1rem;
    color: #6b6b6b;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.fairytale-hero-tags {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #5a5a5a;
    padding: 0.6rem 1rem;
    border: 1px solid #c9c4be;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.hero-tag:hover {
    background: #3d3d3d;
    color: #ffffff;
    border-color: #3d3d3d;
}

.hero-tag i {
    font-size: 0.8rem;
    color: #c17f59;
}

.hero-tag:hover i {
    color: #ffffff;
}

@media (max-width: 768px) {
    .fairytale-hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .fairytale-hero-tags {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}

/* Gallery Caption Special - モダンヴィンテージ */
.gallery-caption-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-caption.special {
    background: #3d3d3d;
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 0;
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 400;
}

/* ギャラリーセクション背景を白に */
section.property-gallery {
    background: #ffffff;
}

/* Fairytale Gallery - 5枚用グリッド */
.property-gallery .gallery-thumbnails {
    grid-template-columns: repeat(5, 1fr);
}

/* 縦型・横型対応ギャラリー */
.property-gallery .gallery-main {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
}

.property-gallery .gallery-main .image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    max-height: 600px;
    background: #ffffff;
}

.property-gallery .gallery-main .gallery-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    display: none;
}

.property-gallery .gallery-main .gallery-image.active {
    display: block;
}

/* Fairytale Appeal Section - モダンヴィンテージ */
.fairytale-appeal-section {
    padding: 5rem 0;
    background: #faf9f7;
}

.section-title.fairytale-style .title-main {
    color: #3d3d3d;
    background: none;
    -webkit-text-fill-color: #3d3d3d;
    font-weight: 400;
    letter-spacing: 3px;
}

.section-title.fairytale-style .title-sub {
    color: #c17f59;
    letter-spacing: 2px;
}

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

.appeal-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #e5e2dd;
    transition: all 0.3s ease;
    position: relative;
}

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

.appeal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: transparent;
    border: 2px solid #c17f59;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #c17f59;
    position: relative;
    z-index: 2;
}

.appeal-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #3d3d3d;
    margin-bottom: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.appeal-description {
    font-size: 0.9rem;
    color: #6b6b6b;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

/* Recommend Section - モダンヴィンテージ */
.recommend-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.recommend-card {
    background: #faf9f7;
    padding: 2.5rem 2rem;
    text-align: center;
    border: none;
    border-bottom: 3px solid #c17f59;
    transition: all 0.3s ease;
}

.recommend-card:hover {
    background: #f5f3f0;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.recommend-emoji {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.recommend-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #3d3d3d;
    margin-bottom: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 1px;
}

.recommend-description {
    font-size: 0.85rem;
    color: #6b6b6b;
    line-height: 1.9;
}

/* Special Room Notice - モダンヴィンテージ */
.special-room-notice {
    background: #faf9f7;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    border: 1px solid #e5e2dd;
    border-left: 4px solid #c17f59;
    text-align: left;
    margin-bottom: 2.5rem;
    position: relative;
}

.special-room-notice::before {
    content: '';
    display: none;
}

.special-room-notice i {
    font-size: 1.5rem;
    color: #c17f59;
    margin-bottom: 0.8rem;
    display: block;
}

.special-room-notice p {
    font-size: 1rem;
    color: #6b6b6b;
    margin: 0;
    line-height: 1.8;
}

.special-room-notice strong {
    color: #3d3d3d;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Special Category - モダンヴィンテージ */
.special-category {
    background: #faf9f7;
    border: 1px solid #e5e2dd;
    border-top: 3px solid #c17f59;
}

.special-category .category-title {
    color: #3d3d3d;
}

.special-category .category-title i {
    color: #c17f59;
}

/* Plus Alpha Modern - モダンでシンプルなデザイン */
.plus-alpha-modern {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    margin-top: 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.plus-alpha-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.plus-alpha-badge {
    background: #1a2b4a;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.plus-alpha-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.plus-alpha-items {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.plus-alpha-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #555555;
    font-size: 0.95rem;
}

.plus-alpha-item i {
    color: #1a2b4a;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.plus-alpha-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a2b4a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border: 1px solid #1a2b4a;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.plus-alpha-link:hover {
    background: #1a2b4a;
    color: #ffffff;
}

.plus-alpha-link i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .plus-alpha-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .plus-alpha-items {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Access & Surrounding Section - モダンヴィンテージ */
.access-surrounding-section {
    padding: 5rem 0;
    background: #f5f3f0;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.quick-info-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e5e2dd;
    transition: all 0.3s ease;
}

.quick-info-card:hover {
    border-color: #c17f59;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.quick-info-card i {
    font-size: 2rem;
    color: #c17f59;
    margin-bottom: 1rem;
}

.quick-info-card h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #3d3d3d;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.quick-info-card p {
    font-size: 0.85rem;
    color: #6b6b6b;
    margin: 0;
}

.quick-info-card a {
    color: #8b6d52;
    text-decoration: none;
    border-bottom: 1px solid #c17f59;
    transition: all 0.2s ease;
}

.quick-info-card a:hover {
    color: #c17f59;
}

/* Voice Section - モダンヴィンテージ */
.voice-section {
    padding: 5rem 0;
    background: #faf9f7;
}

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

.voice-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e2dd;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.voice-card:hover {
    border-color: #c17f59;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0eeea;
}

.voice-avatar {
    width: 50px;
    height: 50px;
    background: #c17f59;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.voice-info {
    flex: 1;
}

.voice-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 0.3rem;
}

.voice-rating {
    color: #c17f59;
    font-size: 0.85rem;
}

.voice-text {
    font-size: 0.9rem;
    color: #6b6b6b;
    line-height: 1.9;
    font-style: normal;
}

/* Fairytale CTA - モダンヴィンテージ */
.fairytale-cta {
    background: #f5f3f0;
}

.special-notice {
    background: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    border: 1px solid #e5e2dd;
    border-left: 4px solid #c17f59;
    margin-bottom: 2.5rem;
    text-align: left;
}

.special-notice i {
    font-size: 1.5rem;
    color: #c17f59;
    margin-bottom: 0.8rem;
    display: block;
}

.special-notice p {
    font-size: 0.95rem;
    color: #6b6b6b;
    line-height: 1.8;
    margin: 0;
}

.special-notice strong {
    color: #3d3d3d;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .appeal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recommend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .voice-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fairytale-header {
        padding: 3rem 0;
    }
    
    .fairytale-title {
        font-size: 2rem;
    }
    
    .fairytale-stars {
        font-size: 1.2rem;
        gap: 0.8rem;
    }
    
    .appeal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .appeal-card {
        padding: 2.5rem 2rem;
    }
    
    .recommend-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .special-room-notice {
        padding: 2rem;
    }
    
    .special-room-notice i {
        font-size: 2.5rem;
    }
    
    .plus-alpha-notice {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .fairytale-title {
        font-size: 1.8rem;
    }
    
    .property-badge.special {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }
    
    .appeal-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .appeal-title {
        font-size: 1.3rem;
    }
    
    .recommend-emoji {
        font-size: 3rem;
    }
    
    .recommend-title {
        font-size: 1.1rem;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .special-notice {
        padding: 1.5rem;
    }
    
    .special-notice i {
        font-size: 2rem;
    }
}