/* Instagram Sans Fonts */
@font-face {
    font-family: 'Instagram Sans Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Instagram Sans Regular'), url('fonts/Instagram Sans.woff') format('woff');
}

@font-face {
    font-family: 'Instagram Sans Light';
    font-style: normal;
    font-weight: normal;
    src: local('Instagram Sans Light'), url('fonts/Instagram Sans Light.woff') format('woff');
}

@font-face {
    font-family: 'Instagram Sans Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Instagram Sans Medium'), url('fonts/Instagram Sans Medium.woff') format('woff');
}

@font-face {
    font-family: 'Instagram Sans Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Instagram Sans Bold'), url('fonts/Instagram Sans Bold.woff') format('woff');
}

@font-face {
    font-family: 'Instagram Sans Headline Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Instagram Sans Headline Regular'), url('fonts/Instagram Sans Headline.woff') format('woff');
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.6);
    }
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #231815 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"><defs><pattern id="damask" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><g opacity="0.08"><path d="M25,5 C35,5 40,15 40,25 C40,35 35,45 25,45 C15,45 10,35 10,25 C10,15 15,5 25,5 Z M25,12 C20,12 17,18 17,25 C17,32 20,38 25,38 C30,38 33,32 33,25 C33,18 30,12 25,12 Z" fill="none" stroke="%23d4af37" stroke-width="0.8"/><circle cx="10" cy="25" r="2.5" fill="%23d4af37"/><circle cx="40" cy="25" r="2.5" fill="%23d4af37"/><path d="M25,2 L27,8 L25,8 L23,8 Z" fill="%23d4af37"/><path d="M25,42 L27,48 L25,48 L23,48 Z" fill="%23d4af37"/></g></pattern></defs><rect width="100" height="100" fill="url(%23damask)"/></svg>') repeat;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: #231815 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"><defs><pattern id="hero-damask" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><g opacity="0.08"><path d="M25,5 C35,5 40,15 40,25 C40,35 35,45 25,45 C15,45 10,35 10,25 C10,15 15,5 25,5 Z M25,12 C20,12 17,18 17,25 C17,32 20,38 25,38 C30,38 33,32 33,25 C33,18 30,12 25,12 Z" fill="none" stroke="%23d4af37" stroke-width="0.8"/><circle cx="10" cy="25" r="2.5" fill="%23d4af37"/><circle cx="40" cy="25" r="2.5" fill="%23d4af37"/><path d="M25,2 L27,8 L25,8 L23,8 Z" fill="%23d4af37"/><path d="M25,42 L27,48 L25,48 L23,48 Z" fill="%23d4af37"/></g></pattern></defs><rect width="100" height="100" fill="url(%23hero-damask)"/></svg>') repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/attached_assets/20160425-142410-1-scaled-2_1750253675093.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroImageFadeIn 6s ease-out 6s both;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: heroImageFadeIn 6s ease-out 6s both;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.125em;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 2.8s both;
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 3.6s both;
}
.news-content {
    font-size: 0.9em;
}
/* Responsive Hero Text */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    .hero-subtitle {
        font-size: 2.25rem;
    }
    .hero-description {
        font-size: 1.25rem;
    }
}

/* Information & SNS Section */
.info-section {
    padding: 4rem 0;
    background: #2a1f1b url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120"><defs><pattern id="section-damask" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><g opacity="0.06"><path d="M30,6 C42,6 48,18 48,30 C48,42 42,54 30,54 C18,54 12,42 12,30 C12,18 18,6 30,6 Z M30,15 C24,15 21,22 21,30 C21,38 24,45 30,45 C36,45 39,38 39,30 C39,22 36,15 30,15 Z" fill="none" stroke="%23d4af37" stroke-width="1"/><circle cx="12" cy="30" r="3" fill="%23d4af37"/><circle cx="48" cy="30" r="3" fill="%23d4af37"/><path d="M30,3 L32,9 L30,9 L28,9 Z" fill="%23d4af37"/><path d="M30,51 L32,57 L30,57 L28,57 Z" fill="%23d4af37"/></g></pattern></defs><rect width="120" height="120" fill="url(%23section-damask)"/></svg>') repeat;
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(42,31,27,0.95) 0%, rgba(42,31,27,0.98) 100%);
    pointer-events: none;
    z-index: 0;
}

