:root {
    --primary-color: #2c3e50;
    --secondary-color: rgb(245, 165, 34);
    --tertiary-color: rgb(118, 196, 37);
    --mint-color: #e5f0ed;
    --accent-color: #e74c3c;
    --gray-light: #ecf0f1;
    --white: #ffffff;
    --text-color: #34495e;
    --button-radius: 5px;
    --transition-speed: 0.3s;
    --background-color: #f5f5dc;

    #e5f0ed
}


body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text-color);
}

.container {
    margin: 0 auto;
    padding: 20px 0;
}

.contents{
margin: 70px auto;
padding: 20px 0;
}

/* Header */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 90px;
}

header .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* ハンバーガーアイコンのスタイル調整 */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}


.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.parallax {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.background {
    background: url('/static/img/head5.png') no-repeat center center/cover;
    z-index: 1;
}

.midground {
    background: rgba(245, 245, 220, 0.3); /* ベージュの0.3透過 */
/*    background: rgba(204, 168, 128, 0.3); /* もうちょっとだけ赤みがかったベージュ */
    z-index: 2;
}

.foreground {
    background: rgba(44, 62, 80, 0.4);
    z-index: 3;
}

.hero.parallax-content {
    position: relative;
    z-index: 4;
    color: var(--white);
    text-align: center;
    top: 2%;
    transform: translateY(-20%);
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--button-radius);
    font-weight: 700;
    transition: background-color var(--transition-speed) ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
}

/* Problems Overlay */
.problems-overlay {
    position: relative;
    z-index: 4;
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.problems-list {
    list-style: none; /* デフォルトのリストスタイルを削除 */
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.problems-list li {
    font-size: 1.2rem; /* フォントサイズを小さく調整 */
    margin-bottom: 15px; /* マージンも調整 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problems-list li i {
    color: var(--tertiary-color); /* チェックボックスの色を緑に設定 */
    margin-right: 10px;
    font-size: 1.2rem; /* アイコンのサイズもフォントサイズに合わせて調整 */
}

/* 追加: リストアイテムの黒丸を完全に削除 */
.problems-list li::marker {
    content: none;
}


/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-badge {
    width: 100px;
    height: 50px;
    object-fit: contain;
}

h2 {
    font-size: 1.5rem;
    text-align: center;
}



h2::after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--tertiary-color);
    margin: 8px auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

h2:hover::after {
    width: 300px;
    background-color: var(--tertiary-color);
}

h3 {
    font-size: 1.2rem;
    position: relative;
}
/* About Section */
#about {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

#about h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
}

.about-text {
    margin-top: 40px;
    text-align: left;
}

.about-text h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-color);
}

.features {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    background-color: var(--mint-color);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(30% - 40px);
    max-width: calc(30% - 40px);
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

.feature i {
    font-size: 2rem;
    color: var(--tertiary-color);
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature p {
    font-size: 1rem;
    color: var(--text-color);
}


/* Counselors Section */
#counselors {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

#counselors h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.counselor-container {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 15px;
}

.counselor {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    min-width: 240px;
}

.counselor-image img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.counselor-info {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.counselor-info h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.counselor-info .title {
    font-size: 0.9rem;
    color: var(--tertiary-color);
    margin-bottom: 5px;
}

.counselor-info p {
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: var(--text-color);
    line-height: 1.4;
}

.counselor-info .social-link {
    margin-top: auto;
    text-align: center;
    padding: 8px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--button-radius);
    font-weight: 700;
    transition: background-color var(--transition-speed) ease;
    font-size: 0.9rem;
}

.counselor-info .social-link:hover {
    background-color: var(--accent-color);
}

.counselor-info .social-link i {
    margin-right: 5px;
}

/* スクロールインジケーターのスタイル */
.scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 10px;
}

.scroll-indicator span {
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--tertiary-color);
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity var(--transition-speed) ease;
}

.scroll-indicator span.active {
    opacity: 1;
}

/* スクロールボタンのスタイル */
.counselor-scroll-buttons button {
    background-color: var(--tertiary-color);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: var(--button-radius);
    cursor: pointer;
    font-size: 0.9rem;
}

