  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        header {
            background: #326984;
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            position: relative;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            z-index: 1001;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            position: relative;
        }

        .logo-icon svg {
            width: 35px;
            height: 35px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-main {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .logo-sub {
            font-size: 0.7rem;
            opacity: 0.9;
            font-weight: normal;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.8;
        }

        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23667eea" width="1200" height="600"/><path fill="%23764ba2" d="M0 300L50 283.3C100 266.7 200 233.3 300 233.3C400 233.3 500 266.7 600 283.3C700 300 800 300 900 283.3C1000 266.7 1100 233.3 1150 216.7L1200 200V600H1150C1100 600 1000 600 900 600C800 600 700 600 600 600C500 600 400 600 300 600C200 600 100 600 50 600H0V300Z"/></svg>');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: #ff6b6b;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: transform 0.3s, box-shadow 0.3s;
            font-weight: bold;
        }

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

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #326984;
        }

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

        .property-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .property-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .property-info {
            padding: 1.5rem;
        }

        .property-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #326984;
        }

        .property-price {
            font-size: 1.5rem;
            color: #ff6b6b;
            font-weight: bold;
            margin: 1rem 0;
        }

        .property-details {
            display: flex;
            gap: 1rem;
            color: #666;
            font-size: 0.9rem;
        }

        .features {
            background: #f8f9fa;
            padding: 4rem 0;
        }

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

        .feature-item {
            text-align: center;
            padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border-radius: 10px;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background: white;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 2rem;
        }

        footer {
            background: #326984;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }

        .form-group select {
            background-color: white;
            cursor: pointer;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .checkin-section {
            background: #f8f9fa;
            padding: 4rem 0;
        }

        .checkin-form {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .checkin-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #326984;
        }

        .checkin-header h3 {
            color: #326984;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .status-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: #4caf50;
            color: white;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .service-detail {
            background: white;
            margin-bottom: 2rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .service-header {
            background: linear-gradient(135deg, #326984 0%, #4a8fa8 100%);
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .service-header h3 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .service-header .icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-content {
            padding: 2rem;
        }

        .service-content h4 {
            color: #326984;
            font-size: 1.3rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid #326984;
            padding-left: 1rem;
        }

        .service-content ul {
            list-style: none;
            padding: 0;
        }

        .service-content ul li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .service-content ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4caf50;
            font-weight: bold;
        }

        .price-box {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border-left: 4px solid #ff6b6b;
        }

        .price-box h5 {
            color: #326984;
            margin-bottom: 0.5rem;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .service-card {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
        }

        .service-card h5 {
            color: #326984;
            margin: 1rem 0;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            nav ul {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: #326984;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                gap: 0;
            }

            nav ul.active {
                left: 0;
            }

            nav ul li {
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .container {
                padding: 2rem 1rem;
            }

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

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

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

            .form-row {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 1.8rem;
                padding: 0 1rem;
            }

            .hero-content p {
                font-size: 1.1rem;
                padding: 0 1rem;
            }

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

            .service-header h3 {
                font-size: 1.5rem;
            }

            .service-content {
                padding: 1.5rem;
            }

            .checkin-form {
                padding: 1.5rem;
            }

            nav {
                padding: 0 1rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
            }

            .logo-icon svg {
                width: 28px;
                height: 28px;
            }

            .logo-main {
                font-size: 1rem;
            }

            .logo-sub {
                font-size: 0.6rem;
            }
        }

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

            .hero-content p {
                font-size: 1rem;
            }

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

            .property-card {
                margin: 0 0.5rem;
            }

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

            .service-header h3 {
                font-size: 1.3rem;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

    .banner {
        /*width: 100%;*/
        min-height: 100vh;
        background-image: url("https://s3.us-east-1.amazonaws.com/www.anshinsumai.com/background.png");
        background-size:cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .content {
        width: 100%;
        max-width: 1200px;
        padding: 20px;
        color: white;
    }

    .title {
        font-size: 60px;
        font-weight: 800;
        margin: 0 0 10px;
    }

    .subtitle-jp {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .subtitle-main {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .desc {
        font-size: 20px;
        max-width: 600px;
        line-height: 1.4;
        margin-bottom: 35px;
    }

    .btn-row {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
    }

    .btn {
        background: #ff6b6b;
        border-radius: 10px;
        padding: 18px 36px;
        color: white;
        font-size: 20px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        min-width: 180px;
        text-align: center;
        transition: 0.2s;
    }

    .btn:hover {
        opacity: 0.9;
    }

    /* Mobile responsive adjustments */
    @media (max-width: 768px) {
        .title {
            font-size: 40px;
        }
        .subtitle-main {
            font-size: 30px;
        }
        .desc {
            font-size: 16px;
        }
        .btn {
            width: 100%;
        }
        .btn-row {
            flex-direction: column;
        }
    }
    
    .hotel-name {
        --accent: #b98f4e;
      font-size: 18px;
      letter-spacing: 2px;
      color: var(--accent);
      font-weight: 700;
      text-transform: uppercase;
    }
     
    
   
    
    .redirect-message {
      margin-top: 15px;
      font-size: 14px;
      opacity: 0.9;
    }

     .location-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 3rem 2rem;
            margin: 2rem 0;
        }
        .location-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .location-title {
            text-align: center;
            font-size: 2rem;
            color: #326984;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        .location-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
        }
        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: start;
        }
        .location-info {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .info-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .info-label {
            font-weight: 600;
            color: #326984;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .info-value {
            color: #333;
            line-height: 1.6;
        }
        .map-container {
            background: white;
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            height: 400px;
        }
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: #e9ecef;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
        }
        .access-list {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0 0;
        }
        .access-list li {
            padding: 0.5rem 0;
            color: #555;
        }
        .access-list li::before {
            content: "→";
            color: #4a8fa8;
            font-weight: bold;
            margin-right: 0.5rem;
        }
        @media (max-width: 768px) {
            .location-content {
                grid-template-columns: 1fr;
            }
            .location-section {
                padding: 2rem 1rem;
            }
        }