@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');


html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 1rem;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #091353;
}

footer {
    background-color: rgba(235,230,241,0.5);
}


.corporate-logo{
    z-index:10;
    position:absolute;
    top:10px;
    left:10px
}



/*�Œ胁�j���[*/
.nav-bottom {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: rgba(235,230,241,0.5);
}

    .nav-bottom.stopped {
        position: absolute;
    }

.logo-size {
    width: 80px;
    height: auto;
    transition: transform 0.5s;
}

    .logo-size:hover {
        transform: scale(1.1);
    }



/*�J���[*/
.bg-theme-blue {
    background-color: rgb(0,130,201);
}

.bg-light-blue {
    background-color: rgb(235,249,255);
}

.theme-blue {
    color: rgb(0,130,201);
}

.title-color {
    color: rgb(0,34,91);
}

.bg-superlight-blue {
    background-color: rgb(54,149,201);
}

.bg-dark-blue {
    background-color: rgb(0,56,150);
}

.bg-deep-blue {
    background-color: rgb(0,56,117);
}

.bg-purple {
    background-color: #F6F3F9;
}

.bg-light-purple {
    background-color: #FAF9FC;
}

.border-purple {
    border: 3px solid #D9CFE2;
}

.deco-white{
    background-color:#fff;
    height:3px;
    border-radius:30px;
}

.bg-black-20{
    background-color:rgba(0,0,0,0.2);
}



/*fontweight*/

.weight300 {
    font-weight: 300
}

.weight400 {
    font-weight: 400
}

.weight500 {
    font-weight: 500
}


.weight700 {
    font-weight: 700
}

.weight900 {
    font-weight: 900
}

/*font-size*/

.fs-7 {
    font-size: 0.8rem;
}

.fs-8 {
    font-size: 0.5rem;
}

/*�₢���킹�{�^��*/
.btn-inquiry {
    width: 250px;
    border-radius: 55px;
    background-color: #fff;
    border: none;
    color: rgb(0,56,117);
    text-align: center;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
    padding: 0.6rem;
}

    .btn-inquiry:hover {
        background-color: rgba(255,255,255,0.9);
    }

.title-line {
    width: 50px;
    height: 5px;
    background-color: rgb(213,213,213);
    border-radius: 3px;
    margin: auto;
}


/* ������ */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* �X�N���[����������o������v�f�ɂ͂��߂ɓ���0���w��@*/

.fadeUpTrigger {
    opacity: 0;
}

/*�J���̗���̐}*/

.progressbar {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

    .progressbar li {
        position: relative;
        list-style-type: none;
        text-align: center;
        text-transform: uppercase;
        width: 33.333%;
        color: rgb(0,56,117);
    }

        .progressbar li:before {
            display: block;
            width: 18px;
            height: 18px;
            margin: 7px auto 20px auto;
            content: '';
            text-align: center;
            border-radius: 50%;
            background-color: #F5F5F5;
        }

        .progressbar li:after {
            position: absolute;
            z-index: -1;
            top: 15px;
            left: -50%;
            width: 100%;
            height: 4px;
            content: '';
            background-color: #F5F5F5;
        }

        .progressbar li:first-child:after {
            content: none;
        }

        .progressbar li.complete {
            color: rgb(0,34,91);
        }

            .progressbar li.complete:before {
                background-color: #fff;
                border: 4px solid #ebe6f1;
            }

            .progressbar li.complete:after {
                background-color: #ebe6f1;
            }


/*�J�����т̂���N���E�h��*/

.cloud-card {
   
    box-shadow: 0px 3px 6px #e4e3e3;
}

    .cloud-card:hover {
        box-shadow: 0px 3px 10px #e4e3e3;
    }

    .cloud-logo-size{
        width:150px;
        height:auto;
         
    }

    @media screen and  (max-width:480px){
        .cloud-logo-size{
            width:100px;
            height:auto;
        }
    }