.counselor-scroll-buttons button:hover {
    background-color: var(--accent-color);
}

/* Problems Section */
#problems {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

#problems h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
}

.problem-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.problem-item {
    background-color: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(30% - 40px);
    max-width: calc(30% - 40px);
    box-sizing: border-box;
    text-align: left;
    position: relative;
}

.problem-item i {
    font-size: 1.5rem;
    color: var(--tertiary-color);
    margin-bottom: 10px;
}

.problem-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.problem-item ul {
    list-style: none;
    padding: 0;
}

.problem-item ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.problem-item ul li::before {
    content: '•';
    color: var(--tertiary-color);
    margin-right: 8px;
}

/* Process Section */
#process {
    padding: 60px 20px;
    background-color: var(--gray-light);
    text-align: center;
}

#process h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.process-step {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(30% - 40px); /* ステップ数に合わせて調整 */
    max-width: calc(30% - 40px);
    box-sizing: border-box;
    text-align: center;
    position: relative;
    overflow: hidden; /* ステップ番号がはみ出さないように */
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ステップ番号のスタイル */
.process-step .step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: var(--tertiary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: bold;
}

/* ステップ画像のスタイル */
.process-step .process-image {
    width: 100%; /* 画像をステップの幅にフィットさせる */
    height: auto; /* 高さは自動調整 */
    max-height: 150px; /* 必要に応じて最大高さを設定 */
    object-fit: cover; /* 画像が枠に収まるように調整 */
    margin-bottom: 10px;
    border-radius: 8px; /* 画像の角を少し丸める */
}

/* ステップタイトルのスタイル */
.process-step h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ステップ説明文のスタイル */
.process-step p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .process-step {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .process-step .process-image {
        max-height: 120px;
    }

    .process-step .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
        top: 5px;
        right: 5px;
    }
}



/* Testimonials Section */
#testimonials {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

#testimonials h2 {
    color: #333;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-weight: 700;
}

.testimonial {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 40px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 10px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
    @media (max-width: 768px) {
        margin: 10px;
    }
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 20px;
}

.testimonial-img img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #e1e1e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    max-width: 650px;
}

.testimonial-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.testimonial-text .highlight {
    color: #e67e22;
    font-weight: bold;
}

.customer-name {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 10px;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-img img {
        margin-bottom: 20px;
    }

    .testimonial-text {
        max-width: 100%;
    }

    .testimonial {
        padding: 30px;
    }
}

/* Pricing Section */
#pricing {
    padding: 60px 20px;
    text-align: center;
}

#pricing h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 0 0 300px;
    background-color: var(--gray-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.pricing-card .badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px;
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.pricing-card .badge.popular {
    background-color: var(--accent-color);
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pricing-card .zei {
    font-size: 1rem;
    font-weight: bold;
}

.pricing-card .description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.pricing-card .cta-button {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--button-radius);
    font-weight: 700;
    transition: background-color var(--transition-speed) ease;
}

.pricing-card .cta-button:hover {
    background-color: var(--accent-color);
}

.price {
    font-size: 2rem;
    margin-bottom: 20px;
}

.discounted-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

/* Fixed Reservation Form */
.fixed-reservation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 15px 20px;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-reservation.hidden {
    display: none;
}

.fixed-reservation .cta-button {
    width: 100%;
    max-width: 400px;
}

/* Contact Section */
#contact {
    padding: 60px 0;
    text-align: center;
}

#contact h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

#contact p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

footer nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

footer nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

