@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Sans+KR&display=swap");
#main {
    width: 100vw;
    overflow-x: hidden;
}

body {
    line-height: 1;
    background-color: #f8fffe !important;
    font-family: "Noto Sans JP", sans-serif !important;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.header {
    width: 100vw !important;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

.header-scrolled {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
    line-height: 0;
}

.header .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.navbar {
    padding: 0;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.phone svg path:nth-child(3) {
    -webkit-animation: header-phone2 1s infinite cubic-bezier(0.1, 0.57, 0.5, 1);
    animation: header-phone2 1s infinite cubic-bezier(0.1, 0.57, 0.5, 1);
}

@keyframes header-phone2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-10px, 10px, 0);
        transform: translate3d(-10px, 10px, 0);
    }
    70%,
    90% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
    }
}
.phone svg path:nth-child(2) {
    -webkit-animation: header-phone 1s infinite cubic-bezier(0.1, 0.57, 0.5, 1);
    animation: header-phone 1s infinite cubic-bezier(0.1, 0.57, 0.5, 1);
}

@keyframes header-phone {
    0%,
    30% {
        opacity: 0;
        -webkit-transform: translate3d(-10px, 10px, 0);
        transform: translate3d(-10px, 10px, 0);
    }
    80% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
    }
}
.navbar li {
    padding-left: 42px;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 0px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #0e3059;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #d6f7fe;
    border: 1px solid #2ea0b8;
    border-radius: 6px !important;
    padding: 9px 5px;
    border-radius: 4px;
    display: block;
}

.navbar .getstarted p {
    margin-bottom: 5px;
}

.navbar .getstarted p {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #0e3059;
}

.navbar .getstarted span {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
}

.icon-navbar {
    display: none !important;
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
}

.navbar-mobile > ul {
    height: 400px;
    top: 60px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 30px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .navbar ul {
        display: none;
    }
    .navbar li {
        padding-left: 0px;
    }
    .fa-bars {
        display: block !important;
        color: #012970;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
    }
    .navbar-mobile > ul {
        height: 400px;
        top: 60px;
    }
    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 60px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 10px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }
    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
        bottom: 0;
    }
}
@media (min-width: 991px) and (max-width: 1200px) {
    .fa-bars {
        color: #012970;
        font-size: 28px;
        cursor: pointer;
        display: none !important;
        line-height: 0;
        transition: 0.5s;
    }
}
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
    width: 100vw;
}

.fa-xmark {
    font-size: 35px;
    color: white;
    float: right;
    margin-top: 15px;
    margin-right: 20px;
}

.show {
    opacity: 1;
    visibility: visible;
}

.menu-header .current-menu-item:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #017b6c;
    left: 56%;
    top: -5px;
}

.menu-header .current-menu-item:before {
    content: "";
    width: 3px;
    height: 50px;
    background: #017b6c;
    position: absolute;
    top: -3rem;
    left: 60%;
}

#icon-phone-svg path {
    fill: #017b6c !important;
}

.menu-item-object-page a:hover {
    color: #017b6c !important;
    font-size: 17px;
}

.footer .footer-top {
    background: #ebfffd;
    background-size: contain;
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    padding: 60px 0 30px 0;
}

.footer .footer-top .footer-info {
    margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
    line-height: 0;
    margin-bottom: 15px;
}

.footer .footer-top .footer-info p {
    font-weight: 500;
    font-size: 16px;
    color: #0e3059;
    line-height: 18px;
}

.footer .footer-top .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
    font-weight: 700;
    font-size: 20px;
    color: #0e3059;
    margin-top: 3px;
    margin-left: 5px;
}

.footer .footer-top .footer-links {
    margin-bottom: 30px;
    padding-left: 120px;
}

.footer .footer-top h4 {
    font-weight: 700;
    font-size: 18px;
    color: #0e3059;
    padding-bottom: 12px;
}

.footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-top .footer-links ul a {
    transition: all 0.3s ease 0s;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: rgb(14, 48, 89);
    text-decoration: none;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    background-color: #0e3059;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    padding-bottom: 30px;
}

