/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

.logo-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.header-tagline {
    text-align: right;
}

.header-tagline .brand {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.header-tagline .concept {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Hero Section */
.heros {
    
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-title .highlight {
    color: #f8d7b3;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta {
    margin-top: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #e09145 0%, #d67e2c 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 145, 69, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #8b9dc3 0%, #6b7d9f 100%);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 157, 195, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0!important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5f91;
}

.section-title .subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #8b9dc3;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Services Overview Section */
.services-overview {
    background: linear-gradient(135deg, #f8fafb 0%, #f3f6f9 100%);
}

.services-backimg{
   border-radius: 15px;
   background: url('./assets/img/business-13.png');
   background-size: cover;
   background-position: left;
}
.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.services-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

.women-friendly-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
    border: 2px solid #e09145;
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: 600;
    color: #2c5f91;
}

.badge-icon {
    font-size: 1.2rem;
}

.service-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 95, 145, 0.15);
}

/* Main Services Section */
.main-services {
    background:  url("./assets/img/apart3.png");
    padding: 80px 0;
}

.main-services-back{
   
    padding: 10px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(44, 95, 145, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 95, 145, 0.2);
}

.service-icon-realestate {
    position: relative;
    margin-bottom: 25px;
    object-fit: cover;
    object-position: center;   
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

.service-emoji {
    font-size: 2rem;
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f91;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: "✓";
    color: #e09145;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Performance Section */
.performance-section {
    background: url('./assets/img/back4.png');
    color: rgb(0, 0, 0);
}

.performance-section .section-title {
    color: rgb(0, 0, 0);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.performance-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.performance-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.performance-visual {
    margin-bottom: 30px;
    height: 50%;
    overflow: hidden;
}

.performance-img {
    width: 100%;
    /* height: 100px; */
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    opacity: 0.9;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f8d7b3;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 1rem;
    opacity: 0.9;
}

/* Investment Section */
.investment-section {
    background: linear-gradient(135deg, #f8fafb 0%, #f3f6f9 100%);
}

.investment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.investment-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4a5568;
}

.investment-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 95, 145, 0.15);
}

#contact{
    background-image: url('./assets/img/back1.png');
    background-size:calc('110%');
    background-position: center;
}
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
    text-align: center;
}

.contact-phone h3,
.contact-web h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #000000;
}

.phone-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f91;
    text-decoration: none;
    padding: 15px 30px;
    border: 3px solid #2c5f91;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
}

.phone-number:hover {
    background-color: #2c5f91;
    color: white;
    transform: scale(1.05);
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: #4a5568;
}

/* Management Types Section */
.management-types {
    background: white;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.management-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.management-item:hover {
    border-color: #e09145;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(224, 145, 69, 0.15);
}

.management-img {
    width: 100%;    
    object-fit: contain;
    margin-bottom: 20px;
    filter: hue-rotate(200deg) saturate(0.8);
}

.management-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f91;
    margin-bottom: 10px;
}

.management-item p {
    color: #6b7280;
    font-size: 1rem;
}

/* Advantages Section */
.advantages-section {
    margin-top: 2em;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.advantage-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(44, 95, 145, 0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 95, 145, 0.15);
}