footer nav ul li a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features, .testimonial, .counselor {
        flex-direction: column;
        align-items: center;
    }

    .feature, .counselor, .testimonial {
        flex-basis: 100%;
        max-width: 100%;
    }

    .counselor-info {
        padding: 20px;
    }


    #pricing .pricing-card {
        flex: 0 0 90%;
    }

    #process .process-step {
        flex-basis: calc(50% - 20px);
        max-width: calc(50% - 20px);
        margin: 10px;
    }
}
/* 既存のメディアクエリ内のnav ulのスタイルを修正 */
@media (max-width: 768px) {
    nav ul {
        position: absolute; /* メニューをヘッダーの下に重ねる */
        top: 80%; /* ヘッダーの下に配置 */
        left: 0;
        width: 100%;
        background-color: var(--background-color); /* 背景色を設定 */
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-height: 0; /* 初期状態では非表示 */
        overflow: hidden; /* 内容がはみ出さないようにする */
        transition: max-height 0.3s ease-in-out; /* トランジションを追加 */
        box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* メニューに影を追加 */
        z-index: 999; /* ヘッダーより前面に表示 */
    }

    nav ul.active {
        max-height: 500px; /* メニューが開いたときの最大高さ（必要に応じて調整） */
    }

    /* ハンバーガーアイコンの位置を調整 */
    .hamburger {
        display: flex;
    }

    /* ナビゲーションメニューが開いたときのロゴのズレを防ぐ */
    .logo {
        flex-shrink: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .features {
        gap: 10px;
    }

    .feature {
        flex-basis: 100%;
        max-width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    #pricing .pricing-card {
        flex: 0 0 90%;
    }

    #process .process-step {
        flex-basis: 100%;
        max-width: 100%;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 600px) {
    .counselor {
        flex: 0 0 200px;
        min-width: 200px;
    }

    .counselor-image img {
        height: 150px;
    }

    .counselor-info .title {
        font-size: 0.8rem;
    }

    .counselor-info p {
        font-size: 0.7rem;
    }

    .counselor-info .social-link {
        font-size: 0.8rem;
        padding: 6px;
    }

    .counselor-scroll-buttons button {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .scroll-indicator span {
        width: 6px;
        height: 6px;
    }

    .problem-item {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .process-step {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

#faq {
    padding: 0px 20px;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
}
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}
.faq-item:last-child {
    border-bottom: none;
}
.question, .answer {
    display: flex;
    align-items: flex-start;
}
.icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}
.question .icon {
    background-color: #4caf50;
}
.answer .icon {
    background-color: #ff9800;
}

#improvement-examples {
    padding: 40px 20px;
    background-color: var(--background-color);
    text-align: center;
}

#improvement-examples h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.improvement-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.improvement-list li {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    position: relative;
}

.improvement-list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--tertiary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.highlight {
    color: var(--tertiary-color);
    font-weight: bold;
}

/* チャットコンテナのスタイル */
#chat {
    background-color: #7494c0; /* LINE風の薄い青色背景 */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* メッセージ表示エリアのスタイル */
#messages {
    height: 400px;
    overflow-y: scroll;
    padding: 20px;
    background-color: #7494c0; /* LINE風の薄い青色背景 */
}


/* 個別のメッセージスタイル */
.message {
    margin-bottom: 15px;
    max-width: 70%;
    clear: both;
}

.message-content {
    padding: 10px;
    border-radius: 18px;
    display: inline-block;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.user-message {
    float: right;
}

.user-message .message-content {
    background-color: #dcf8c6;
    color: #000000;
}

.bot-message {
    float: left;
}

.bot-message .message-content {
    background-color: #f1f0f0;
    color: #000000;
}

.message-sender {
    font-size: 0.7em;
    margin-bottom: 2px;
    color: #fff;
}

/* オプションボタンのコンテナスタイル */
#options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
    background-color: #ffffff;
}

/* オプションボタンのスタイル */
.option-button {
    padding: 8px 16px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
}

.option-button:hover {
    background-color: #0056b3;
}

/* テキスト入力エリアのスタイル */
#text-input {
    display: flex;
    padding: 10px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

#user-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 16px;
}

#send-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

#send-button:hover {
    background-color: #0056b3;
}


header {
    flex-shrink: 0;
}

.contents {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-width: 650px;
    margin: auto;
}

#options, #text-input {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 10px;
}

#chatbody {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contents {
    height: calc(100% - 100px); /* ヘッダーの高さを引く */
}

#chat {
    height: 100%;
}

#messages {
    height: auto;
}

#options, #text-input {
    position: sticky;
    bottom: 0;
    z-index: 1000;
}