@media (max-width: 991px) {
    .footer .footer-top {
        background-position: center bottom;
    }
    .footer .footer-top .footer-links {
        padding-left: 12px;
        padding-right: 12px;
    }
}
.btn-top-up {
    background-color: #02759a;
    padding: 10px 13px 7px 12px;
    border-radius: 5px;
    border: none;
    position: fixed;
    bottom: 40px;
    right: 20px;
    opacity: 0;
    display: block !important;
    color: white;
    transition: 0.5s;
}

.show-button {
    opacity: 1;
    visibility: visible;
}

#btn-color-button {
    color: white !important;
}

.top-new-panel {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 93px;
}

.top-new-panel .wrap-top-new {
    background: radial-gradient(
        50% 50% at 50% 50%,
        #e2fffb 0%,
        rgba(226, 255, 251, 0.16) 100%
    );
}

section {
    padding-bottom: 60px;
    overflow: hidden;
}

.wh-200 {
    width: 200px;
    height: 200px;
}

.top-new-panel .wrap-top-new .new-top {
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    font-size: 16px;
    text-transform: uppercase;
    color: rgba(14, 48, 89, 0.42);
}

.top-new-panel .wrap-top-new .circle-min {
    background: linear-gradient(209.74deg, #02759a -12.13%, #017b6c 119.68%);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin: 0 10px;
}

.top-new-panel .wrap-top-new .new-notification {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #0e3059;
}

a {
    text-decoration: none !important;
}

.mb28 {
    margin-bottom: 28px;
}

.about .about-title,
.new .new-title,
.service .service-title,
.business .business-title {
    height: 188px;
    margin-left: 30px;
}

.about .about-title .content,
.new .new-title .content,
.service .service-title .content,
.business .business-title .content {
    padding-top: 60px;
    margin-left: -30px;
    position: relative;
}

.new .new-title h1 {
    text-transform: uppercase;
}

.about .about-title h1,
.new .new-title h1,
.service .service-title h1,
.business .business-title h1 {
    font-weight: 700;
    font-size: 32px;
    color: #0e3059;
}

.about .about-title .content .cricle,
.new .new-title .content .cricle,
.service .service-title .content .cricle,
.business .business-title .content .cricle {
    background: linear-gradient(209.74deg, #02759a -12.13%, #017b6c 119.68%);
    width: 28px;
    height: 28px;
    margin-top: 5px;
    margin-left: 16px;
    border-radius: 50%;
}

.about .about-title h2,
.new .new-title h2,
.service .service-title h2,
.business .business-title h2 {
    background: -webkit-linear-gradient(
        209.74deg,
        #02759a -12.13%,
        #017b6c 119.68%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    padding-top: 16px;
}

.new .news-page ul {
    list-style-type: none;
    margin-top: 30px;
    margin-left: 0;
    padding-left: 0;
}

.new .new-content ul li {
    border-bottom: 1px solid #00b7d4;
}

.new .news-page ul li > div {
    margin: auto 35px;
    padding-bottom: 30px;
    padding-top: 30px;
}

.new .page-nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.new .new-content ul li button {
    width: 125px;
    height: 42px;
    border: 1px solid #00b7d4;
    border-radius: 24px;
    background: transparent;
    padding: 5px;
    margin-right: 41px;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #0e3059;
}

.new .new-content ul h1 {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #0e3059;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-top: 12px;
}

.top-new-panel .wrap-top-new::before {
    position: absolute;
    left: -162px;
    height: 6px;
    content: "";
    width: 60px;
    background: #195ec0;
    z-index: 10;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.top-new-panel .wrap-top-new::after {
    position: absolute;
    left: -120px;
    height: 2px;
    content: "";
    width: 100px;
    background: #00bad8;
}

.flex-basic-70 {
    flex-basis: 70%;
}

@media (max-width: 991px) {
    .new .new-content {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .new .new-content ul {
        margin: 0;
        padding: 0;
    }
    .new .news-page ul li > div {
        margin: 0;
    }
}
@media (max-width: 768px) and (max-width: 800px) {
    .new .new-content ul li .desc {
        padding-top: 24px;
    }
    .flex-column-mobile {
        flex-direction: column !important;
    }
    .new .new-content ul li .btn-next {
        right: 0;
        width: 20%;
        position: absolute;
    }
    .new .new-content ul li > div {
        padding-bottom: 24px;
        padding-top: 24px;
    }
}
.new .new-content ul .desc {
    text-align: left;
}

/*# sourceMappingURL=latest.css.map */