.info-section > * {
    position: relative;
    z-index: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .info-grid {
        grid-template-columns: 4fr 2fr;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
    animation: fadeInLeft 1s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    animation: shimmer 2s ease-in-out infinite;
    background-size: 200% 100%;
}

/* News Section */
.news-container {
    color: #ffffff;
}

.loading-message {
    color: #cccccc;
    font-weight: 300;
}

.news-list {
    list-style: none;
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
}

.news-list::-webkit-scrollbar {
    width: 6px;
}

.news-list::-webkit-scrollbar-track {
    background: #444444;
    border-radius: 3px;
}

.news-list::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 3px;
}

.news-list::-webkit-scrollbar-thumb:hover {
    background: #aaaaaa;
}

.news-item {
    display: flex;
    align-items: center;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #444444;
}

@media (min-width: 768px) {
    .news-item {
        gap: 1rem;
    }
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.news-date {
    color: #cccccc;
    font-weight: 300;
    min-width: 100px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.news-content {
    flex: 1;
}

.news-category {
    color: #ffffff;
    background-color: #d21f3c;
    font-size: 0.625rem;
    font-weight: 400;
    margin-right: 0.5rem;
    letter-spacing: 0.025em;
    padding: 0.125rem 0.375rem;
    border-radius: 0.1875rem;
    display: inline-block;
    vertical-align: middle;
}

.news-title {
    color: #ffffff;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
    vertical-align: middle;
}

.news-title:hover {
    color: #d21f3c;
}

/* SNS Section */
.sns-content {
    display: flex;
    flex-direction: column;
    height: 70%;
    margin-top: 6em;
}

.sns-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.sns-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background-color: #ffffff;
    color: #231815;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    flex: 1;
    min-height: 80px;
    box-sizing: border-box;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.sns-link:nth-child(1) { animation-delay: 0.2s; }
.sns-link:nth-child(2) { animation-delay: 0.4s; }
.sns-link:nth-child(3) { animation-delay: 0.6s; }

.sns-link:hover {
    background-color: #d21f3c;
    color: #ffffff;
}

.instagram-banner:hover {
    background: #d21f3c !important;
}

.sns-icon {
    font-size: 1.5rem;
}

.sns-name {
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.note-banner {
    justify-content: center;
    padding: 1rem 0;
    border-radius: 12px;
    min-height: 80px;
}

.note-banner svg {
    width: 120px;
    height: 90px;
    transition: transform 0.3s ease;
}

.note-banner:hover svg {
    animation: float 2s ease-in-out infinite;
}

/* Instagram Banner */
.instagram-banner {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 80px;
}

.instagram-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.instagram-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.instagram-banner:hover .instagram-logo {
    animation: pulse 1.5s ease-in-out infinite;
}

.instagram-text {
    font-family: 'Instagram Sans Headline Regular', 'Instagram Sans Medium', cursive;
    font-size: 1.8rem;
    color: white;
    font-weight: normal;
    letter-spacing: 0.1em;
    font-style: normal;
    transform: skew(-10deg, 0deg);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* X (Twitter) Banner */
.x-banner {
    background: #000000;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.x-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.x-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.x-banner:hover .x-logo {
    transform: rotate(5deg) scale(1.1);
}

.x-text {
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.9rem;
    color: white;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-stretch: condensed;
}

/* Properties Section */
.properties-section {
    padding: 4rem 0;
    background: #231815 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150" width="150" height="150"><defs><pattern id="prop-damask" x="0" y="0" width="75" height="75" patternUnits="userSpaceOnUse"><g opacity="0.05"><path d="M37.5,7.5 C50,7.5 60,20 60,37.5 C60,55 50,67.5 37.5,67.5 C25,67.5 15,55 15,37.5 C15,20 25,7.5 37.5,7.5 Z M37.5,18 C30,18 26,28 26,37.5 C26,47 30,57 37.5,57 C45,57 49,47 49,37.5 C49,28 45,18 37.5,18 Z" fill="none" stroke="%23d4af37" stroke-width="1.2"/><circle cx="15" cy="37.5" r="4" fill="%23d4af37"/><circle cx="60" cy="37.5" r="4" fill="%23d4af37"/><path d="M37.5,4 L40,11 L37.5,11 L35,11 Z" fill="%23d4af37"/><path d="M37.5,64 L40,71 L37.5,71 L35,71 Z" fill="%23d4af37"/></g></pattern></defs><rect width="150" height="150" fill="url(%23prop-damask)"/></svg>') repeat;
    text-align: center;
    position: relative;
}

.properties-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(35,24,21,0.95) 0%, rgba(35,24,21,0.98) 100%);
    pointer-events: none;
    z-index: 0;
}

.properties-section > * {
    position: relative;
    z-index: 1;
}

.properties-title {
    margin-bottom: 3rem;
    display: inline-block;
}

.properties-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Information section title mobile center */
@media (max-width: 1023px) {
    .information-content {
        text-align: center;
    }
    
    .information-content .section-title {
        display: inline-block;
    }
    
    .information-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .news-container {
        text-align: left;
    }
    
    .news-list {
        text-align: left;
    }
    
    .news-item {
        text-align: left;
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
    }
    
    .news-item .news-date {
        flex-shrink: 0;
        min-width: 80px;
    }
    
    .news-item .news-content {
        flex: 1;
        min-width: 0;
    }
    
    .news-date-category {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .news-date-category .news-date {
        min-width: auto;
    }
    
    .news-list {
        max-height: none;
        overflow-y: visible;
    }
    
    .more-news-btn {
        background-color: #777777;
        color: #ffffff;
        border: 1px solid #999999;
        padding: 0.75rem 1.5rem;
        font-weight: 300;
        letter-spacing: 0.05em;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 2.5rem;
        width: 60%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        border-radius: 0;
    }
    
    .more-news-btn:hover {
        background-color: #888888;
        border-color: #aaaaaa;
    }
}

.properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
}

@media (min-width: 768px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.property-card {
    background-color: #2a1f1b;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.property-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    flex-shrink: 0;
    min-height: 16rem;
}

.property-placeholder {
    width: 100%;
    height: 16rem;
    background-color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 16rem;
}

.coming-soon-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-align: center;
}

.property-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-name {
    font-size: 1.25rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.property-description {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.875rem;
    flex-grow: 1;
}

.property-details {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.875rem;
    flex-grow: 1;
}

.property-details p {
    margin-bottom: 0.75rem;
}

.property-details strong {
    color: #ffffff;
    font-weight: 400;
}

.property-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0;
    font-weight: 300;
    letter-spacing: 0.03125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    width: 100%;
}

.btn-primary {
    background-color: #d21f3c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #231815;
}

.btn-outline {
    background-color: #d21f3c;
    color: #ffffff;
    border: 1px solid #d21f3c;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #231815;
    border-color: #ffffff;
}

.btn-disabled {
    background-color: #666666;
    color: #cccccc;
    border: 1px solid #666666;
    cursor: not-allowed;
}

.btn-disabled:hover {
    background-color: #666666;
    color: #cccccc;
    border-color: #666666;
}

/* Footer */
.footer {
    background: #000000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" width="80" height="80"><defs><pattern id="footer-damask" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><g opacity="0.1"><path d="M20,4 C28,4 32,12 32,20 C32,28 28,36 20,36 C12,36 8,28 8,20 C8,12 12,4 20,4 Z M20,10 C16,10 14,15 14,20 C14,25 16,30 20,30 C24,30 26,25 26,20 C26,15 24,10 20,10 Z" fill="none" stroke="%23d4af37" stroke-width="0.8"/><circle cx="8" cy="20" r="2" fill="%23d4af37"/><circle cx="32" cy="20" r="2" fill="%23d4af37"/></g></pattern></defs><rect width="80" height="80" fill="url(%23footer-damask)"/></svg>') repeat;
    color: #d4af37;
    padding: 2rem 0;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.98) 100%);
    pointer-events: none;
    z-index: 0;
}

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

.footer-content {
    text-align: center;
}

.footer-content p {
    color: #d4af37;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .news-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .news-date {
        min-width: auto;
    }
}