* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
    background: rgba(245, 246, 247, 1);
}

.header {
    width: 100%;
    height: 80px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.headerBox {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.headerLeft img:first-child{
    width: 40px;
    height: 40px;
    margin-top: 20px;
    margin-right: 10px;
    vertical-align: sub;
}
.headerLeft img:last-child{
    width: auto;
    height: 20px;
    vertical-align: super;
}
.headerRight div{
    color: rgba(17, 17, 17, 1);
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: left;
    display: inline-block;
    margin-left: 20px;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
}
.headerRight div.on{
    font-weight: 700;
    border-radius: 8px;
    background: rgba(83, 119, 214, 0.1);
    color: rgba(83, 119, 214, 1);
}
.nav-item {
    transition: color 0.1s ease, background-color 0.1s ease;
    padding: 0 15px;
    border-radius: 8px;
}

.nav-item:hover {
    color: rgba(83, 119, 214, 1);
    background-color: rgba(83, 119, 214, 0.05);
}

.nav-item.on {
    font-weight: 700;
    border-radius: 8px;
    background: rgba(83, 119, 214, 0.1);
    color: rgba(83, 119, 214, 1);
}

.banner{
    width: 100%;
    height: 500px;
    background-image: url(../images/icon07.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 80px;
}
.bannerBox{
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}
.bannerBox>div{
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.bannerBoxRight{
    display: flex;
    justify-content: end;
    flex-direction: column;
    height: 100%;
}
.bannerBox>div img{
    width: 350px;
    height: auto;
}
.bannerBoxLeft{
    width: 677px;
    color: #FFFFFF;
}
.bannerBoxLeft div:first-child{
    color: rgba(255, 255, 255, 1);
    font-family: Poppins;
    font-size: 48px;
    font-weight: 600;
    line-height: 64px;
    letter-spacing: 0%;
    text-align: left;
    margin-top: 100px;
}
.bannerBoxLeft div:last-child{
    color: rgba(255, 255, 255, 1);
    font-family: Poppins;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: left;
    margin-top: 24px;
}

.process{
    padding-top: 120px;
    padding-bottom: 120px;
}
.processText01{
    color: rgba(83, 119, 214, 1);
    font-family: Poppins;
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0%;
    text-align: center;
}
.processBox{
    width: 1200px;
    margin: 0 auto;
}
.processBoxTop{
    margin-top: 64px;
    display: flex;
    justify-content: space-between;
}
.processBoxBottom{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
.processBoxTopItem{
    width: 580px;
    height: 372px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 1);
    box-sizing: border-box;
    padding: 0 40px 0 40px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.processBoxTopItem.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.processBoxTopItem:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.05s ease-out, box-shadow 0.05s ease-out;
}
.processBoxTopItem b{
    width: 4px;
    height: 88px;
    background: #5377D6;
    position: absolute;
    top: 28px;
    left: 0;
}
.processBoxTopItem img{
    width: 64px;
    height: 64px;
    margin-top: 40px;
    transition: all 0.05s ease;
}

.processBoxTopItem:hover img {
    transform: scale(1.1) rotate(5deg);
}
.processBoxTopItem div{
    color: rgba(17, 17, 17, 1);
    margin-top: 15px;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: left;
}
.processBoxTopItem span{
    color: rgba(102, 102, 102, 1);
    margin-top: 8px;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: left;
    display: inline-block;
}
.apply{
    padding: 120px 0 120px 0;
    background-image: url(../images/icon06.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 706px;
}
.applyBox{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
}
.applyBoxText01{
    color: rgba(255, 255, 255, 1);
    font-family: Poppins;
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0%;
    text-align: center;
}
.applyBoxText02{
    color: rgba(255, 255, 255, 1);
    margin-top: 16px;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
}
.applyBoxText03{
    margin-top: 64px;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.applyBoxText03 div{
    width: 374px;
    text-align: center;
}
.applyBoxText03 div span{
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(246, 165, 76, 1);
    color: rgba(255, 255, 255, 1);
    font-family: Poppins;
    font-size: 36px;
    font-weight: 600;
    line-height: 64px;
    letter-spacing: 0%;
    text-align: center;
    display: inline-block;
}
.applyBoxText03 .applyBoxText03Img01{
    position: absolute;
    top: 32px;
    left: 218px;
    width: 350px;
    height: auto;
}
.applyBoxText03 .applyBoxText03Img02{
    position: absolute;
    top: 32px;
    right: 218px;
    width: 350px;
    height: auto;
}
.applyBoxText04{
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
}
.applyBoxText04Item{
    width: 374px;
    height: 208px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 24px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.applyBoxText04Item.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.applyBoxText04Item:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    transition: transform 0.05s ease-out, background 0.05s ease-out;
}
.applyBoxText04Item div:first-child{
    color: rgba(255, 255, 255, 1);
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: left;
}
.applyBoxText04Item div:last-child{
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: left;
}

.page01{
    padding: 120px 0 120px 0;
}
.white{
    background: #FFFFFF;
}
.page01Box{
    width: 1200px;
    margin: 0 auto;
}
.page01BoxText01{
    color: #5377D6;
    font-family: Poppins;
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0%;
    text-align: center;
}
.page01BoxText02{
    display: flex;
    justify-content: space-evenly;
    margin-top: 64px;
}
.page01BoxText02 img{
    width: 320px;
}
.page01BoxText02Item{
    width: 640px;
}
.page01BoxText02Item div:first-child{
    background-image: url(../images/icon08.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 116px;
    display: inline-block;
    color: rgba(255, 255, 255, 1);
    font-family: Poppins;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: left;
    padding-left: 24px;
    padding-top: 18px;
}
.page01BoxText02Item div:last-child{
    color: rgba(102, 102, 102, 1);
    margin-top: 16px;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: left;
}
.page01BoxText03{
    margin-top: 64px;
    display: flex;
    justify-content: space-between;
}
.page01BoxText03Item{
    width: 270px;
    height: 386px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 1);
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.page01BoxText03Item.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page01BoxText03Item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.05s ease-out, box-shadow 0.05s ease-out;
}
.page01BoxText03Item img{
    width: 72px;
    height: 72px;
    transition: all 0.05s ease;
}

.page01BoxText03Item:hover img {
    transform: scale(1.1) rotate(-3deg);
}
.page01BoxText03Item div.aaaaaaa{
    color: rgba(17, 17, 17, 1);
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 6px;
}
.page01BoxText03Item div:last-child{
    color: rgba(102, 102, 102, 1);
    margin-top: 8px;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: left;
}

.page01BoxText04{
    margin-top: 64px;
    display: flex;
    justify-content: space-between;
}
.page01BoxText04Item{
    width: 580px;
    height: 160px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.page01BoxText04Item.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page01BoxText04Item:hover {
    /* transform: translateX(0) scale(1.02); */
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); */
    transition: transform 0.05s ease-out, box-shadow 0.05s ease-out;
}
.page01BoxText04Item img{
    width: 220px;
    height: 100%;
    display: inline-block;
    transition: all 0.05s ease;
}

.page01BoxText04Item:hover img {
    transform: scale(1.05);
}
.page01BoxText04Item div{
    height: 100%;
    margin-left: 40px;
    display: inline-block;
    width: 265px;
    vertical-align: top;
}
.page01BoxText04Item div span{
    color: rgba(17, 17, 17, 1);
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: left;
    display: inline-block;
    padding-top: 26px;
}
.page01BoxText05{
    color: rgba(17, 17, 17, 1);
    margin-top: 40px;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
}
.page01BoxText06{
    border: 1px solid rgba(83, 119, 214, 1);
    margin: 80px 0;
}

.agreement{
    padding: 120px 0 120px 0;
    background: #FFFFFF;
}
.agreementBox{
    width: 1200px;
    margin: 0 auto;
}
.agreementBoxText01{
    color: #5377D6;
    font-family: Poppins;
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
    margin-bottom: 44px;
}
.agreementBoxText02{
    color: #111111;
    font-size: 20px;
    font-weight: 500;
    line-height: 70px;
    height: 70px;
    padding: 0 20px;
    background: #ffffff;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
}
.agreementBoxText02:hover{
    background: #F5F6F7;
}
.agreementBoxText02 img{
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-top: 23px;
}

.footer{
    background: rgba(83, 119, 214, 1);
    padding: 80px 0;
}
.footerBox{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.footerBoxText01Item{
    color: rgba(255, 255, 255, 1);
    margin-bottom: 40px;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}
.footerBoxText02Item{
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footerBoxText02Item:last-child{
    margin: 0;
}
.footerBoxText03{
    height: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.footerBoxText04{
    display: flex;
    align-items: center;
}
.footerBoxText04>img{
    width: 56px;
    display: inline-block;
}
.footerBoxText05 img{
    width: auto;
    height: 28px;
    margin-left: 16px;
    vertical-align: sub;
}