.advantage-plus {
    background: linear-gradient(135deg, #2c5f91 0%, #4a90c8 100%);
    color: white;
}

.advantage-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.advantage-plus .advantage-img {
    /* filter: brightness(0) invert(0.5) opacity(0.9); */
}

.advantage-header {
    margin-bottom: 20px;
}

.advantage-number {
    display: inline-block;
    background: linear-gradient(135deg, #e09145 0%, #d67e2c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantage-plus .advantage-number {
    background: linear-gradient(135deg, #f8d7b3 0%, #e09145 100%);
    color: #2c5f91;
}

.advantage-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5f91;
}

.advantage-plus .advantage-content h3 {
    color: white;
}

.advantage-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.advantage-plus .advantage-content p {
    color: rgba(255,255,255,0.9);
}

.advantage-detail {
    font-weight: 600;
    color: #e09145;
    border-top: 2px solid #e2e8f0;
    padding-top: 15px;
}

.advantage-stats .stat-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5f91;
    margin-bottom: 10px;
}

.highlight-stat {
    background: #fef3e7;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    color: #d67e2c;
    margin-top: 15px;
    border-left: 4px solid #e09145;
}

/* Flow Section */
.flow-section {
    background-color: #fff;
    margin-top: 2em;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.flow-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.flow-step:hover {
    border-color: #e09145;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(224, 145, 69, 0.15);
}

.flow-visual {
    position: relative;
    margin-bottom: 25px;
}

.flow-img {
    width: 100%;
    /* height: 100px; */
    object-fit: contain;
    margin-bottom: 15px;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5f91 0%, #4a90c8 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(44, 95, 145, 0.3);
}

.flow-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f91;
    margin-bottom: 10px;
}

.flow-step p {
    color: #6b7280;
    font-size: 1rem;
}

/* Voice Section */
.voice-section {
    margin-top: 5em;
    background: linear-gradient(135deg, #fef9f5 0%, #fdf2e9 100%);
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.voice-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(224, 145, 69, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    border-left: 4px solid #e09145;
}
.voice-text{
    width: 100%;
    background: white;
    backdrop-filter: blur(10px);
    box-shadow: -14px 19px 10px black;
}

.voice-back1{
    background-position: center;
    background-size: cover;
    background-image: url('./assets/img/voice1.png');
}

.voice-back3{
    background-position: center;
    background-size: cover;
    background-image: url('./assets/img/business-M1.png');
}

.voice-back2{
    background-position: center;
    background-size: cover;
    background-image: url('./assets/img/voice4.png');
}

.voice-back4{
    background-position: center;
    background-size: cover;
    background-image: url('./assets/img/business-10.png');
}
.voice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(224, 145, 69, 0.15);
}

.voice-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #e09145;
    object-fit: cover;
}

.voice-item::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: #e09145;
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
}

.voice-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    font-style: italic;
    margin-top: 10px;

}

/* Results Section */
.results-section {
    margin-top: 5em;
    background: linear-gradient(135deg, #f8fafb 0%, #f3f6f9 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.result-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(44, 95, 145, 0.1);
    text-align: center;
    font-weight: 600;
    color: #2c5f91;
    border-left: 4px solid #e09145;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(44, 95, 145, 0.15);
}

/* Q&A Section */
.qa-section {
    background-color: #fff;
}

.qa-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.qa-item {
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.qa-item:hover {
    border-color: #e09145;
}

.qa-question {
    width: 100%;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5f91;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.qa-question:hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.qa-question.active {
    background: linear-gradient(135deg, #2c5f91 0%, #4a90c8 100%);
    color: white;
}

.qa-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.qa-toggle {
    margin-left: auto;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.qa-question.active .qa-toggle {
    transform: rotate(45deg);
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.qa-answer.active {
    max-height: 500px;
}

.qa-answer p {
    padding: 25px;
    background: white;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-section {
    /* background: linear-gradient(135deg, #2c5f91 0%, #4a90c8 100%); */
    color: rgb(0, 0, 0);
}

.contact-section .section-title {
    color: rgb(0, 0, 0);
}

/* Footer */

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-info {
    flex: 1;
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e09145;
}

.footer-copyright {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
}

.footer-copyright p {
    color: #718096;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .header-tagline {
        text-align: center;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo-text h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .investment-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .services-grid,
    .performance-grid,
    .management-grid,
    .flow-steps,
    .voice-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
        padding: 12px 20px;
    }
    
    .service-item,
    .voice-item,
    .flow-step {
        padding: 25px 20px;
    }
    
    section {
        padding: 50px 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
} 