body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.4;
    font-size: 12pt;
    color: #606060;
}

/* ==========NAVBAR========== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 7%) 0px 4px 6px -1px;
    z-index: 10;
    padding: 16px 24px;
}

.nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav .inner .left {
    width: auto;
}

.nav .inner .nav-logo img {
    width: 150px;
}

.nav .inner .right {
    display: flex;
    justify-content: end;
    align-items: center;
}

.nav .inner .navigation {
    justify-content: end;
    display: flex;
}

.nav li {
    list-style: none;
    padding: 0.5rem 0rem;
}

.nav li.li-main {
    margin-left: 0px;
    padding: 0 5px;
}

.nav li.li-main a {
    position: relative;
    transition: color .15s linear;
    color: #606060;
    padding: 0 10px;
}

.nav li.li-main:hover a {
    color: #2e2e2e;
}

.nav li.li-main.active a {
    color: #2EA893;
}

.menu-dropdown {
    align-items: center;
    display: flex;
    width: auto;
}

.menu-dropdown .menu {
    display: flex;
    padding: 0px;
}

@media (max-width: 767px) {
    .nav {
        display: block;
        padding: 0.5rem;
        background-color: #fff !important;
    }

    .nav .inner {
        padding: 0;
    }

    .nav .inner .left {
        width: 100%;
    }

    .nav .inner .right {
        width: auto;
    }

    .nav li.li-main {
        margin-left: 0px;
        position: relative;
    }

    .nav li.li-main a {
        margin-left: 0px;
        padding: 5px 15px;
        line-height: 1.5;
        display: inline-block;
    }
}
/* ==========END NAVBAR========== */



/* ==========ICON TOGGLE========== */
.border-icontoggle {
    width: 30px;
    height: 30px;
    padding: 0.35rem;
    background: transparent;
    cursor: pointer;
    margin: 5px;
    margin-bottom: 0px;
    display: none;
}

.icontoggle {
    width: 15px;
    height: 2px;
    background-color: #6D7588;
    margin: 2px 1px;
}

@media (max-width: 767px) {
    .border-icontoggle {
        display: block;
    }

    .dropdown {
        width: auto;
    }

    .menu-dropdown {
        display: none;
        position: fixed;
        /* padding-top: 20px; */
        background: white;
        width: 100%;
        height: 100%;
        left: 0;
        top: 50px;
    }

    .menu-dropdown .menu {
        display: block;
        margin: 0px;
    }
}
/* ==========END ICON TOGGLE========== */

.banner-page {
    background-image: radial-gradient(circle,var(--NN0,#FFFFFF),#fcfdff,#f6fdff,#effcff,#e9fcfb);
    background-color: #E9FCFB;
    position: fixed;
    height: 100vh;
}

.banner-page img.orn1-mobile {
    display: none;
    position: absolute;
    top: 48px;
    right: 0;
}

.banner-page img.orn1-pc {
    display: block;
    position: absolute;
    top: 60px;
    bottom: 0;
    right: 0;
}

.banner-page img.orn2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.banner-page img.orn3 {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--NN0,#FFFFFF);
    height: 120px;
}

.blok-page .inner {
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    position: relative;
    align-items: center;
    height: 100vh;
}

@media (max-width: 767px) {
    .banner-page img.orn1-mobile {
        display: block;
    }
    
    .banner-page img.orn1-pc {
        display: none;
    }

    .blok-page .inner {
        padding: 0 10px;
    }
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.input-group .pre-group {
    width: auto;
    display: flex;
    align-items: center;
    padding: 8px;
    font-size: 12pt;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #2EA893;
    background-color: #2EA893;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group input.nohp {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    display: block;
    padding: 8px;
    font-size: 12pt;
    font-weight: 400;
    line-height: 1.2;
    background-color: #e0e0e0;
    border: 1px solid #e0e0e0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}